49 free tools

Math

Free calculators covering algebra, geometry, statistics, and number theory — with step-by-step solutions.

Guides & collections

All tools

Area Calculator

Calculate area and perimeter of 7 shapes: rectangle, triangle, circle, trapezoid, ellipse, parallelogram, and polygon

Bayes' Theorem Calculator

Calculate posterior probability from prior, likelihood, and evidence

Binomial Distribution Calculator

Calculate binomial probabilities P(X=k), P(X≤k), and P(X≥k)

Chi-Square Calculator

Chi-square test of independence and goodness-of-fit with p-value

Circle Calculator

Calculate circle area, circumference, diameter, and radius

Coefficient of Variation Calculator

Calculate CV (%) to compare variability across different datasets

Confidence Interval Calculator

Calculate confidence intervals for means and proportions

Coordinate Geometry Calculator

Calculate distance, midpoint, slope, line equations from two points

Correlation Calculator

Calculate Pearson correlation coefficient (r) and r² for paired data

Cylinder Volume Calculator

Calculate cylinder volume, surface area, and lateral area

Dot Grid Paper Generator

Create custom dot grid paper for bullet journaling and note-taking

Exponent Calculator

Calculate any power or exponent, including fractional and negative exponents

Fibonacci Sequence Calculator

Generate Fibonacci numbers, view golden ratio convergence, and explore sequence properties

Fraction Calculator

Add, subtract, multiply, and divide fractions with step-by-step solutions

GCF and LCM Calculator

Calculate greatest common factor (GCF) and least common multiple (LCM)

Graph Paper Generator

Create custom square grid paper for math, science, and engineering

Hexagonal Paper Generator

Create printable hex grid paper for tabletop gaming, maps, and strategy games

Hypothesis Testing Calculator

Step-by-step null vs alternative hypothesis testing with p-values

Integration by Parts Guide

Step-by-step integration by parts with LIATE rule and worked examples

Isometric Paper Generator

Create printable isometric grid paper for 3D drawing and game design

Linear Regression Calculator

Calculate the least squares regression line (ŷ = mx + b) for any dataset

Lined Paper Generator

Create custom college ruled, wide ruled, and narrow ruled printable paper

Logarithm Calculator

Calculate log base 10, natural log (ln), log base 2, and any base

Long Division Calculator

Perform long division with step-by-step solution and remainder

Matrix Calculator

Add, subtract, multiply matrices and calculate determinant and transpose

Mean, Median & Mode Calculator

Calculate mean, median, mode, range, and more from any dataset

Modular Arithmetic Calculator

Calculate a mod n with extended Euclidean algorithm and RSA example

Normal Distribution Calculator

Calculate Z-scores, probabilities, and areas under the normal curve

Number Theory Prime Test

Test if a number is prime and find its prime factorization

Permutation & Combination Calculator

Calculate nPr permutations and nCr combinations

Poisson Distribution Calculator

Calculate Poisson probabilities for rare events with known average rate

Polar Graph Paper Generator

Create printable polar coordinate graph paper with concentric circles

Prime Factorization Calculator

Find prime factors and factor tree for any number

Probability Calculator

Calculate probability of single events, combinations, and compound events

Pythagorean Theorem Calculator

Find hypotenuse or missing side of a right triangle (a² + b² = c²)

Quadratic Formula Calculator

Solve quadratic equations using the quadratic formula

Random Number Generator

Generate random numbers with customizable range, count, and options

Rectangle Area Calculator

Calculate area, perimeter, and diagonal from length and width

Scientific Notation Converter

Convert numbers to and from scientific notation (a × 10ⁿ)

Set Theory Calculator

Calculate union, intersection, difference, and symmetric difference of sets

Simpson's Rule Calculator

Approximate definite integrals using Simpson's 1/3 rule with step-by-step visualization

Slope Calculator

Calculate slope, angle, distance, and midpoint between two points

Sphere Calculator

Calculate sphere volume, surface area, and diameter

Standard Deviation Calculator

Calculate mean, variance, and standard deviation for any dataset

T-Test Calculator

One-sample and two-sample t-tests with p-value and t-statistic

Triangle Area Calculator

Calculate triangle area using base/height, three sides, or angle formulas

Trigonometric Identity Reference

Searchable reference for all major trigonometric identities with examples

Vector Cross Product Calculator

Calculate the cross product, dot product, and magnitude of 3D vectors

Z-Score Calculator

Calculate z-score (standard score) and percentile from mean and standard deviation

Which Math Calculator Do You Need?

Math calculations span from basic arithmetic through advanced statistics and number theory. Whether you're a student checking algebra homework, a teacher preparing problems, or a professional running statistical analysis, these tools handle the calculations so you can focus on understanding the results — not grinding through arithmetic.

Arithmetic and Number Theory

Number theory operations form the foundation of higher mathematics and appear constantly in practical computing. The greatest common divisor (GCD) of two integers is the largest number that divides both without remainder — computed efficiently using the Euclidean algorithm: GCD(48, 18) = GCD(18, 12) = GCD(12, 6) = 6. The least common multiple (LCM) is LCM(a, b) = (a × b) / GCD(a, b).

