Exponent + Root Calculator (Power, n-th Root, Scientific Notation)
Compute x^n (power), n-th root of x, and scientific notation conversion. Handles negative bases (integer exponents only) and odd-index roots of negatives.
Result
1,024
Scientific notation: 1.024 Γ 10^3
Formula
2^10 = 1024Related calculators
Age
Calculate exact age in years, months, days, hours. See your age on other planets, countdown to next birthday, and compare two people.
Percentage
Calculate percentages three ways: what is X% of Y, X is what percent of Y, and percentage change.
Rule of Three Calculator: Direct & Inverse
Solve direct and inverse proportions step by step. Worked examples for school and daily life: cooking ratios, work-time scaling, and currency conversion.
Fraction Calculator (Add, Subtract, Multiply, Divide, Simplify)
Add, subtract, multiply, divide, and simplify fractions. Returns lowest-terms result + decimal + mixed number representation.
Exponents and roots are the gateway from arithmetic to algebra and on to scientific notation, exponential growth, and roots of equations. The calculator handles three modes: power (x^n), n-th root (nβx), and scientific-notation conversion (mantissa Γ 10^exp). Edge cases are surfaced explicitly: negative bases with non-integer exponents return null (the math leaves real numbers), even-index roots of negatives return null (also complex), odd-index roots of negatives are real and computed correctly.
Most-used cases: compound growth (1.07^30 = 7.61, your money 7.6Γ in 30 years at 7%), engineering (square root of 2 β 1.414), physics scientific notation (Avogadro 6.022 Γ 10^23), and homework problems with fractional exponents (4^0.5 = 2, equivalent to β4).
Power, root, and scientific notation
Power x^n: repeated multiplication when n is positive integer (2^3 = 2Γ2Γ2 = 8). For negative integers, x^-n = 1/x^n. For fractional, x^(1/2) = βx. Floating-point precision limits the calc to ~10 significant digits.
n-th root nβx: the inverse of power; nβx = x^(1/n). Even-index roots require non-negative radicand (real domain); odd-index roots accept negatives (Β³β(-8) = -2). Square root is the most common (n=2).
Scientific notation: any number expressed as m Γ 10^e where 1 β€ |m| < 10. Avogadro: 6.022 Γ 10^23. Plank: 6.626 Γ 10^-34. Useful for very large and very small numbers where decimal places become unreadable.
Edge cases the calc handles: negative base + non-integer exponent β null (complex result, not a real number). Even root of negative β null. Zero exponent β 1. Zero radicand β 0. Negative exponents β reciprocal.
Practical examples
Compound growth: $1 at 7%/yr for 30 years
Setup: 1 Γ (1.07)^30 β how much does $1 grow at 7% over 30 years?
1.07^30 = **7.6123** (your money grows ~7.6Γ)
Takeaway: Compound interest is just exponential growth. Time is the dominant factor.
Square root of 2 (irrational)
Setup: β2 = ?
2^(1/2) = **1.4142135...** (irrational, never terminates)
Takeaway: Most square roots of non-perfect squares are irrational. Calc shows ~10 digits.
Cube root of negative (real)
Setup: Β³β(-27) = ?
(-27)^(1/3) = **-3** (odd index allows negative radicand)
Takeaway: Odd roots of negatives are real and negative; even roots of negatives are complex.
Scientific notation: speed of light
Setup: 299,792,458 m/s in scientific notation
**2.99792 Γ 10^8 m/s** (mantissa Γ 10^exponent)
Takeaway: Scientific notation makes huge or tiny numbers readable.
Frequently asked questions
Why does (-4)^0.5 return null?βΎ
Square root (or any even-index root) of a negative number gives an imaginary result, not a real number. (-4)^0.5 = 2i (where i is the imaginary unit). The calc operates in the real-number domain only and returns null to signal "no real solution".
How is x^0 = 1 derived?βΎ
By the rule x^a / x^a = x^(a-a) = x^0 = 1 (since any non-zero number divided by itself is 1). 0^0 is technically undefined but commonly defined as 1 by convention in algebra.
What is MPGe (referenced in EV calcs)?βΎ
MPGe = miles per gallon equivalent. EPA defines 33.7 kWh as the energy equivalent of one US gallon of gasoline. Tesla Model 3 β 30 kWh/100mi β 33.7/0.30 β 112 MPGe. Different topic from this calculator but a common scientific-notation-adjacent question.
Why does 2^10 = 1024 matter?βΎ
2^10 = 1024 is the basis of binary computing: 1 KB = 1024 bytes (technically; the SI definition is 1000). Memorising 2^0 through 2^16 helps in software engineering, networking, and bit-manipulation problems.
How precise is the calculator?βΎ
Roughly 10 significant digits for most inputs (JavaScript IEEE-754 floating-point limit). For larger exponents the result switches to scientific notation automatically. Decimal.js handles integer exponents with full precision; fractional exponents fall back to floating-point.
Sources & references
Cross-check every number in this calculator against the primary sources below.

