## Most People Use 10% of a
Scientific Calculator
The four arithmetic operations, maybe a square root. The rest of the buttons sit unused. This guide walks through every major scientific calculator function — what it does, when you need it, and how to avoid the mistakes that produce wrong answers.
Our [scientific calculator](/category/math/scientific-calculator) handles all of these. Bookmark this page as a reference.
---
## Order of Operations (The Source of Most Errors)
Before any functions: scientific calculators follow PEMDAS/BODMAS strictly.
**PEMDAS:** Parentheses → Exponents → Multiplication/Division → Addition/Subtraction
**The trap:** Entering 2 + 3 × 4 without parentheses gives **14** (correct), but many people expect **20**. The calculator multiplies first.
Always use parentheses when in doubt:
- `(2 + 3) × 4 = 20`
- `2 + 3 × 4 = 14`
---
## Exponents and Powers
**Button: yˣ or ^**
Raises a number to any power.
| Expression | Calculator Input | Result |
|------------|-----------------|--------|
| 2⁸ | 2 ^ 8 | 256 |
| 5³ | 5 ^ 3 | 125 |
| 10⁶ | 10 ^ 6 | 1,000,000 |
| 2⁻³ | 2 ^ (−3) | 0.125 |
**Negative exponents** = reciprocal: 2⁻³ = 1/2³ = 1/8 = 0.125
---
## Square Root and Nth Root
**Square root (√x):** Returns the number that, when squared, gives x.
√144 = 12 (because 12² = 144)
**Cube root (∛x or x^(1/3)):** Most calculators use x^(1/3) for cube roots.
∛27 = 27^(1/3) = 3
**Nth root:** x^(1/n)
4th root of 81 = 81^(0.25) = **3** (because 3⁴ = 81)
---
## Scientific Notation
**Button: EE or EXP**
Scientific notation writes very large or very small numbers as a × 10ⁿ.
| Number | Scientific Notation | Calculator Entry |
|--------|--------------------|-----------------|
| 6,200,000 | 6.2 × 10⁶ | 6.2 EE 6 |
| 0.00045 | 4.5 × 10⁻⁴ | 4.5 EE −4 |
| 299,792,458 (speed of light) | 2.998 × 10⁸ | 2.998 EE 8 |
**Common error:** Entering 6.2 × 10 ^ 6 instead of 6.2 EE 6. These look the same but behave differently if part of a larger expression — always use EE/EXP for scientific notation.
---
## Logarithms
### Common Log (log or log₁₀)
Asks: "10 to what power equals x?"
- log(100) = 2 (because 10² = 100)
- log(1000) = 3
- log(0.01) = −2
**Used in:** pH calculations (pH = −log[H⁺]), decibels, Richter scale, finance.
### Natural Log (ln)
Asks: "e to what power equals x?" where e ≈ 2.71828
- ln(e) = 1
- ln(1) = 0
- ln(100) ≈ 4.605
**Used in:** Continuous compounding, population growth, half-life calculations.
### Log of Any Base
log_b(x) = ln(x) ÷ ln(b)
log₂(32) = ln(32) ÷ ln(2) = 3.466 ÷ 0.693 = **5** (because 2⁵ = 32)
---
## Trigonometric Functions
### The Core Three
| Function | Meaning | Common Use |
|----------|---------|------------|
| sin(θ) | Opposite ÷ Hypotenuse | Heights from angles |
| cos(θ) | Adjacent ÷ Hypotenuse | Horizontal distance |
| tan(θ) | Opposite ÷ Adjacent | Slope, grade |
**Critical: Always check whether your calculator is in Degrees or Radians mode before any trig calculation.**
- sin(30°) = 0.5 ← correct in degree mode
- sin(30) = −0.988 ← what you get in radian mode by mistake
For most everyday problems (angles in degrees): use **Degree mode**.
For calculus and physics: use **Radian mode**.
### Inverse Trig (sin⁻¹, cos⁻¹, tan⁻¹)
These work backward — given a ratio, find the angle.
**Example:** A ramp rises 3 ft over a 12 ft horizontal run. What angle is it?
tan(θ) = 3 ÷ 12 = 0.25
θ = tan⁻¹(0.25) = **14.04°**
---
## Factorial (n!)
**Button: n! or x!**
n! = n × (n−1) × (n−2) × … × 1
- 5! = 5 × 4 × 3 × 2 × 1 = **120**
- 10! = **3,628,800**
- 0! = **1** (by definition)
**Used in:** Combinations, permutations, probability.
**Combinations formula:** C(n,r) = n! ÷ (r! × (n−r)!)
How many ways to choose 3 items from 10?
C(10,3) = 10! ÷ (3! × 7!) = 3,628,800 ÷ (6 × 5,040) = **120**
---
## Memory Functions
| Button | Function |
|--------|----------|
| M+ | Add current display to memory |
| M− | Subtract current display from memory |
| MR or RCL | Recall stored value |
| MC or CM | Clear memory |
**Use case:** You're calculating a series of sub-totals to add together. Calculate each, press M+, then press MR at the end to see the running total — without writing anything down.
---
## The ANS Key
On most calculators, **ANS** holds the last result. Use it to chain calculations:
1. Calculate 145 × 1.08 = 156.6
2. Press ANS × 1.08 = 169.13
3. Press ANS × 1.08 = 182.66
This applies 8% growth three times in sequence. Faster than retyping the result each time.
---
## Common Scientific Calculator Errors
**Forgetting to switch modes (degrees/radians):** Always check the display indicator before trig calculations.
**Misusing EE vs ×:** 5 EE 3 = 5000. 5 × 10 ^ 3 = 5000 too — but in a compound expression, only EE maintains scientific notation grouping.
**Negative numbers without parentheses:** On many calculators, −3² = −9, not 9. This is because the calculator interprets it as −(3²). To get (−3)² = 9, use parentheses: (−3)².
**Implicit multiplication:** Some calculators accept 2(3+4) as 14; others require an explicit × symbol. When in doubt, write the ×.
---
## Related Math Calculators
- [
Percentage Calculator](/category/math/percentage-calculator) — all 5 percentage problem types
- [Binary Calculator](/category/math/binary-calculator) — binary, hex, and octal conversions
- [Standard Deviation Calculator](/category/math/standard-deviation-calculator) — statistics for any dataset
- [
Quadratic Equation Solver](/category/math/quadratic-equation-solver) — find roots with the quadratic formula
---
## Frequently Asked Questions
**How do I calculate 2 to the power of 10 on a scientific calculator?**
Press 2, then the yˣ or ^ key, then 10, then =. Result: **1,024**.
**What is the difference between log and ln?**
log (common logarithm) uses base 10: log(1000) = 3. ln (natural logarithm) uses base e ≈ 2.718: ln(1000) ≈ 6.908. Use log for pH and decibels; use ln for continuous growth and decay problems.
**Why does sin(90) not equal 1 on my calculator?**
Your calculator is in Radian mode. sin(90 radians) ≈ 0.894. Switch to Degree mode: sin(90°) = 1.
**How do I enter a fraction on a scientific calculator?**
Use the division key: 3/4 = 0.75. For mixed numbers, use parentheses: 2 + (3/4) = 2.75. Some calculators have a dedicated fraction key (a b/c) that keeps results as fractions.