Power: result = baseⁿ | Root: result = base^(1/n)For power mode, the result is the base multiplied by itself exponent times. For root mode, the nth root of a number is that number raised to the power of 1/n. The 2nd root is the square root, the 3rd root is the cube root, and so on. Negative bases with non-integer exponents are not defined in real numbers and return an error.
Enter a base and exponent to compute a power or nth root. Handles large numbers with scientific notation output.
Calculate any base raised to any power, or find the nth root of any number. Results are shown in both standard and scientific notation for very large or small values. Handles negative bases and large exponents with appropriate error checking.
Exponentiation is one of the most fundamental operations in mathematics, science, and computing. Whether you need 2 to the power of 32 for binary storage calculations, 10 to the power of 9 for orders of magnitude, or the cube root of a volume to find a side length, this calculator covers it. The calculator handles both directions: raising a base to a power, and finding the nth root (which is equivalent to raising to the power 1/n). Results that would overflow standard display are shown in scientific notation automatically. Negative bases with non-integer exponents produce complex (imaginary) numbers, which are outside the scope of real arithmetic. The calculator returns an error in those cases rather than a misleading result.
You came here because
Common situations
- Binary and computing powers of 2: Computer memory sizes are powers of 2. 2^10 = 1,024 bytes, 2^20 = 1,048,576 bytes (1 MB), 2^30 ≈ 1 GB. Enter the exponent to get the exact byte count.
- Scientific orders of magnitude: Avogadro's number, speed of light, and atomic distances all involve large or small powers of 10. Enter the exponent to see the full decimal value.
- Geometric growth and finance: Compound growth raises (1 + rate) to the power of n periods. The exponent calculator computes the growth factor for any rate and term.
- Finding side lengths from volume: The cube root (nth root, n=3) of a volume gives the side length of an equivalent cube. Useful in packaging design and material estimation.
Under the hood
How the calculation works
- 1Enter the base number (the number being raised or rooted).
- 2Enter the exponent for power mode, or the root index n for root mode.
- 3Select Power (base^exponent) or Root (nth root of base).
- 4The calculator computes the result using JavaScript's Math.pow function.
- 5Scientific notation is shown for very large or small results.
- 6The log base 10 of the result and the inverse operation are also displayed.
Show me
A real example
Example: 2^10 (2 to the power of 10)
- 1Base = 2, Exponent = 10
- 22^10 = 2 × 2 × 2 × 2 × 2 × 2 × 2 × 2 × 2 × 2
- 3= 1024
- 4Scientific notation: 1.024 × 10³
- 5log₁₀(1024) = 10 × log₁₀(2) ≈ 3.0103
Watch out for
What can go wrong
- Negative base with fractional exponent: Raising a negative number to a fractional power (like (-4)^0.5) involves complex numbers. The calculator returns an error. If you need even roots of negative numbers, use the absolute value and apply the sign separately.
- Confusing base and exponent: 2^10 is very different from 10^2. 2^10 = 1,024 while 10^2 = 100. Exponentiation is not commutative: a^b does not equal b^a in general.
- Expecting 0^0 to equal 1 always: 0^0 is mathematically indeterminate in some contexts. Most calculators return 1 as a convention, which holds in combinatorics and power series. In calculus limits, it can take different values.
- Using the wrong root for volume conversions: Converting a cubic volume to a linear side length requires the cube root (n=3). Using the square root (n=2) gives the wrong answer for 3D geometry.
Glossary
Related concepts
| Term | Definition |
|---|---|
| Exponentiation | Repeated multiplication of a base by itself. b^n means b multiplied by itself n times. When n is 0, the result is always 1 (by convention). When n is negative, the result is 1/b^|n|. |
| nth Root | The nth root of a number x is the value r such that r^n = x. Equivalently, x^(1/n). The square root is the 2nd root, cube root is the 3rd root. |
| Scientific notation | A way to express very large or small numbers as a coefficient between 1 and 10, times a power of 10. For example, 2^50 = 1,125,899,906,842,624 is written as 1.126 × 10^15. |
| Logarithm (base 10) | The inverse of the power-of-10 function. log₁₀(1000) = 3 because 10^3 = 1000. The log of any result tells you its order of magnitude. |
Make it better
Pro tips
- Check your answer with the inverse: The secondary results show the inverse operation. If you computed base^exponent, it also shows the nth root of the result, which should return the original base.
- Use scientific notation for large comparisons: When comparing two very large numbers, look at the scientific notation exponents first. A result of 10^15 is a billion times larger than one of 10^6.
- Powers of 10 for quick mental checks: Any result's order of magnitude equals its log₁₀ rounded down. If log₁₀(result) ≈ 6.3, the result is in the millions. This is a quick sanity check.
- Roots for finding side lengths: Square root (n=2) finds the side of a square with a given area. Cube root (n=3) finds the side of a cube with a given volume. Both are just exponentiation with fractional exponents.
Common questions
Frequently asked questions
For related calculations, try the Logarithm Calculator, Percentage Calculator, or Standard Deviation. Browse all Calculator Online calculators for the full catalog.
Methodology
This calculator uses the standard exponent calculator formula. Results match those from established financial, scientific, and health references.
Reviewed by
Calculator Online Editorial Team. All formulas verified against authoritative sources before publication.
Last updated
2026-05-24
Sources & References
- Weisstein, Eric W., Power (MathWorld)
Mathematical reference for exponentiation, notation, and properties.
- NIST Digital Library of Mathematical Functions, Elementary Functions
Authoritative reference for exponential functions, roots, and logarithms.
- MDN Web Docs, Math.pow()
Documentation for the JavaScript function used in this calculator.