5e2
5e2 is a compact representation of a number using scientific notation in base-10, commonly used in mathematics, science, and computing. The expression 5e2 evaluates to 5 × 10^2, which equals 500. In this notation, the part before the e is the significand (or mantissa) and the integer after the e is the exponent of 10. The notation is case-insensitive, so 5E2 is equivalent to 5e2 in most contexts. Variants such as 5e-2 and 3.14e6 denote 0.05 and 3.14 × 10^6, respectively.
In programming and data contexts, 5e2 is commonly used to write floating-point literals without decimal points.
Advantages of this notation include conciseness and clarity when expressing very large or very small numbers,
See also scientific notation; floating-point numbers; exponential notation.