📐 Math ResourcesLast updated July 24, 2026

Scientific Calculator Guide 2026: Trig, Logarithms, Notation & Degree vs Radian Mode

Every function explained — plus the mode setting that trips up more users than any other

U0001F4D0
6 + inverses
Trig Functions
U0001F4C9
Any base
Log Bases
U0001F522
~15–17 digits
Precision
⏱️
10 min
Read Time
💡

Key Takeaways

  • Degree/radian mode is not a display preference — it changes the actual input the trig function receives. sin(30) in degree mode = 0.5; sin(30) in radian mode ≈ −0.988.
  • One radian is the angle where the arc length equals the radius. A full circle is 2π radians = 360°, so 180° = π radians exactly.
  • Convert degrees to radians: multiply by π/180. Convert radians to degrees: multiply by 180/π.
  • Radians are the "natural" unit for calculus: the derivative of sin(x) is exactly cos(x) only when x is in radians — in degrees an extra π/180 factor appears.
  • Scientific notation (a × 10ⁿ, 1 ≤ a < 10) exists to represent very large or very small numbers without writing long strings of zeros, while preserving significant figures.
  • log (base 10) and ln (natural log, base e ≈ 2.71828) are different functions — log₁₀(100) = 2, but ln(100) ≈ 4.605.
  • This site’s calculators run standard IEEE 754 double-precision floating-point arithmetic in the browser (~15–17 significant decimal digits) — deterministic and formula-based, not an AI approximation.

A scientific calculator packs trigonometry, logarithms, exponents, and scientific notation into one tool — but the single most common source of wrong answers isn’t a broken calculator, it’s the degree/radian mode switch. This guide consolidates everything you need: how each function works, why degree and radian mode give completely different results for the same input, and how calculators actually compute these functions to double-precision accuracy under the hood. Use the scientific calculator for full function access, the dedicated trigonometry studio for triangle-solving and the unit circle, or the logarithm and exponent calculators for those specific operations.

U0001F522

How Scientific Notation Works

Scientific notation expresses a number as a × 10ⁿ, where the coefficient a is between 1 and 10, and n is an integer exponent. Avogadro’s number, 602,000,000,000,000,000,000,000, becomes 6.02 × 10²³ — far easier to read and compare. Converting to scientific notation: move the decimal point until only one non-zero digit remains before it; the number of places moved becomes the exponent (positive if you moved left, negative if you moved right). Example: 0.000047 → 4.7 × 10⁻⁵. Multiplying in scientific notation: multiply the coefficients, add the exponents — (3×10²) × (4×10³) = 12×10⁵ = 1.2×10⁶ (renormalized since 12 ≥ 10). Dividing: divide coefficients, subtract exponents. Calculators switch to scientific notation display automatically once a result exceeds their fixed-notation display range — this is a display convention, not a change in the underlying stored value.
U0001F4D0

Trigonometric Functions: Sine, Cosine, Tangent & Their Inverses

The three primary trig functions relate an angle in a right triangle to a ratio of side lengths: sin(θ) = opposite/hypotenuse, cos(θ) = adjacent/hypotenuse, tan(θ) = opposite/adjacent (SOH-CAH-TOA). Their reciprocals are cosecant, secant, and cotangent. The inverse functions (asin, acos, atan) go the other way — given a ratio, they return the angle that produces it. Beyond triangles, sin and cos describe periodic motion (a full cycle every 360°/2π radians) and underpin AC electrical signals, sound waves, and GPS triangulation. For step-by-step triangle solving, the unit circle, and exact special-angle values (0°, 30°, 45°, 60°, 90°), use the dedicated trigonometry studio — it covers Law of Sines, Law of Cosines, and the ambiguous SSA case in full depth.
U0001F4C9

Logarithms and Exponents on a Scientific Calculator

A logarithm answers "to what power must the base be raised to get this number?" — logᵇ(x) = y means b^y = x. Scientific calculators provide log (base 10) and ln (natural log, base e ≈ 2.71828) as dedicated buttons; any other base uses the change-of-base formula logᵇ(x) = ln(x)/ln(b). Exponents (a^n) are the inverse operation — the "x^y" or "^" button raises a to the power n, including negative and fractional exponents (a^(1/2) = √a). Both functions are foundational to compound interest, pH calculations, decibel scales, and the Richter scale. For the full rule set (product, quotient, power rules) and worked examples, see the logarithm calculator, exponent calculator, and the exponents/logarithms sections of the Algebra & Equations guide.
U0001F9ED

Degree vs Radian Mode: What It Means and Why It Matters

