Live
All Math Calculators
⏳ Loading calculators…

📚 Sources & Methodology

NIST Digital Library of Mathematical Functions (DLMF) — mathematical notation standards, operator precedence conventions, and arithmetic definitions, dlmf.nist.govCurrent standard
Wikipedia — Order of Operations: academic consensus on PEMDAS/BODMAS, implicit multiplication conventions, and historical development of operator precedence notation, en.wikipedia.orgCurrent
IEEE 754 Standard for Floating-Point Arithmetic — binary representation of decimal numbers, rounding behaviour, and arithmetic precision limits in digital computation, ieeexplore.ieee.org2019 revision
RFC 1700 — number base conversion standards; NIST SP 800-175B — hexadecimal and binary notation in computing contexts, csrc.nist.govCurrent

Percentages, Fractions & PEMDAS — The Rules Behind the Mistakes

Three categories of math calculations are responsible for most day-to-day arithmetic errors: percentage calculations (especially percentage change and consecutive percentages), fraction operations (especially division, where flipping the wrong fraction is near-universal), and order of operations (especially the equal precedence of multiplication and division in PEMDAS). Each has a specific rule that produces wrong answers when misapplied — and in each case, the wrong answer looks plausible enough that people often do not catch it.

Percentage Calculator — Change Direction, the Original Denominator Rule, and the Percentage Point Distinction

Percentage change = ((New − Original) ÷ Original) × 100. The original value is always the denominator. A price that rises from $80 to $100 is a 25% increase: (20 ÷ 80) × 100 = 25%. Using $100 as the denominator gives 20% — wrong. The direction asymmetry is equally important: if the price then falls from $100 back to $80, that is a 20% decrease (20 ÷ 100 × 100), not a 25% decrease. The rise and fall percentages are different because the base changes. This asymmetry is also what creates the consecutive percentage trap: +25% then −20% returns exactly to the starting price, but only by coincidence. The general rule is that sequential percentage changes multiply — they do not add.

Percentage Change — Formula, Direction Asymmetry & Consecutive Trap Percentage change = ((New − Original) ÷ Original) × 100 — Example: $80 → $100 — Correct: (100 − 80) ÷ 80 × 100 = +25% ✗ Wrong: (100 − 80) ÷ 100 × 100 = 20% — using new value as denominator — Consecutive percentage trap — Start at 100. Apply +20%: 100 × 1.20 = 120 Then apply −20%: 120 × 0.80 = 96 (NOT 100) ✗ Common assumption: +20% then −20% = 0% net change ✓ Correct: +20% then −20% = −4% net (multiplier: 1.20 × 0.80 = 0.96) The larger the percentage, the bigger the asymmetry. +50% then -50% = -25% net (1.50 × 0.50 = 0.75). +100% then -100% = -100% (you reach zero). Sequential percentage changes always multiply — they never simply add or cancel.

Fraction Calculator — Addition Requires Common Denominators, Division Requires Flipping the Second

Four fraction operations, two critical rules. Addition and subtraction: you must find a common denominator first. 1/3 + 1/4 is not 2/7. The LCD of 3 and 4 is 12: convert to 4/12 + 3/12 = 7/12. Multiplication: multiply numerators and multiply denominators. 2/3 × 3/4 = 6/12 = 1/2. Division: multiply by the reciprocal (flip) of the second fraction only. 2/3 ÷ 4/5 = 2/3 × 5/4 = 10/12 = 5/6. The most consistent error in fraction division is flipping the first fraction instead of the second: (3/2) × (4/5) = 12/10 = 6/5 — wrong. Only the divisor (second fraction) gets flipped.

PEMDAS — Why M and D Are Equal and Why 8 ÷ 2 × 4 = 16 Not 1

