A scientific calculator follows the order of operations and exposes functions an ordinary four-function calculator hides: trigonometry, logarithms, exponentials, powers, roots, and factorials. Most input mistakes come from two places — the wrong angle mode (DEG vs RAD) and forgetting that the device evaluates with strict precedence, not left to right.

BracketsPowers/RootsFunctions×,÷+,\text{Brackets} \rightarrow \text{Powers/Roots} \rightarrow \text{Functions} \rightarrow \times,\div \rightarrow +,-

The key habit is to know which mode you are in before you press a single key, and to wrap anything ambiguous in parentheses so the calculator reads what you intend.

DEG vs RAD: the mode that breaks trig answers

Trigonometric functions take an angle, and an angle can be measured in two units. Degrees (DEG) split a full turn into 360360 parts; radians (RAD) measure the arc length on a unit circle, so a full turn is 2π2\pi. The conversion is

radians=degrees×π180,degrees=radians×180π.\text{radians} = \text{degrees} \times \frac{\pi}{180}, \qquad \text{degrees} = \text{radians} \times \frac{180}{\pi}.

The calculator does not know which unit you mean — it trusts the mode indicator on the screen (often a small DEG, RAD, or D/R tag). Type sin(30)\sin(30) in DEG and you get 0.50.5, the textbook value. Type the exact same keys in RAD and you get sin(30 rad)0.988\sin(30\ \text{rad}) \approx -0.988, because 3030 radians is almost five full turns. Nothing is broken; the calculator answered a different question.

Input      DEG mode        RAD mode
sin(30)    0.5             -0.988...
cos(0)     1               1
tan(45)    1               1.619...

Rule of thumb: school geometry and most physics angles like 3030^\circ use DEG. Calculus and limits such as limx0sinxx=1\lim_{x\to 0}\frac{\sin x}{x}=1 use RAD. A third mode, GRAD (400400 to a turn), is almost never what you want — if trig answers look strange, check you are not stuck in GRAD.

Why precedence beats left-to-right

A scientific calculator evaluates the whole expression by precedence, the same order of operations above — which is why the result can differ from reading the keys one at a time. Consider entering

6+2×3.6 + 2 \times 3.

A simple calculator that acts on each keypress computes 6+2=86+2=8, then 8×3=248\times 3 = 24. A scientific calculator applies precedence: multiplication first, giving 6+6=126 + 6 = 12. The scientific answer, 1212, is the mathematically correct one. The order exists so a single written expression has one unambiguous value, no matter who types it.

Powers and functions bind tightly. Entering -3^2 returns 9-9 on most models, because the power applies before the negation: it reads (32)-(3^2). To square a negative number, wrap it: (-3)^2 gives 99. The same logic explains why 1/2x and 1/(2x) can disagree — the calculator follows brackets, not your intent.

Key functions and what they actually compute

Key Computes Example Result
sin cos tan trig ratio of an angle sin30\sin 30^\circ (DEG) 0.50.5
log base-10 logarithm log1000\log 1000 33
ln natural log, base ee lne\ln e 11
e^x exponential e1e^{1} 2.718282.71828\ldots
x^y / ^ power 2102^{10} 10241024
square root 144\sqrt{144} 1212
x! factorial 5!5! 120120
1/x reciprocal 1/x1/x of 44 0.250.25

Two pairings cause confusion. First, log means base 1010 on a calculator, while in higher math "log\log" often means natural log. Second, ln and e^x are inverses: ln(ex)=x\ln(e^x)=x, handy for checking keystrokes. The factorial x!x! multiplies all positive integers up to xx, so 5!=1205! = 120; it grows fast and overflows the display (most models cap near 69!69!).

Worked example 1: an angle in physics

A projectile is launched at 3535^\circ with speed 20 m/s20\ \text{m/s}. The horizontal component is vx=20cos35v_x = 20\cos 35^\circ. With the calculator in DEG:

vx=20×cos35=20×0.8192=16.38 m/s.v_x = 20 \times \cos 35^\circ = 20 \times 0.8192 = 16.38\ \text{m/s}.

