Skip to content
CalcSpectrum
Math & Education

Scientific Calculator Functions Explained

A plain-English guide to the functions on a scientific calculator — powers, roots, logarithms, trigonometry, constants, and order of operations — with examples.

Understanding the Calculation

A basic calculator only adds, subtracts, multiplies, and divides. A scientific calculator adds the operations needed for algebra, geometry, trigonometry, and science — powers, roots, logarithms, and trig functions — while still respecting the same order-of-operations rules.

Most confusion with scientific calculators comes from two places: not knowing what a function actually does, and not accounting for parentheses correctly when an expression has several operations chained together. Knowing each function's purpose and always double-checking parentheses avoids both.

Below, each supported function is explained in plain terms with a short example, followed by a note on how angle mode (degrees vs radians) affects trigonometric results.

The Formula

Order of Operations
Parentheses → Exponents → Multiplication/Division → Addition/Subtraction

This order (commonly remembered as PEMDAS) determines how a scientific calculator reads any expression that mixes multiple operations, so the same rule applies whether you're combining basic arithmetic or advanced functions like sin() and sqrt().

Variables & Definitions

( )— Parentheses
Force everything inside to be evaluated first, before anything outside.
^— Exponent
Raises a number to a power, evaluated right-to-left when chained.
* /— Multiplication / Division
Evaluated left-to-right after parentheses and exponents.
+ -— Addition / Subtraction
Evaluated last, left-to-right.

Worked Example

Worked Example: Reading Each Function

Walk through six short expressions that each demonstrate one core function type.

Starting Inputs
  • Power:2^10
  • Square Root:sqrt(144)
  • Base-10 Log:log(1000)
  • Natural Log:ln(e)
  • Sine (Degrees):sin(30)
  • Combined Expression:sin(30) + 2^3
Step-by-Step Calculation
  1. 1

    Powers: 2^10

    Multiply 2 by itself 10 times. Used for exponential growth, area/volume scaling, and scientific notation.

    2^10 = 1024
    Result: 1024
  2. 2

    Roots: sqrt(144)

    The square root asks: what number, multiplied by itself, gives 144?

    sqrt(144) = 12
    Result: 12
  3. 3

    Base-10 logarithm: log(1000)

    log(x) asks: what power do you raise 10 to, to get x? 10^3 = 1000, so log(1000) = 3.

    log(1000) = 3
    Result: 3
  4. 4

    Natural logarithm: ln(e)

    ln(x) is the same idea but using base e (≈2.71828) instead of base 10. Since e^1 = e, ln(e) = 1.

    ln(e) = 1
    Result: 1
  5. 5

    Trigonometry in degree mode: sin(30)

    In degree mode, sin(30°) = 0.5. Switching to radian mode would require sin(pi/6) to get the same result.

    sin(30°) = 0.5
    Result: 0.5
  6. 6

    Combined expression with order of operations: sin(30) + 2^3

    Exponents evaluate before addition: 2^3 = 8 first, then sin(30°) = 0.5 is added.

    sin(30) + 2^3 = 0.5 + 8 = 8.5
    Result: 8.5
Conclusion: Each function has one clear job — powers and roots handle scaling, logarithms reverse exponents, trig functions relate angles to ratios — and order of operations decides how they combine when chained in a single expression.

Calculate Your Own Numbers

Put these formulas into practice with our free, in-browser calculators:

What the Results Mean For You

  • Use powers and roots for anything involving area, volume, growth rates, or reversing a squared/cubed value.
  • Use logarithms when a quantity spans many orders of magnitude (like pH, sound intensity, or earthquake magnitude) or when solving for an exponent algebraically.
  • Use trigonometric functions (sin, cos, tan) and their inverses (asin, acos, atan) for triangle geometry, angles, and periodic motion — but always confirm the angle mode (degrees or radians) matches what the problem expects, since the same input produces very different results in each mode.

Common Pitfalls & Mistakes

Mixing up degree mode and radian mode

sin(30) in degree mode equals 0.5, but sin(30) in radian mode equals about -0.988, because 30 radians is a completely different angle than 30 degrees. Always check the angle mode before evaluating trig functions.

Confusing log and ln

log(x) uses base 10; ln(x) uses base e. They give different results for the same input unless x is 1 — log(100)=2, but ln(100)≈4.605.

Missing parentheses in chained expressions

An expression like sin(30) + 2^3 relies on order of operations to group 2^3 before the addition. If a calculation needs a different grouping, explicit parentheses are required — the calculator will not guess intent.

Authoritative References & Sources

All formula representations and regulatory context are verified against authoritative public sources:

  • Order of OperationsKhan Academy

    Educational reference on the standard order of operations used when evaluating mathematical expressions.

    Visit source documentation