PEMDAS stands for Parentheses, Exponents, Multiplication, Division, Addition, Subtraction. The critical rule that the mnemonic obscures: M and D have equal precedence (they are not sequential priorities), and so do A and S. Equal-precedence operations are evaluated strictly left to right. 8 ÷ 2 × 4: start at left, first operation is 8 ÷ 2 = 4, then 4 × 4 = 16. The wrong answer (1) comes from treating the expression as 8 ÷ (2 × 4) = 8 ÷ 8 = 1, which adds invisible parentheses that are not in the original expression. The viral “8 ÷ 2(2+2)” controversy arises because implied multiplication (juxtaposition) has ambiguous precedence in some conventions — but explicit multiplication and division are always equal priority left to right.

PEMDAS — Order of Operations with Equal-Precedence Rules P: Parentheses first (innermost → outermost) E: Exponents (right-associative: 2^3^2 = 2^9, not 8^2) MD: Multiplication AND Division — EQUAL precedence, left to right AS: Addition AND Subtraction — EQUAL precedence, left to right — Example: 8 ÷ 2 × 4 — Left to right: (8 ÷ 2) × 4 = 4 × 4 = 16 ✗ Wrong: 8 ÷ (2 × 4) = 8 ÷ 8 = 1 — added invisible parentheses — Example: 30 ÷ 5 × 3 — Left to right: (30 ÷ 5) × 3 = 6 × 3 = 18 ✗ Wrong: 30 ÷ (5 × 3) = 30 ÷ 15 = 2 ✓ Rule: whenever you see mixed ÷ and × with no parentheses, go strictly left to right UK/Commonwealth uses BODMAS (Brackets, Orders, Division, Multiplication, Addition, Subtraction). Same rules — different mnemonic. The order of D and M is reversed in the acronym but both treat them as equal precedence evaluated left to right.
💡

The consecutive percentage trap in investing — why you cannot average percentage returns: A stock that gains 50% in year one and loses 50% in year two has not broken even. Starting at $10,000: after +50% = $15,000. After -50% = $7,500. The average return is 0% ((+50 −50) ÷ 2), but the actual result is a 25% loss. This is why geometric mean is used for multi-period investment returns, not arithmetic mean. A portfolio manager reporting “average annual return of 10%” using arithmetic averaging over volatile years is overstating compounded performance. The correct compound annual growth rate (CAGR) = (Ending value ÷ Starting value)^(1/years) − 1. For the $10,000 becoming $7,500 over 2 years: CAGR = (7,500 ÷ 10,000)^(0.5) − 1 = −13.4% per year, not 0%.

Math Reference Tables — PEMDAS Rules, Consecutive Percentages & Fraction Operations

PEMDAS Order of Operations — Step-by-Step Reference

Each level, what it includes, the common mistake, and the correct rule. Remember: M and D are the same level, as are A and S.

LevelWhat It CoversCommon MistakeCorrect Rule
P — Parentheses( ), [ ], { }, fraction bars, radical signsEvaluating outside before insideInnermost first, then work outward
E — ExponentsPowers, roots, nth powers2^3^2 = (2^3)^2 = 64 (wrong)Right-associative: 2^3^2 = 2^(3^2) = 512
MD — Mult & Div× and ÷ at EQUAL level8 ÷ 2 × 4 = 1 (dividing last)Left to right: (8÷2)×4 = 16
AS — Add & Sub+ and − at EQUAL level10 − 3 + 5 = 2 (subtracting first)Left to right: (10−3)+5 = 12
Fraction barEntire numerator ÷ entire denominatorSimplifying part of top/bottomEvaluate numerator fully, denominator fully, then divide
Implied (×)Juxtaposition: 2(3) or 2xAmbiguous precedence vs explicit ÷Use explicit parentheses to remove ambiguity

Consecutive Percentage Changes — The Trap at Various Starting Values

Sequential percentage changes multiply — they never simply add or cancel. Final value = Start × (1 + first change) × (1 + second change). The net result is always less than the sum of the individual percentage changes when one is a gain and one is a loss of equal size.

