Math Help Solver

What is the answer — and how do you get there?

Enter any math expression or word problem and get the numeric answer with a clear breakdown of each step. Covers arithmetic, percentages, fractions, ratios, and basic algebra.

Updated July 2026 · How this works

Example calculation — edit any field to use your own numbers

Worth knowing
How It Works
The formula, explained simply

Think of math operations as a sequence of moves on a number line. When you add, you walk right. When you subtract, you walk left. Multiplication is taking that walk multiple times in one jump. Division is asking how many equal-length steps fit inside a given distance. Every problem type here reduces to some combination of these four basic moves — the difference is just how many steps and in what direction.

Percentages add one more step: converting a rate into a multiplier. The number 18.5% means nothing until you divide it by 100, turning it into 0.185 — a number you can actually multiply by something. The calculator does this conversion automatically, but knowing it happens is why you should never enter 0.185 into the rate field when the label says percent. Enter 18.5 and the tool converts for you.

Fraction arithmetic avoids decimals entirely by keeping track of numerators and denominators separately until the very end. When you add two fractions, the denominators have to match before the numerators can combine — that is why common denominators exist. Multiplying fractions is actually simpler: numerators multiply together and denominators multiply together, no common denominator needed. The simplification step at the end uses the greatest common divisor to find the smallest equivalent fraction.

When To Use This
Right tool, right situation

Use this tool when you have a concrete number problem with definite inputs and need the exact numeric answer quickly. It works best for single-step or two-step calculations: a tip on a bill, a grade percentage, splitting a measurement into fractions, or back-solving a proportion in a recipe or project plan. The step-by-step breakdown is particularly useful when you need to explain the answer to someone else or check that a result makes intuitive sense.

Use the algebra solver when you know the result but not the input — for example, you know the monthly payment and want to find the principal, or you know the final score and want to figure out how many points you needed. The linear form aX + b = c covers a large share of everyday back-calculation problems without requiring any algebraic manipulation from you.

This tool is not appropriate for multi-variable systems of equations, nonlinear problems (quadratics, exponentials), statistical analysis, or any calculation that requires a running total over time. For those, you need a dedicated compound interest calculator, a statistics tool, or actual algebra software. The fraction solver also assumes integer numerators and denominators — if you are working with decimal numerators like 1.5/2.3, convert to the decimal mode or simplify the ratio first.

Common Mistakes
Why results sometimes look wrong

Mistake 1: Entering the percentage as a decimal. The cause is familiarity with spreadsheet formulas, where you type 0.18 for 18%. The consequence here is a result 100 times smaller than intended — 0.18% of 250 is 0.45, not 45. Always enter the rate as the human-readable number: 18, not 0.18.

Mistake 2: Using percent change when you want percentage of. The cause is treating all percentage questions as the same type. The consequence is a completely different answer. If a price rose from $50 to $75, the percent change is 50% — but 50% of $75 is $37.50, not $50. The percent change formula always divides by the old value, not the current one.

Mistake 3: Leaving two ratio terms blank and expecting a solve. The cause is misunderstanding how proportions work — you need three known values to find one unknown. The consequence is an error message asking you to fill in more fields. Check that exactly one field is blank; if two are empty, the ratio has infinitely many solutions and cannot be solved numerically without more information.

The Math
Worked examples and deeper derivation

Every problem type here rests on a single formula. Arithmetic: result = a op b, where op is one of the four basic operations. Percentage: result = (rate / 100) x base. Percent change: change = ((new - old) / |old|) x 100. Fraction arithmetic: to add a/b + c/d, compute (ad + bc) / bd, then simplify. Ratio: A/B = C/D solved for any one unknown by cross-multiplication. Linear algebra: aX + b = c means X = (c - b) / a.

The cross-multiplication step in ratio problems is worth understanding. A:B = C:D means A/B equals C/D as a proportion. Cross-multiplying gives A x D = B x C. Rearrange to isolate whichever variable is unknown. This is why leaving exactly one term blank works — you always have three known values and one equation, which is exactly enough to solve for one unknown.

The linear equation X = (c - b) / a has one important edge case: when a equals zero, the equation has either no solution (if b does not equal c) or infinitely many solutions (if b equals c). This tool catches the zero-coefficient case and rejects it, because there is no single numeric answer to display. If you encounter this, the equation itself may be telling you something about the problem structure.

Splitting a restaurant bill with tip
Problem type: Percentage. Rate: 20%. Base: $143.50.
The answer is $28.70. That is the tip amount — add it to the bill for a total of $172.20, then divide by the number of people. The percentage operation converts 20% to 0.20 and multiplies by the base, giving an exact dollar amount you can hand the waiter.
A fraction that simplifies to an unexpected whole number
Problem type: Fraction Arithmetic. Multiply 8/3 by 9/8.
The answer is 3 — a whole number, even though both inputs were fractions. The numerators multiply to 72 and the denominators multiply to 24. The GCD of 72 and 24 is 24, so the fraction simplifies entirely. This surprises most people who expect a messy decimal.
A project manager back-calculating a missing ratio target
Problem type: Ratio. A: 5, B: 8, C: 35, D: blank.
The answer is 56. If a team processed 35 tickets in 5 days at a rate equivalent to 5:8, the proportional target for 8 days is 56 tickets. Ratio tools are not just for math class — they translate directly to project planning, recipe scaling, and unit-cost comparisons.
Expert Unlock
The thing most explanations skip

The fraction simplification in this tool uses integer GCD, which means results are exact only when the inputs are true integers. If you enter fractional numerators or denominators (e.g., 1.5 / 2.3), the GCD rounds them to the nearest integer before simplifying, introducing a small error. For precise rational arithmetic with non-integer components, convert to decimal arithmetic first or scale up both numerator and denominator to integers before entering. The ratio solver faces a similar constraint: very large ratios with irrational proportions will display a decimal approximation, not an exact symbolic form.

What does this answer actually mean for your problem?

How do I find what percent one number is of another?
Use the Percentage mode and enter the part as the Base Amount and the whole as nothing — actually, swap them: enter the whole as the Base Amount and then read the result as the portion. If you want to find what percent 45 is of 180, divide 45 by 180 and multiply by 100 to get 25%. Alternatively, use the Percent Change mode with the whole as the Old Value and the part as the New Value, which gives the ratio as a percentage directly.
Why does my fraction answer not match a decimal calculator?
Fraction arithmetic produces an exact rational answer, while decimal calculators round at some point. For example, 1/3 in decimal is 0.333... repeating — any decimal version truncates or rounds this. The fraction form 1/3 is the exact answer; the decimal 0.3333 is an approximation. For most practical purposes the difference is negligible, but in chained calculations the rounding error compounds.
What does percent change mean versus percentage of a number?
Percent change measures how much a value moved relative to its starting point — a price rising from $80 to $100 is a 25% increase. Percentage of a number finds a portion of a fixed base — 25% of $80 is $20. They use the same arithmetic operation but answer different questions. Confusing the two is one of the most common errors in financial comparisons.

Need something this doesn't cover?

Suggest a tool — we'll build it →