Formula: Errors
QFFE_206: "Overflow in 'token'"
Attempt to calculate the value of a formula resulted in overflow.
Cause
The result of arithmetic operations or function calls is too big.
| 1e200 * 1e200 | Overflow in '*' |
| -1e+308 - 1e308 | Overflow in '-' |
| 5^5^5 | Overflow in '^' |
| 3^1000 / 2^1500 | Overflow in '^' |
| exp(1000) | Overflow in 'exp(1000)' |
| pow(200, 200) | Overflow in 'pow(200, 200)' |
Resolution
- Correct formula errors
- If the final result should not cause overflow, try to change the order of operations. For example, to eliminate overflow in calculation of "3^1000 / 2^1500" replace it with "(3/2)^1000 / 2^500".
- If you do not know which part of the expression causes overflow, try to simplify the formula.