First ChangeSecond ChangeExpected (wrong)Actual Net Result
+10%−10%0%−1% (1.10 × 0.90 = 0.99)
+20%−20%0%−4% (1.20 × 0.80 = 0.96)
+25%−20%+5%0% (1.25 × 0.80 = 1.00)
+50%−50%0%−25% (1.50 × 0.50 = 0.75)
+100%−50%+50%0% (2.00 × 0.50 = 1.00)
+30%+20%+50%+56% (1.30 × 1.20 = 1.56)
−20%−20%−40%−36% (0.80 × 0.80 = 0.64)

Fraction Operations Reference — Addition, Subtraction, Multiplication, Division

Summary of all four operations with the specific rule each requires and the most common error in each.

OperationRuleExampleCommon Error
AdditionFind LCD, convert both, add numerators1/3 + 1/4 = 4/12 + 3/12 = 7/121/3 + 1/4 = 2/7 (adding denominators)
SubtractionFind LCD, convert both, subtract numerators3/4 − 1/6 = 9/12 − 2/12 = 7/12Subtracting denominators instead of finding LCD
MultiplicationMultiply numerators, multiply denominators2/3 × 3/4 = 6/12 = 1/2Finding LCD unnecessarily (only for add/sub)
DivisionMultiply by reciprocal of SECOND fraction2/3 ÷ 4/5 = 2/3 × 5/4 = 10/12 = 5/6Flipping the first fraction instead of second
SimplificationDivide both by GCF18/24 ÷ 6 = 3/4Stopping before reaching lowest terms
⚠️

PEMDAS M and D have EQUAL precedence — the most common order of operations error: The PEMDAS mnemonic lists M before D, which causes students to think multiplication is performed before division. It is not. Multiplication and division are at the same level of precedence and are both evaluated left to right across the entire expression. 8 ÷ 2 × 4: you cannot do 2 × 4 = 8 first because division comes before that multiplication in the left-to-right order. Correct: 8 ÷ 2 = 4, then 4 × 4 = 16. This same rule applies to addition and subtraction (AS): S does not wait for A to finish. 10 − 3 + 5: correct is (10 − 3) + 5 = 12, not 10 − (3 + 5) = 2. The UK BODMAS mnemonic lists D before M for the same reason — to emphasise left-to-right evaluation — but both mnemonics describe equal precedence evaluated left to right. When expressions are ambiguous, adding explicit parentheses is always correct and never wrong.

Which Math Calculator to Use — A Practical Guide for Students, Professionals & Everyday Use

For Percentage Problems

Use the percentage calculator for any of the three fundamental percentage questions: what is X% of a number, what percentage is A of B, and what is the percentage change from A to B. For the change direction: when the value goes up, percentage change is positive; when it goes down, it is negative. Always use the starting value as the denominator. For consecutive percentage changes in investments, prices, or discount stacking, use the consecutive percentage tool: enter each change in sequence and read the compounded net result rather than summing the percentages. A 20% price reduction followed by a further 15% discount is not a 35% reduction — it is 1 − (0.80 × 0.85) = 32% total reduction.

For Fraction Calculations

The fraction calculator handles all four operations and simplifies results to lowest terms automatically. For mental arithmetic: when adding fractions with denominators 2, 3, 4, 6, 8, and 12, the LCD is usually 12 or 24 and can be calculated quickly. For division, the verbal shortcut is “keep, change, flip” — keep the first fraction, change ÷ to ×, flip the second fraction. For simplification: try dividing by 2, then 3, then 5 sequentially before finding the formal GCF. Most everyday fractions simplify in two or three steps with small prime divisors.

For Order of Operations (PEMDAS)

When evaluating complex expressions, rewrite them step by step rather than trying to solve multiple operations simultaneously. The most reliable error prevention: after parentheses and exponents, scan for all × and ÷ signs from left to right without regard for which comes first in the mnemonic. Then scan for all + and − left to right. Add explicit parentheses around any part you are uncertain about — unnecessary parentheses never change the answer for equal-precedence operations but make the intent clear. For the hex to octal converter and hexagon area calculator, the tools handle the multi-step conversions automatically.

