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.
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 parts; radians (RAD) measure the arc length on a unit circle, so a full turn is . The conversion is
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 in DEG and you get , the textbook value. Type the exact same keys in RAD and you get , because 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 use DEG. Calculus and limits such as use RAD. A third mode, GRAD ( 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
A simple calculator that acts on each keypress computes , then . A scientific calculator applies precedence: multiplication first, giving . The scientific answer, , 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 on most models, because the power applies before the negation: it reads . To square a negative number, wrap it: (-3)^2 gives . 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 | (DEG) | |
log |
base-10 logarithm | ||
ln |
natural log, base | ||
e^x |
exponential | ||
x^y / ^ |
power | ||
√ |
square root | ||
x! |
factorial | ||
1/x |
reciprocal | of |
Two pairings cause confusion. First, log means base on a calculator, while in higher math "" often means natural log. Second, ln and e^x are inverses: , handy for checking keystrokes. The factorial multiplies all positive integers up to , so ; it grows fast and overflows the display (most models cap near ).
Worked example 1: an angle in physics
A projectile is launched at with speed . The horizontal component is . With the calculator in DEG:
If you forget and stay in RAD, , giving — 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
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 (), then the addition (), then the division:
Type the same keys without brackets, as 5 + 3^2 / 2, and precedence gives . Same keys, different grouping, different answer.
Try it yourself, then check
Put your calculator in RAD and evaluate .
Working in order: is , so and . Then . The sum is . If you got something near , you were in DEG and the calculator read 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/RADindicator 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, nota + b/c; write(-x)^2, not-x^2. The calculator obeys brackets, not your mental layout. - Confusing
logandln.logis base ;lnis base . Mixing them silently produces a plausible-but-wrong number. - Treating
^as left-to-right.2^3^2may evaluate as or depending on the model — bracket the power tower you mean. - Reusing a previous mode or
ANS. A leftover RAD setting or a staleANSvalue 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 →