Fraction arithmetic follows strict rules: to add a/b + c/d, find a common denominator (typically LCM(b, d)), convert each fraction, then add numerators. To multiply a/b × c/d, multiply numerators and denominators directly: (ac)/(bd), then simplify by dividing by GCD(ac, bd). Prime factorization decomposes any integer into its prime factors — for example, 360 = 2³ × 3² × 5. Knowing the prime factorization makes GCD, LCM, and divisibility problems straightforward. The Fraction Calculator handles all four operations with step-by-step explanations, and the Prime Factorization Calculator shows the complete factor tree.

Algebra and Equation Solving

Algebra problems range from simple linear equations to complex polynomial systems. A linear equation ax + b = c solves directly: x = (c - b) / a. A quadratic equation ax² + bx + c = 0 has solutions x = (-b ± √(b² - 4ac)) / (2a). The discriminant b² - 4ac determines the nature of roots: positive means two real solutions, zero means one repeated solution, negative means two complex conjugates.

Systems of linear equations can be solved by substitution, elimination, or matrix methods. For a 2×2 system with equations a₁x + b₁y = c₁ and a₂x + b₂y = c₂, Cramer's rule gives x = (c₁b₂ - c₂b₁) / (a₁b₂ - a₂b₁) and y = (a₁c₂ - a₂c₁) / (a₁b₂ - a₂b₁), provided the determinant a₁b₂ - a₂b₁ ≠ 0. Polynomial long division is the standard method for dividing polynomials — the Quadratic Formula Calculator shows all steps including discriminant analysis, and the Equation Solver handles linear, quadratic, and higher-degree polynomials.

Geometry and Shapes

Geometry calculations cover areas, perimeters, volumes, and surface areas of standard shapes. Key area formulas: circle = πr², triangle = ½bh, rectangle = lw, trapezoid = ½(a+b)h, regular polygon = ½ × perimeter × apothem. Volume formulas: sphere = (4/3)πr³, cylinder = πr²h, cone = (⅓)πr²h, rectangular prism = lwh, pyramid = (⅓) × base area × height.

The Pythagorean theorem (a² + b² = c²) connects the sides of a right triangle. For any triangle, the law of cosines (c² = a² + b² - 2ab cos C) generalizes the Pythagorean theorem to non-right triangles. The law of sines (a/sin A = b/sin B = c/sin C) handles the ambiguous case and angle-finding problems. Arc length of a circle sector is s = rθ (where θ is in radians), and sector area is A = ½r²θ. The Circle Calculator computes area, circumference, arc length, and sector area from any input, while the Triangle Calculator solves all triangle types from any three given values.

Statistics and Probability

Descriptive statistics summarize datasets through measures of center and spread. The mean (arithmetic average) is the sum divided by count. The median is the middle value when sorted — for even-count datasets, average the two middle values. The mode is the most frequent value. Variance is the average squared deviation from the mean: σ² = Σ(xᵢ - μ)² / N for population, s² = Σ(xᵢ - x̄)² / (n-1) for sample. Standard deviation is the square root of variance.

Probability calculations use counting principles and distribution functions. For independent events, P(A and B) = P(A) × P(B). For mutually exclusive events, P(A or B) = P(A) + P(B). The binomial distribution models k successes in n trials: P(X = k) = C(n,k) × pᵏ × (1-p)^(n-k), where C(n,k) = n! / (k! × (n-k)!). Normal distribution probabilities require z-scores: z = (x - μ) / σ. Hypothesis testing involves t-statistics, p-values, and significance levels — the Statistics Calculator computes all descriptive stats from raw data, and the Probability Calculator covers binomial, normal, and Poisson distributions.

How to Pick the Right Starting Point

If you're doing algebra homework, the quadratic formula calculator and equation solver handle 80% of common problems. For geometry, identify the shape first (circle, triangle, rectangle, polygon) and use the corresponding shape calculator — all include step-by-step working. For statistics coursework, the statistics calculator handles descriptive stats in one step, while the probability distribution tools cover hypothesis testing.

For number theory problems (GCDs, LCMs, modular arithmetic), the arithmetic tools give step-by-step Euclidean algorithm traces that are useful for understanding the method, not just getting the answer. All tools support both decimal and fraction input where applicable, and most can display answers in multiple forms (decimal, fraction, exact radical). All calculations run locally in your browser — no data is sent anywhere and no account is required.

FAQ

Are these tools free?

Yes, every tool is completely free to use with no signup, no account, and no hidden fees. All calculations run in your browser.

Is my data safe?

Absolutely. All calculations run locally in your browser. No data is sent to any server or stored anywhere.

Do these calculators show step-by-step solutions?

Most tools include step-by-step working, not just the final answer. This is especially true for the quadratic formula, fraction calculator, triangle calculator, and statistics tools — they show intermediate steps so you can follow the method, not just copy the result.

What grade levels do these calculators cover?

These tools cover middle school through university-level mathematics — from basic fractions and prime factorization through statistics, probability, and calculus. Each tool indicates its applicable level, and most are useful across multiple grade levels.

Are manual calculations still important if I have a calculator?

Yes. These tools are most useful when you already understand the underlying method — they handle arithmetic so you can focus on setting up problems correctly and interpreting results. They're excellent for checking manual work and for exploration, but they complement rather than replace mathematical understanding.

Related categories