ERR:OVERFLOW
Texas Instruments TI-84 Calculator
Severity: MinorWhat Does This Error Mean?
ERR:OVERFLOW means a calculation produced a number too large for the calculator to handle. The TI-84 can handle numbers up to 9.99999999999 x 10^99. Break the calculation into smaller steps or use logarithms.
Affected Models
- TI-84 Plus
- TI-84 Plus CE
- TI-84 Plus Silver Edition
- TI-83 Plus
- TI-Nspire (TI-84 mode)
Common Causes
- Calculation result exceeds 10^100
- Large factorial (e.g. 70! overflows)
- Exponential growth calculation (e.g. large compound interest)
- Very large exponents in scientific notation
How to Fix It
-
Check if your calculation can be simplified.
Instead of computing huge numbers directly, see if the final answer can be reached through smaller intermediate steps.
-
Use logarithms for very large calculations.
log(A*B) = log(A) + log(B). Computing in log space avoids overflow, then convert back with 10^x if needed.
-
For factorials: the TI-84 overflows at 70!
69! = 1.71 x 10^98 (fits). 70! = 1.20 x 10^100 (overflows). Use nCr or nPr instead of raw factorials when possible — they are computed more efficiently.
Frequently Asked Questions
What is the largest number the TI-84 can display?
9.999999999 x 10^99. Any result larger than this causes ERR:OVERFLOW.
Can the TI-Nspire handle larger numbers?
Yes. The TI-Nspire CAS can handle much larger numbers using its computer algebra system. It can compute factorials well beyond 70! without overflow.