Scientific notation is a way of writing very large or very small numbers in a compact form. A number in scientific notation is written as a coefficient multiplied by a power of 10, where the coefficient is at least 1 and less than 10. For example, 45,600,000 is written as 4.56 x 10^7, and 0.0000456 is written as 4.56 x 10^-5. NIST Special Publication 811, the official U.S. guide for using the metric system, recommends scientific notation for expressing values that span many orders of magnitude. ISO 80000-1 reinforces this as the international standard for quantitative expressions. Whether you are measuring the distance between galaxies or the mass of a single atom, scientific notation prevents counting errors and communicates precision through significant figures.
What This Calculator Does
This calculator provides three modes: converting a decimal number to scientific notation, converting from scientific notation to standard form, and performing arithmetic directly in scientific notation.
For related tools, try our Significant Figures Calculator for rounding numbers to the correct precision, or our Scientific Calculator for general mathematical computations. You can also use our Percent Error Calculator when comparing measured values to accepted values in lab work.
- Inputs: Decimal number (with significant figures), or coefficient and exponent, or two numbers in scientific notation
- Outputs: Scientific notation, standard form, coefficient, and exponent
How the Calculation Works
Converting to Scientific Notation
n = coefficient x 10^exponent
exponent = floor(log10(|n|))
coefficient = n / 10^exponent
The exponent is the integer part of the base-10 logarithm of the absolute value of the number. Dividing the number by 10 raised to that exponent gives the coefficient, which is then rounded to the desired significant figures. NIST SP 811 specifies that conversions should follow a rule of reason: do not use more significant digits than justified by the precision of the original data.
Multiplying in Scientific Notation
(a x 10^m) x (b x 10^n) = (a x b) x 10^(m+n)
Multiply the coefficients and add the exponents. If the resulting coefficient is 10 or more, adjust by increasing the exponent by 1 and dividing the coefficient by 10.
Dividing in Scientific Notation
(a x 10^m) / (b x 10^n) = (a / b) x 10^(m-n)
Divide the coefficients and subtract the exponents. If the result has a coefficient less than 1, adjust by decreasing the exponent by 1 and multiplying the coefficient by 10.
Adding and Subtracting in Scientific Notation
To add or subtract, both numbers must have the same exponent. Convert to standard form, perform the operation, then convert back to scientific notation. This calculator handles the conversion automatically.
How to Use the Calculator
- Select the mode: convert to scientific notation, convert from scientific notation, or perform arithmetic
- Enter your values in the appropriate fields
- Results update instantly with both scientific notation and standard form
Example Calculations
Converting a Small Number
Convert 0.000045678 to scientific notation with 3 significant figures. The exponent is -5 (since log10(0.000045678) is approximately -4.34, floor gives -5). Coefficient: 0.000045678 / 10^-5 = 4.5678, rounded to 3 sig figs = 4.57. Result: 4.57 x 10^-5.
Multiplying Scientific Notation
Multiply 3.2 x 10^4 by 2.5 x 10^3. Coefficients: 3.2 x 2.5 = 8.0. Exponents: 4 + 3 = 7. Result: 8.0 x 10^7, which equals 80,000,000.
Real-World Scenarios
Astronomy: Interstellar Distance in Houston
A graduate student in Houston is calculating the distance to Proxima Centauri, the nearest star to Earth. The distance is approximately 4.01 x 10^13 kilometers. Writing this as 40,100,000,000,000 km is impractical and prone to counting errors. She uses the calculator to convert between scientific notation and standard form as she works through parallax calculations. When she multiplies the parallax angle (0.7687 arcseconds, or 3.727 x 10^-6 radians) by the baseline distance (1 astronomical unit, or 1.496 x 10^8 km), the calculator handles the exponent arithmetic automatically: 3.727 x 10^-6 x 1.496 x 10^8 = 5.574 x 10^2, giving a parsec distance that she then converts to the final answer.
Chemistry: Avogadro's Number in Madison
An undergraduate chemistry student in Madison is working through a stoichiometry problem involving Avogadro's number, 6.022 x 10^23. She needs to calculate the number of molecules in 0.025 moles of sodium chloride. The calculation is 0.025 x 6.022 x 10^23 = 1.5055 x 10^22. Using the calculator's arithmetic mode, she enters both numbers in scientific notation and gets the result directly, avoiding the error-prone process of counting zeros manually. She then divides by 4 to find molecules per unit cell: 1.5055 x 10^22 / 4 = 3.764 x 10^21.
Data Storage: Petabyte Calculations in San Francisco
A data engineer at a tech company in San Francisco is estimating storage requirements for a new data pipeline. The system generates 2.5 x 10^9 bytes per day and needs to retain data for 3 years (1,095 days). Total storage: 2.5 x 10^9 x 1.095 x 10^3 = 2.738 x 10^12 bytes, or approximately 2.5 terabytes. She uses the calculator to convert between bytes, gigabytes, and terabytes by dividing by 10^9 and 10^12, keeping the scientific notation consistent throughout. This avoids the common mistake of confusing binary prefixes (1 GiB = 2^30 bytes = 1.074 x 10^9 bytes) with decimal prefixes (1 GB = 10^9 bytes).
Common Mistakes to Avoid
- Coefficient out of range: The coefficient must be at least 1 and less than 10. A value of 14.5 x 10^3 is not in proper scientific notation. It should be 1.45 x 10^4. NIST SP 811 explicitly requires this normalization
- Adding without matching exponents: You cannot add coefficients directly unless the exponents are equal. Always convert to the same power of 10 first. For example, 3 x 10^4 + 2 x 10^3 is not 5 x 10^4. It is 3 x 10^4 + 0.2 x 10^4 = 3.2 x 10^4
- Losing significant figures: Rounding too early in multi-step calculations causes accumulated error. NIST Handbook 44 Appendix C advises that rounding should be the last step of the conversion process and should be performed only once. Keep extra digits during intermediate steps
- Misreading negative exponents: A negative exponent means a small number, not a negative number. 4.5 x 10^-3 is 0.0045, which is positive. The exponent tells you how many places to shift the decimal point and in which direction
Limitations of This Calculator
This calculator handles standard scientific notation with base-10 exponents. It does not support engineering notation (where the exponent is always a multiple of 3) as a separate mode, though you can convert results manually. The calculator uses IEEE 754 double-precision floating-point arithmetic, which can represent numbers from approximately 10^-308 to 10^308. Numbers outside this range will return zero or infinity. The significant figures rounding follows standard rules but does not propagate uncertainty through calculations. For uncertainty analysis, use NIST TN 1297 guidelines or dedicated uncertainty propagation software. This tool does not handle complex numbers, vectors, or matrix notation.
Authoritative Research and Resources
- NIST Special Publication 811: Guide for the Use of the International System of Units (SI) - The official U.S. government guide for measurement units, including rules for scientific notation, significant figures, and proper formatting of quantitative expressions. NIST SP 811 specifies that conversions should use no more significant digits than justified by the original data.
- ISO 80000-1: Quantities and Units, Part 1: General - The international standard for mathematical notation and units, including conventions for scientific notation, the use of powers of 10, and the proper expression of numerical values across scientific disciplines.
- NIST Handbook 44 (2026 Edition) - Specifications, tolerances, and other technical requirements for weighing and measuring devices, including rules for digital indication rounding and significant figures in commercial measurement. The 2026 edition includes amendments adopted at the 110th NCWM Annual Meeting.