A scientific calculator evaluates a whole expression with correct operator precedence rather than one operation at a time. The FindUtils Scientific Calculator covers trigonometric and hyperbolic functions, logarithms, roots, powers, factorials and memory keys, in degrees or radians.
Two things cause most wrong answers: the angle mode, and assuming a calculator reads left to right. This guide deals with both.
DEG and RAD: The Mode That Changes Your Answer
The single most common source of a wrong trigonometric result is the angle mode.
- DEG treats the input as degrees.
sin(30)is 0.5. - RAD treats it as radians.
sin(30)is −0.988.
Both are correct for their mode. The calculator starts in RAD, which is what most mathematics past school level uses; school trigonometry problems almost always want DEG. Check the toggle before trusting a sine, cosine or tangent.
Hyperbolic functions ignore the mode entirely. sinh, cosh and tanh take a plain number, not an angle, so tanh(1) is 0.7616 whichever toggle is showing. That is not a quirk of this calculator; it is what the functions are.
Every Function, and What It Does
| Key | Function | Example |
|---|---|---|
sin cos tan | Trigonometric, honour DEG/RAD | sin(30) = 0.5 in DEG |
sinh cosh tanh | Hyperbolic, unitless | tanh(1) = 0.761594 |
log | Base-10 logarithm | log(100) = 2 |
ln | Natural logarithm, base e | ln(1) = 0 |
√ | Square root | √(16) = 4 |
∛ | Cube root | ∛(27) = 3 |
ʸ√x | Nth root, writes ^(1/n) | 8 ʸ√x 3 = 2 |
xʸ | Power | 2^10 = 1024 |
x² | Square, applied immediately | 7 → 49 |
n! | Factorial, applied immediately | 5 → 120 |
1/x | Reciprocal, applied immediately | 4 → 0.25 |
π e | Constants | 3.14159…, 2.71828… |
MC MR M+ M− MS | Memory | Store and recall a running value |
Inverse trigonometric and inverse hyperbolic functions — asin, acos, atan, asinh, acosh, atanh — can be typed into an expression even though they have no dedicated key.
Reaching an Nth Root
There is no separate key for a fifth root because none is needed: the nth root of x is x^(1/n). The ʸ√x key writes ^(1/ for you, so 32 ʸ√x 5 ) evaluates 32^(1/5) = 2. Cube roots get their own ∛ key because they come up often enough to be worth one.
Operator Precedence
The calculator follows standard order of operations (PEMDAS / BODMAS), not left-to-right.
2 + 3 × 4 = 14 (not 20) (2 + 3) × 4 = 20 2 ^ 3 ^ 2 = 512 (right-associative: 2^(3^2))
If you are unsure, add parentheses. They cost nothing and remove the ambiguity. This is the difference between a scientific calculator and the one on a phone's lock screen, and it is why an expression typed into a basic calculator often disagrees with the same expression in a spreadsheet.
Step-by-Step: Evaluating an Expression
Step 1: Set the Angle Mode First
Open the Scientific Calculator and check DEG or RAD before typing anything. Changing it afterwards does not retroactively fix a result you already read.
Step 2: Type the Expression
Function keys open their own bracket: pressing sin gives sin(. Close it before pressing equals.
Step 3: Use Parentheses Where Precedence Is Unclear
1 + 2 / 3 is 1.667. (1 + 2) / 3 is 1. Write which one you mean.
Step 4: Read the Result
Results are given to 12 significant digits. Everything runs in your browser and nothing you type is uploaded or saved between sessions.
Real Scenarios
Triangle side. A right triangle with a 10 cm hypotenuse and a 35° angle: switch to DEG, then 10 × sin(35) = 5.736 cm.
Compound growth exponent. Doubling time at 7% annual growth: ln(2) / ln(1.07) = 10.24 years.
Combinations. Choosing 3 from 10: 10! / (3! × 7!) = 120. Factorials grow fast; the calculator refuses arguments above 170, where the result exceeds what a double-precision number can hold.
Catenary curve. The shape of a hanging cable uses cosh. At x = 1 with a = 1, cosh(1) = 1.5431, and the angle mode is irrelevant.
Online Calculator vs Handheld vs Phone
| Aspect | FindUtils (free) | Handheld (£15-150) | Phone default app |
|---|---|---|---|
| Price | Free, no signup | One-off purchase | Included |
| Operator precedence | Yes | Yes | Often not in portrait |
| Hyperbolic functions | Yes | On mid-range and up | Rarely |
| Exam use | No | Often the only option allowed | No |
| Expression visible | Yes, full line | Depends on model | Usually not |
| Works offline | Needs the page loaded | Yes | Yes |
A handheld is the right answer for an exam hall. For checking homework or a quick calculation at a desk, an online calculator that shows the whole expression is easier to audit — you can see what you typed.
Common Mistakes
Mistake 1: Wrong Angle Mode
sin(30) is 0.5 in DEG and −0.988 in RAD. Check the toggle first.
Mistake 2: Expecting Left-to-Right Evaluation
2 + 3 × 4 is 14. Multiplication binds tighter than addition.
Mistake 3: Unclosed Parentheses
A function key opens a bracket. Leaving it open produces an error rather than a guess, which is the safer behaviour but still needs fixing.
Mistake 4: Expecting an Nth Root Key
Use ʸ√x, or type x^(1/n) directly.
Mistake 5: Assuming Hyperbolic Functions Follow DEG
They take a number, not an angle. sinh(1) is 1.1752 in either mode.
Tools Used in This Guide
- Scientific Calculator — Expressions, trigonometry, logarithms, roots and factorials
- Percentage Calculator — Percent of, percent change, increase and decrease
- Fraction Calculator — Exact fraction arithmetic with steps
- Statistics Calculator — Mean, median, mode and standard deviation
- GCD & LCM Calculator — Greatest common divisor and least common multiple
FAQ
Q1: Is the scientific calculator free? A: Yes. FindUtils tools require no signup, no usage limits and no watermarks. The calculation runs in your browser and nothing you type is uploaded.
Q2: What is the difference between DEG and RAD?
A: DEG reads the input as degrees, RAD as radians. sin(30) is 0.5 in DEG and −0.988 in RAD. School trigonometry usually wants DEG; calculus and most higher mathematics use RAD.
Q3: Does it support hyperbolic functions? A: Yes — sinh, cosh and tanh have their own keys, and asinh, acosh and atanh can be typed into an expression. They take a plain number rather than an angle, so the DEG/RAD toggle does not affect them.
Q4: How do I calculate an nth root?
A: Press ʸ√x, which writes ^(1/, then the root and a closing bracket. 8 ʸ√x 3 ) gives 2. Cube roots have their own ∛ key.
Q5: Does it follow order of operations?
A: Yes. It evaluates the full expression with standard PEMDAS/BODMAS precedence and nested parentheses, so 2 + 3 × 4 is 14 rather than 20.
Q6: Is my calculation history saved? A: No. Calculations run locally and nothing is stored between sessions. The memory keys hold a value only while the page is open.
Q7: How precise are the results? A: Results are shown to 12 significant digits, computed in IEEE 754 double precision, which is accurate to roughly 15-16 significant digits internally.
Next Steps
- Work with exact fractions rather than decimals in the Fraction Calculator
- Summarise a data set with the Statistics Calculator
- Handle percentage change correctly with the Percentage Calculator