E-Notation Calculator Calculators
0 calculators tagged with “E-Notation Calculator”
All Calculators
No calculators found for this topic.
E-Notation Format
aEb = a × 10^b
Examples:
- 6.022E23 = 6.022 × 10²³
- 1.38E-23 = 1.38 × 10⁻²³ (Boltzmann constant)
- 3.0E8 = 3.0 × 10⁸ (speed of light in m/s)
- 4.5E-6 = 4.5 × 10⁻⁶ = 0.0000045
Converting E-Notation to Standard Form
Positive exponent: move decimal right by b places (5.3E4 = 53,000). Negative exponent: move decimal left by |b| places (2.1E-3 = 0.0021). Large positive exponents produce large numbers; negative exponents produce small decimals.
Converting Standard Form to E-Notation
Move decimal to give a number between 1 and 10; count moves → exponent. Example: 0.000045 → move decimal 5 places right → 4.5 × 10⁻⁵ = 4.5E-5. Example: 380,000 → move decimal 5 places left → 3.8 × 10⁵ = 3.8E5.
E-Notation in Spreadsheets and Programming
Excel/Google Sheets: =6.022E23 enters the value; display as scientific notation with Format Cells → Scientific. Python: 6.022e23 or 1.6e-19 in code. Java/C++: 1.23e4 (double literal). NumPy: np.array([1.5e-6, 3.0e8]). In these contexts, 'e' (lowercase) is equivalent to 'E' (uppercase).
Glossary
Frequently Asked Questions
On a calculator or computer, E means '× 10 to the power of.' So 3.5E6 = 3.5 × 10⁶ = 3,500,000 and 2.7E-4 = 2.7 × 10⁻⁴ = 0.00027. E-notation is used to display very large or very small numbers compactly. On most scientific calculators, the EE or EXP key enters the exponent. Do not confuse: 3.5E6 means 3.5 × 10⁶, not 3.5 × e⁶ (Euler's number). E in E-notation always means base 10, not base e.
aEb = a × 10^b. For positive b: move decimal point right by b places (add zeros if needed): 4.2E4 → move 4 places right → 42,000. For negative b: move decimal point left by |b| places: 7.3E-3 → move 3 places left → 0.0073. Quick check: E-notation with positive exponent gives a large number; negative exponent gives a small decimal less than 1 (unless a > 1, in which case it may still be greater than 1).
Type the number directly using E notation: =6.022E23 in a cell. Excel stores and calculates with the full precision. To display cells in scientific notation format: right-click → Format Cells → Number → Scientific; set decimal places as desired (e.g., 2 gives 6.02E+23). To convert a regular number to scientific notation display: change cell format, not the value. In formulas: =6.022E23*1.38E-23 = 8.31E0 = 8.31 (Boltzmann × Avogadro = gas constant).
In Python, Java, C, C++, and most programming languages, floating-point E-notation literals use lowercase or uppercase e: 6.022e23 or 6.022E23 (same value). Examples: Python: x = 1.6e-19 (elementary charge); print(x) shows 1.6e-19. NumPy: np.float64(6.022e23) stores Avogadro's number. C/C++: double c = 3.0e8 (speed of light). Note: in Python, 1e100 * 1e100 = inf (infinity overflow for double precision; need arbitrary precision libraries for such large numbers).