If you forget and stay in RAD, cos(35 rad)0.903\cos(35\ \text{rad}) \approx -0.903, giving 18.1-18.1 — an obviously wrong negative speed. The sign flip is your warning sign: switch to DEG and re-enter.

Worked example 2: precedence and powers

Evaluate

5+322.\frac{5 + 3^2}{2}.

The fraction bar groups the numerator, but the calculator does not see a fraction bar unless you supply brackets. Type it as (5 + 3^2) / 2. Internally it resolves the power first (32=93^2 = 9), then the addition (5+9=145 + 9 = 14), then the division:

5+92=142=7.\frac{5 + 9}{2} = \frac{14}{2} = 7.

Type the same keys without brackets, as 5 + 3^2 / 2, and precedence gives 5+92=5+4.5=9.55 + \frac{9}{2} = 5 + 4.5 = 9.5. Same keys, different grouping, different answer.

Try it yourself, then check

Put your calculator in RAD and evaluate 2sin ⁣(π6)+ln(e3)2\sin\!\left(\frac{\pi}{6}\right) + \ln(e^3).

Working in order: π6\frac{\pi}{6} is 3030^\circ, so sin ⁣(π6)=0.5\sin\!\left(\frac{\pi}{6}\right) = 0.5 and 2×0.5=12 \times 0.5 = 1. Then ln(e3)=3\ln(e^3) = 3. The sum is 1+3=41 + 3 = 4. If you got something near 3.813.81, you were in DEG and the calculator read sin\sin of a tiny angle of about half a degree — switch modes and try again.

Common input mistakes to watch for

  • Wrong angle mode. The single most frequent error. Glance at the DEG/RAD indicator before every trig calculation; a sign flip or a wildly small/large value is the tell.
  • Missing parentheses around fractions and negatives. Write (a + b)/c, not a + b/c; write (-x)^2, not -x^2. The calculator obeys brackets, not your mental layout.
  • Confusing log and ln. log is base 1010; ln is base ee. Mixing them silently produces a plausible-but-wrong number.
  • Treating ^ as left-to-right. 2^3^2 may evaluate as 2(32)=5122^{(3^2)} = 512 or (23)2=64(2^3)^2 = 64 depending on the model — bracket the power tower you mean.
  • Reusing a previous mode or ANS. A leftover RAD setting or a stale ANS value carries into the next problem. Clear and confirm before a fresh calculation.

A scientific calculator is fast and exact, but it answers exactly what you type. Set the mode first, parenthesize anything ambiguous, and read the indicator before you trust the trig — get those three habits right and the wrong answers mostly disappear.

Frequently Asked Questions

What is the difference between DEG and RAD on a calculator?
DEG measures angles in degrees, where a full turn is 360. RAD measures angles in radians, where a full turn is 2 pi. The calculator interprets every trig input using whichever mode is shown on screen, so sin(30) gives 0.5 in DEG but about -0.988 in RAD. Use DEG for geometry and most physics angles, RAD for calculus.
Why does my calculator give a different answer than I expect?
A scientific calculator evaluates by order of operations, not left to right. For 6 + 2 times 3 it does the multiplication first, giving 12, not 24. It also applies powers before negation, so -3^2 returns -9. Wrap anything ambiguous in parentheses so the calculator reads what you intend.
What does log mean on a scientific calculator?
The log key computes the base-10 logarithm, so log 1000 equals 3. The ln key computes the natural logarithm with base e, so ln e equals 1. In higher math log often means natural log, so always check which base is intended before trusting the result.
How do I square a negative number on a calculator?
Use parentheses: enter (-3)^2 to get 9. If you type -3^2 the power is applied before the negation, so the calculator reads it as -(3^2) and returns -9. The brackets force the negative sign to be squared along with the number.
What does the x! key do?
The x! key computes a factorial: the product of all positive integers up to that number. So 5! equals 5 times 4 times 3 times 2 times 1, which is 120. Factorials grow very fast and overflow the display quickly, so most calculators stop near 69 factorial.

Need help with a problem?

Upload your question and get a verified, step-by-step solution in seconds.

Open GPAI Solver →