A radian is the angle formed when the arc length of a circle equals its radius. Because a circle’s circumference is 2π times its radius, a full circle is exactly 2π radians — the same 360° you already know, just measured differently. That makes 180° = π radians, 90° = π/2, 60° = π/3, 45° = π/4, and 30° = π/6. Conversion: degrees × (π/180) = radians; radians × (180/π) = degrees. Why two units exist: degrees trace back to Babylonian base-60 astronomy (360 divides evenly by many small numbers, convenient for hand calculation); radians are the unit calculus and physics actually need — the derivative of sin(x) equals cos(x) exactly only when x is measured in radians, so every formula involving rates of change of trig functions (oscillation, waves, rotational motion) is written in radians. The term "radian" itself dates to an 1873 exam paper by James Thomson at Queen’s College Belfast, building on angle-measurement work by Roger Cotes in 1714. The practical trap: a scientific calculator has no way to know which unit you intend — it only knows its current mode setting. Typing sin(30) expecting the classic 0.5 (a 30° angle) while the calculator is set to radian mode instead evaluates sin of a 30-radian angle (over four full rotations), returning approximately −0.988. This single mismatch is the most common source of "wrong" scientific calculator answers reported by users — always confirm the DEG/RAD indicator before reading a trig result. Use degrees for everyday, navigation, surveying, and construction angles; use radians for calculus, physics, and programming (nearly every programming language’s math library expects radians).

Scientific Calculator Accuracy: How the Math Is Actually Computed

This calculator runs on IEEE 754 double-precision floating-point arithmetic — the same numeric standard used by virtually all modern software, carrying roughly 15–17 significant decimal digits of precision. Trigonometric, logarithmic, and exponential functions aren’t looked up from a table: they’re computed through range reduction (shrinking the input to a small standard interval using the function’s known periodicity or identities) followed by a polynomial or rational approximation tuned to be accurate to the last representable bit across that interval. Two accuracy caveats are worth knowing, not because this calculator is unusually imprecise but because they’re inherent to floating-point math on any platform: catastrophic cancellation (subtracting two nearly-equal large numbers discards significant digits) and display rounding (the calculator may compute more digits internally than it displays, rounding the shown result for readability). In line with this site’s broader computation policy, every result here is deterministic and formula-based — the same input always produces the same output through the same fixed arithmetic, with zero AI approximation or hallucination risk in the calculation itself.
🧮

Related Tools & Calculators

7 free tools linked to this guide

Frequently Asked Questions

What is the difference between degree mode and radian mode on a calculator?
Degree mode treats angle inputs as degrees (a full circle = 360); radian mode treats them as radians (a full circle = 2π ≈ 6.283). The same number typed into sin(), cos(), or tan() gives a completely different result depending on the mode — sin(30) is 0.5 in degree mode but ≈ −0.988 in radian mode, because 30 radians is a much larger angle (over 4 full rotations) than 30 degrees. Always check the mode indicator (usually "DEG" or "RAD" on screen) before evaluating a trig function.
How do you convert degrees to radians?
Multiply the degree value by π/180 (≈ 0.01745). Example: 90° × (π/180) = π/2 ≈ 1.5708 radians. To go the other way, multiply radians by 180/π: π/4 radians × (180/π) = 45°. Common reference points: 30° = π/6, 45° = π/4, 60° = π/3, 90° = π/2, 180° = π, 360° = 2π.
Why does my calculator give the wrong answer for sine, cosine, or tangent?
The most common cause by far is the calculator being in the wrong angle mode. If you expect sin(90) = 1 but get 0.894, your calculator is in radian mode (sin of 90 radians ≈ 0.894), not degree mode. Switch modes and recheck. A second, less common cause is entering the angle in the wrong units for an inverse function — asin/acos/atan return their result in whatever mode is currently selected, so the same mode mismatch applies in reverse.
How accurate are online scientific calculators?
This calculator computes in IEEE 754 double-precision floating point — the same standard used by virtually all modern software — which carries roughly 15–17 significant decimal digits. Trigonometric and logarithmic functions are computed via range reduction followed by polynomial or rational approximations that are accurate to the last bit of that precision for standard inputs. The main accuracy caveat is catastrophic cancellation: subtracting two nearly-equal large numbers can lose significant digits, which is a property of floating-point math itself, not a calculator defect.
What is scientific notation and why is it used?
Scientific notation writes a number as a × 10ⁿ, where 1 ≤ a < 10 and n is an integer — e.g. 6.02 × 10²³ instead of 602,000,000,000,000,000,000,000. It exists to represent very large or very small numbers compactly while making the number of significant figures explicit. Calculators automatically switch to scientific notation display when a result is too large or too small to show in standard decimal form.
What is the difference between log and ln?
"log" (without a subscript) conventionally means log base 10 (common logarithm): log(100) = 2 because 10² = 100. "ln" means natural logarithm, base e (≈ 2.71828): ln(100) ≈ 4.605 because e^4.605 ≈ 100. Scientific calculators provide both as separate buttons. To compute a logarithm in any other base b, use the change-of-base formula: logᵇ(x) = ln(x)/ln(b).

Ready to Calculate?

Browse our complete math calculator suite — free, instant, and trusted by professionals worldwide.