Core answer: A scientific calculator evaluates full expressions with correct precedence: parentheses first, then exponents/roots, then × ÷, then + −. Type 3 + 4 × 2 and you get 11, not 14. Master five keys — parentheses, ^, √, 1/x, EE — and you can solve 90% of school and engineering arithmetic in one line.
Operator precedence (the whole game)
| Level | Operations | Example |
|---|---|---|
| 1 | Parentheses ( ) | (3+4) × 2 = 14 |
| 2 | Functions & powers: sin, √, x², ^ | 2^3^2 = 2^9 = 512 (right-to-left) |
| 3 | × ÷ (implicit multiply too) | 6 ÷ 2(1+2) = 6 ÷ 2×3 = 9 |
| 4 | + − | left to right |
The famous "6 ÷ 2(1+2)" internet fight is a precedence question: standard convention treats 2(1+2) as implicit multiplication on level 3, evaluated left-to-right → 9. Add explicit parentheses whenever money or grades are at stake.
The five keys that matter
- ( ) — force any grouping: (12+8) ÷ 5 = 4
- ^ or xʸ — powers: 1.05^12 = 1.7959 (5% compounded monthly)
- √ and ʸ√x — roots: cube root of 27 = ʸ√(3, 27) = 3
- 1/x — reciprocal: parallel resistors 1/(1/10 + 1/15) = 6 kΩ
- EE / EXP — scientific notation: 6.02 EE 23, not 6.02 × 10^23 typed out (10× slower, error-prone)
Worked examples
Example 1 — BMI in one line. 70 ÷ (1.75 x²) = 22.86. Parenthesize the denominator or the calculator reads (70 ÷ 1.75)².
Example 2 — Compound interest. 10,000 × 1.05^10 = 16,288.95. One ^ key does what 10 multiplications would.
Example 3 — Quadratic discriminant. For 2x² + 5x − 3: √(5² − 4×2×(−3)) = √49 = 7 → x = (−5 ± 7)/4 → x = 0.5 or −3.
Common mistakes and myths
- Missing denominator parentheses — 1 ÷ 2x means (1÷2)x on most calculators; write 1 ÷ (2x).
- Degrees vs radians — sin(30) = 0.5 in DEG mode but −0.988 in RAD; check the mode indicator before blaming the math.
- Typing 10^x instead of EE — 3 EE 5 is one exact number; 3 × 10^5 involves precedence and rounding.
- Chained power direction — 2^3^2 = 512 (right-associative), not 64; use parentheses for (2^3)^2.
- Trusting the last digit — display shows 10–12 digits, internal carries more; rounding mid-calculation compounds error, so keep full precision until the end.