✦ Instant · Any Number

Square Root Calculator

Calculate the square root, cube root, or nth root of any number instantly. See if it is a perfect square, get decimal precision up to 10 places, and learn the math behind roots.

💡 Quick Answer: √144 = 12 (perfect square). √2 = 1.41421356... (irrational). √50 = 7.07107... Enter any number below.
√ Square Root
∛ Cube Root
n√ Nth RootCustom

Perfect Squares from 1 to 30

A perfect square is a number that is the square of an integer. Memorizing these speeds up mental math, simplifies fractions, and helps in algebra.

n√n²
111
242
393
4164
5255
6366
7497
8648
9819
1010010
1112111
1214412
1316913
1419614
1522515
1625616
2040020
2562525
3090030

Quick trick to check if a number is a perfect square: perfect squares always end in 0, 1, 4, 5, 6, or 9. They never end in 2, 3, 7, or 8. So 1,764 could be a perfect square (ends in 4) — and indeed √1764 = 42. But 1,763 cannot be (ends in 3). Another pattern: the difference between consecutive perfect squares increases by 2 each time: 4-1=3, 9-4=5, 16-9=7, 25-16=9. This is because n² - (n-1)² = 2n-1.

How to Calculate Square Roots by Hand

The Babylonian method (also called Heron's method) is a 4,000-year-old algorithm that converges remarkably fast. Modern computers use optimized versions of this same approach.

Babylonian Method:
1. Make an initial guess g
2. Improve: g_new = (g + S/g) / 2
3. Repeat until desired precision

Example: √10
Guess g = 3
Step 1: (3 + 10/3) / 2 = (3 + 3.333) / 2 = 3.167
Step 2: (3.167 + 10/3.167) / 2 = 3.1623
Actual: 3.16228
Just 2 iterations for 4-decimal accuracy!

The Babylonian method converges quadratically — each step roughly doubles the number of correct digits. Starting from a rough guess of 3 for √10, after just 5 iterations you have 30+ correct decimal places. This is why it remained the foundation of square root computation for 4,000 years, from ancient Babylon through modern CPUs. The estimation method is simpler for mental math: to find √50, note that 7²=49 and 8²=64, so √50 is between 7 and 8, closer to 7. Try 7.07: 7.07² = 49.98. Close enough for practical purposes.

Square Roots in Real Life

Square roots appear everywhere: distance calculations, physics, statistics, finance, engineering, and computer graphics.

Distance formula (Pythagorean theorem): The distance between two points is √((x2-x1)² + (y2-y1)²). Every GPS navigation, every game engine, and every mapping app uses this formula millions of times per second. A TV's diagonal size: a 16:9 ratio 50-inch TV is approximately 43.6 inches wide and 24.5 inches tall (√(43.6² + 24.5²) = 50).

Standard deviation: SD = √(variance). Every statistical analysis, quality control process, and financial risk assessment involves square roots. Use our Standard Deviation Calculator for full statistical analysis.

Finance: Annualized volatility = daily volatility × √252 (trading days). The Black-Scholes option pricing model uses square roots. Sharpe ratio calculations depend on standard deviation (which uses square roots).

Physics: Escape velocity = √(2GM/r). Period of a pendulum = 2π√(L/g). Wave speed = √(tension/linear density). Terminal velocity of a falling object involves square root of the ratio of weight to drag.

Irrational Numbers: Why Most Square Roots Never End

The square root of any non-perfect-square positive integer is irrational — its decimal expansion never terminates and never repeats.

√2 = 1.41421356237309504880168872420969807856967... This was first proven by the ancient Greeks (attributed to Hippasus, ~500 BC). The proof by contradiction is elegant: assume √2 = a/b in lowest terms. Then 2 = a²/b², so a² = 2b², meaning a is even. Write a = 2k. Then 4k² = 2b², so b² = 2k², meaning b is also even. But we said a/b was in lowest terms — contradiction! Therefore √2 is irrational. Famous irrational square roots: √2 (diagonal of unit square), √3 (height of equilateral triangle with side 2), √5 (related to the golden ratio: φ = (1+√5)/2 = 1.618...). Despite being irrational, these numbers are algebraic (solutions to polynomial equations with integer coefficients), unlike transcendental numbers like π and e.

Cube Roots and Nth Roots Explained

The cube root of x finds what number multiplied by itself three times equals x. The nth root generalizes this to any power.

Cube roots: ∛8 = 2 (because 2×2×2 = 8). ∛27 = 3. ∛64 = 4. ∛125 = 5. Unlike square roots, cube roots of negative numbers are real: ∛(-8) = -2 because (-2)×(-2)×(-2) = -8. This is because an odd number of negative factors produces a negative result.

Nth roots: The 4th root of 81 = 3 (because 3⁴ = 81). The 5th root of 32 = 2 (because 2⁵ = 32). Like square roots, even nth roots of negative numbers are undefined in real numbers (but defined in complex numbers using imaginary unit i).

Fractional exponents: √x = x^(1/2). ∛x = x^(1/3). The nth root of x = x^(1/n). This connection between roots and exponents is fundamental in algebra. For example: x^(2/3) = (∛x)² = ∛(x²). Use our Percentage Calculator and Area Calculator for related math operations.

Square Root Algorithms in Computers

Modern CPUs compute square roots using hardware-level instructions that execute in nanoseconds, but the underlying algorithms are fascinating.

Fast inverse square root (1/√x): The legendary Quake III Arena algorithm (1999) used a bit-level hack to estimate 1/√x in a fraction of the time of standard methods. The "magic number" 0x5F3759DF, combined with one Newton's method iteration, produced results accurate to 1% — fast enough for real-time 3D lighting calculations. The original code comment famously reads "what the f***?" next to the magic constant.

Newton-Raphson method: Modern CPUs implement a hardware version of Newton's method (closely related to the Babylonian method) that converges in 3-4 iterations to full 64-bit floating-point precision. Intel x86 processors have a dedicated FSQRT instruction.

Digit-by-digit method: Similar to long division, this method extracts one digit of the square root at a time. It was taught in schools before calculators became common and is still used in some competitive mathematics. For most practical purposes, this calculator (which uses JavaScript's built-in Math.pow function) provides more than sufficient precision for any real-world application.

Note: This calculator provides results with up to 10 decimal places of precision, which exceeds the needs of virtually all practical applications. For higher precision, specialized mathematical software (Wolfram Alpha, MATLAB) can compute square roots to arbitrary decimal places. Even NASA uses only 15 decimal places of π for interplanetary navigation.

✦ Built with AEO Methodology

This calculator is AI-visible by design

Every tool on SmarterCalculator uses AEO methodology — JSON-LD Schema, Quick Answer formatting, and E-E-A-T optimization.

Get the AEO Authority Bundle™

By Claudia-Elena Linul — AEO Business Strategist

Related Calculators