What Students and Professionals Most Commonly Get Wrong

Three math errors appear across every level of education and professional use. First: using the new value instead of the original as the denominator in percentage change — this affects every financial return calculation, price comparison, and statistical change analysis where it appears. Second: adding denominators when adding fractions (1/3 + 1/4 = 2/7 is the canonical wrong answer) — this suggests the common denominator rule was never internalised. Third: treating PEMDAS as strictly sequential rather than recognising that M/D and A/S are equal-priority pairs evaluated left to right — which produces wrong answers for any expression that mixes division and multiplication without parentheses.

Frequently Asked Questions — Math Calculators

Percentage change = ((New − Original) ÷ Original) × 100. Always use the ORIGINAL value as denominator. Price rises from $80 to $100: (100−80) ÷ 80 × 100 = 25%. Using $100 as denominator gives 20% — wrong. For decreases: price falls from $100 to $80: (80−100) ÷ 100 × 100 = −20%. Percentage rise and fall are not symmetric: going up 25% from $80 and going back down 20% from $100 return to the same price, but the percentages are different because the base changes each time.
Sequential percentage changes multiply, not add. +20% then −20%: 1.20 × 0.80 = 0.96 = −4% net (not zero). +50% then −50%: 1.50 × 0.50 = 0.75 = −25% net. The trap catches anyone who assumes equal-magnitude gains and losses cancel out. In investing: a stock at $100 gaining 50% goes to $150. Losing 50% from $150 gives $75 — a $25 loss despite averaging 0% return. To recover from a 50% loss, you need a 100% gain. General rule: recovery from an x% loss requires a gain of (x / (100 − x) × 100)%. From −20% loss, need (20 ÷ 80 × 100) = 25% gain.
PEMDAS: Parentheses, Exponents, Multiplication, Division, Addition, Subtraction. The critical rule: M and D have EQUAL precedence — they are not sequential. Similarly A and S are equal. Equal-precedence operations go left to right. 8 ÷ 2 × 4: left to right gives (8÷2)×4 = 4×4 = 16. Treating division as lower priority gives 8÷(2×4) = 1 — wrong. Same for A and S: 10 − 3 + 5 = (10−3)+5 = 12, not 10−(3+5) = 2. BODMAS (UK) lists Division before Multiplication to emphasise left-to-right equally, not to make division higher priority.
Find the lowest common denominator (LCD), convert both fractions, then add or subtract the numerators. 1/3 + 1/4: LCD = 12. 1/3 = 4/12, 1/4 = 3/12. Sum = 7/12. 3/4 − 1/6: LCD = 12. 3/4 = 9/12, 1/6 = 2/12. Difference = 7/12. The universal error: adding 1/3 + 1/4 = 2/7 (adding numerators and denominators directly). This never works. To find LCD: list multiples of each denominator and find the smallest common one. Or use denominator product ÷ GCF: LCD(3,4) = (3×4) ÷ 1 = 12.
Multiply by the reciprocal of the SECOND fraction (flip the divisor, not the dividend). 2/3 ÷ 4/5 = 2/3 × 5/4 = 10/12 = 5/6. Verbal shortcut: “keep, change, flip” — keep the first fraction unchanged, change ÷ to ×, flip (invert) the second fraction. The consistent error: flipping the first fraction instead of the second. (3/2) × (4/5) = 12/10 = 6/5 — wrong answer from wrong flip. The same rule applies to dividing a whole number by a fraction: 5 ÷ 2/3 = 5 × 3/2 = 15/2 = 7.5.
The expression is intentionally ambiguous due to implicit multiplication. If implicit multiplication (juxtaposition: “2(...)”) has equal precedence to explicit ÷: evaluate left to right: 8÷2×(2+2) = 4×4 = 16. If implicit multiplication has higher precedence (some academic conventions): 8÷(2×4) = 1. Most modern calculators give 16. The ambiguity is a notation problem, not a math problem. Write (8÷2)×(2+2) = 16 or 8÷(2×(2+2)) = 1 to be unambiguous. This is why mathematicians use fraction notation: 8/2 × (2+2) or 8/(2(2+2)) are unambiguous where the horizontal bar groups clearly.
Percentage points = arithmetic difference between two percentages. Percentage change = relative change. Interest rate rises from 4% to 6%: +2 percentage points. Also +50% as a rate increase ((6−4) ÷ 4 × 100). These are completely different numbers describing the same event. “The unemployment rate fell by 1 percentage point (from 5% to 4%)” is different from “unemployment fell by 20% (relative change).” Media frequently confuses these. When you see “percentage” in news or financial reporting, check whether it is a percentage point difference or a relative percentage change.
Find the GCF (Greatest Common Factor) of numerator and denominator, then divide both by it. 18/24: factors of 18 = 1,2,3,6,9,18; factors of 24 = 1,2,3,4,6,8,12,24. GCF = 6. 18÷6 = 3, 24÷6 = 4. Result: 3/4. Shortcut: repeatedly divide both by the smallest shared factor. 18/24 → ÷2 → 9/12 → ÷3 → 3/4. A fraction is fully simplified (in lowest terms) when numerator and denominator share no common factor other than 1. Test: if GCF = 1, the fraction is already simplified. 7/12: GCF(7,12) = 1, already simplified.
Two-step: Hex → Binary → Octal. Step 1: each hex digit converts to 4 binary bits. 0=0000, 1=0001, 2=0010, ..., 9=1001, A=1010, B=1011, C=1100, D=1101, E=1110, F=1111. Step 2: regroup binary in 3-bit groups from right, padding left with zeros. Step 3: each 3-bit group → octal digit (0-7). Example: Hex 3A. 3=0011, A=1010 → binary 00111010 → groups of 3: 000 111 010 → octal 072. Alternatively: Hex → Decimal → Octal. The hex to octal converter handles all conversions instantly and shows intermediate binary.
Area = (3√3 ÷ 2) × s² ≈ 2.598 × s² where s = side length. For hexagon with side 6: Area = 2.598 × 36 = 93.5 square units. The formula comes from treating the hexagon as 6 equilateral triangles: area of each = (√3/4) × s², total = 6 × (√3/4) × s² = (3√3/2) × s². Perimeter = 6 × s. Apothem (center to midpoint of a side) = (√3/2) × s. For s = 6: apothem = 5.196. The hexagon calculator accepts side length and returns area, perimeter, and apothem.
Convert all times to the same unit (seconds is easiest), add them, divide by count, convert back. Example: average of 2:30, 3:15, and 1:45. Convert: 150s, 195s, 105s. Sum = 450s ÷ 3 = 150s = 2:30 average. For times spanning midnight (e.g., 11:00 PM and 1:00 AM): add 24 hours to any time before midnight if calculating across the midnight boundary, or work entirely in seconds from a reference point. The average time calculator handles the HH:MM:SS format, mixed AM/PM, and cross-midnight calculations without manual conversion.
No. Every math calculation runs entirely in your browser. Your numbers, expressions, and all other inputs never leave your device. Nothing is logged or stored. Math calculators perform standard arithmetic. Floating point arithmetic in computers can produce minor rounding differences for very long decimal chains (e.g., 0.1 + 0.2 ≠ exactly 0.3 in binary floating point), which is standard behaviour in all calculator software and is not a calculator error. For financial calculations where exact decimal precision is required, verify results against your institution’s systems.

Popular Calculators

Most used tools across all 14 categories

Related Calculator Categories

📐

Missing a Math Calculator?

Can’t find the tool you need? Tell us — we build new math calculators every week, prioritising the most-requested tools for students, teachers, and everyday users.