You computed something like 0.000000123 or 1,234,567,890,000 and your calculator shows you "1.23E−7" or "1.23E+12". Useful for scientists, frustrating for everyone else. Here's how to make various calculators show full decimal form instead.
Why calculators use scientific notation
Most handheld calculators have 10-12 digit displays. When a number's magnitude is too big or too small to fit, scientific notation lets the calculator preserve precision. 1.23 × 10⁻⁷ takes 5 display characters; 0.000000123 takes 10 — and the calculator may not even have the decimal precision to show it correctly.
The display switch is a feature, not a bug. But sometimes you want the full number anyway.
TI-84 Plus / Plus CE
The TI-84 has a "MODE" setting for number display:
- Press the MODE button.
- The first row shows: NORMAL / SCI / ENG.
- Press NORMAL to highlight it. (NORMAL = avoid scientific notation when possible.)
- Press 2nd → MODE to QUIT.
In NORMAL mode, the TI-84 shows scientific notation only when the number is too big or too small for the display. For numbers within the display range, you get the full decimal form.
The TI-84 also has a "FLOAT" setting that controls how many decimal places are displayed. Set FLOAT to a fixed number (e.g., 4) to see exactly 4 digits past the decimal point regardless of the value.
Casio fx-991ES / fx-991EX / fx-991CW
The Casio fx-991 series has a similar mode setting:
- Press SHIFT → MODE → SETUP.
- Look for "Norm" / "Sci" / "Fix" / "Eng" options.
- Pick "Norm 1" — this shows scientific notation only for very large/very small numbers. "Norm 2" stays in decimal form longer.
- Press AC to return.
The Casio also has a "Fix" mode that locks the number of decimal places, similar to the TI-84's FLOAT setting.
Windows Calculator
The built-in Windows calculator (Calculator app):
- Switch to Standard or Scientific mode (View menu / hamburger).
- Standard mode rarely uses scientific notation.
- Scientific mode shows scientific notation when needed but displays the full decimal up to the display limit.
For very large or very small numbers, Windows Calculator switches to scientific notation automatically. To see the full decimal, copy the result and paste it elsewhere.
macOS Calculator
The macOS Calculator app:
- Open View → Decimal Places and pick a fixed number.
- The display switches to scientific notation when the number can't fit.
For higher precision and fewer scientific notation switches, switch to View → Programmer or Scientific.
Spreadsheets (Excel, Google Sheets)
Excel and Sheets show scientific notation for very large or very small numbers in the default General format. To force decimal:
- Select the cell(s).
- Right-click → Format Cells.
- Pick Number with as many decimal places as you need.
For very long numbers (15+ digits), Excel loses precision regardless of formatting. Use the TEXT function or paste as text if you need full precision (e.g., for credit-card numbers).
Programming languages
For developers who want fine control:
Python: use the decimal module for arbitrary precision, or format with f-strings:
print(f"{value:.10f}") # 10 decimal places
print(f"{value:,.2f}") # comma thousands, 2 decimals
JavaScript: use toFixed(n) or toLocaleString() for non-scientific output:
(0.000000123).toFixed(10); // "0.0000001230" (123000000000).toLocaleString(); // "123,000,000,000"
For very large or very small numbers, use BigInt or libraries like decimal.js.
Calcly's online calculators
Most of our calculators display values in the format that makes sense for the metric — currencies show as $1,234.56, percentages as 12.34%, scientific values use 4 decimal places by default. The TI-84 calculator on this site has a configurable decimal-place setting.
For very large numbers (above 1 trillion) or very small (below 0.0001), most calculators on this site fall back to scientific notation to preserve significant figures. If you need full decimal display, view the underlying value in your browser's JavaScript console.
What if my calculator doesn't have the option?
Some basic four-function calculators don't let you change the display mode. Workarounds:
- Multiply or divide by a power of 10 to bring the number into the display range, then track the magnitude separately.
- Use a different calculator. Casio fx-991 series at $25 supports all the modes you need.
- Use a smartphone calculator app — most allow display configuration.
When scientific notation is genuinely better
For values far from the human-readable range (atomic-scale, astronomical-scale, finance with billion+ figures), scientific notation preserves significant figures correctly. "1.23 × 10²³ atoms" is unambiguous; "123,000,000,000,000,000,000,000 atoms" implies precision the measurement doesn't have.
If you're computing real-world quantities (mortgage payments, tip amounts, BMI, etc.), the decimal form is almost always what you want.
Try the online TI-84
Our free TI-84 calculator has a configurable decimal-places setting (0-12) that controls how many digits are shown after the decimal point — and falls back to scientific notation only for extremely large or small values.