How to use the Scientific Calculator (functions, angles, memory, notation)
This scientific calculator evaluates full expressions with PEMDAS order of operations, parentheses, powers/roots, trigonometry (sin, cos, tan and inverses), logs (ln, log10), exponents (a^b
), factorial (n!
), and combinatorics (nPr
, nCr
). Toggle Degrees/Radians for trig. Use Ans to reuse the last result and memory keys M+, MR, MC to store and recall values.
Key tips
- Parentheses first: Wrap parts you want evaluated together, e.g.
sin(30)
or(2+3)^4
. - Angle mode: Choose Deg for common angles (30°, 45°, 60°) or Rad for values like
π/6
. - Scientific notation: Enter numbers like
2.5e3
(= 2500) or3.2e-4
. - Memory: M+ adds the screen value to memory, MR recalls, MC clears.
- Clear: C clears the current entry; AC clears the whole expression and state.
Order of operations (PEMDAS) & common functions
PEMDAS: Parentheses → Exponents → Multiplication/Division → Addition/Subtraction.
Roots: √x
is x^(1/2)
; ∛x
is x^(1/3)
.
Logs: ln(x)
is base e; log(x)
is base 10.
Combinatorics: nPr
= permutations, nCr
= combinations; both require whole-number inputs with n ≥ r ≥ 0
.