cortexjs.io
cortexjs.io copied to clipboard
MathJSON parsing of expressions with very large powers of ten
Expressions like $10^{33333}$ with a very large exponent is parsed in MathJSON as
["Power", 10, 333333]
but $4\cdot10^{333333}$ is parsed as
"PositiveInfinity"
As a system allowing complex mathematical expressions, converting this (but not the other) to float seems inconvenient.