ΣCALCULATORWizard

√ Square Root Calculator

Calculate square roots, simplify radicals using prime factorization, check perfect squares, compute nth roots, and perform radical operations — all with full step-by-step solutions.

2=square, 3=cube, 4=fourth…
Is this a perfect square? (√n is a whole number)
Result is in simplified a√b form using prime factorization
√8 + √_
📐 Step-by-Step Solution
📋 Details

What is a Square Root?

The square root of a number x is the value that, when multiplied by itself, equals x. Written √x, it answers the question "what number squared gives x?" For example, √16 = 4 because 4 × 4 = 16. Every positive number has two square roots — a positive one (the principal root, what the √ symbol means by convention) and a negative one. √16 = 4, but −4 is also a root since (−4)² = 16.

Square roots are a special case of exponentiation: √x = x½. This connection makes many algebraic manipulations cleaner. The inverse of squaring is taking a square root; the inverse of cubing is taking a cube root; the inverse of raising to the nth power is taking the nth root. These are all unified under the notation x1/n.

The Five Calculator Modes

Square Root (√x)

Computes the principal square root of any non-negative number to your chosen precision. Also shows the simplified radical form (a√b) and confirms whether the input is a perfect square. Negative inputs are rejected — square roots of negative numbers are imaginary (involving i = √−1) and outside the scope of real-number calculation.

Nth Root (ⁿ√x)

Computes any root: cube root (n=3), fourth root (n=4), or any integer n. For odd roots, negative inputs are allowed — ∛−8 = −2 because (−2)³ = −8. For even roots, negative inputs have no real solution. The calculator uses tolerance-based perfect root detection (checking whether rounding the result back to an integer and raising to the nth power recovers the original) to avoid floating-point false negatives.

Perfect Square Checker

A perfect square is a positive integer whose square root is also an integer: 1, 4, 9, 16, 25, 36, 49, 64, 81, 100... The checker also shows the two nearest perfect squares (floor and ceiling) so you can see how far the input is from being perfect, and shows the prime factorization — a perfect square will always have every prime factor appearing an even number of times in its factorization.

Simplify Radical (a√b form)

Simplifying √n means writing it as a√b where b has no perfect square factors — called simplest radical form. The algorithm uses prime factorization: factor n completely, then extract pairs of identical prime factors (each pair comes out of the radical as one factor), while unpaired primes remain inside. √72: factor 72 = 2³ × 3². Pairs: one pair of 2s, one pair of 3s. Outside: 2 × 3 = 6. Inside: one unpaired 2. Result: 6√2.

√n → factor n = 2a × 3b × 5c… → outside = 2⌊a/2⌋ × 3⌊b/2⌋… → inside = remaining odd-exponent primes

Radical Operations (+/−/×/÷)

Multiplication: √a × √b = √(a×b). After computing the product under the radical, the result is fully simplified. √8 × √18 = √144 = 12.

Division: √a ÷ √b = √(a/b) when a/b is an integer. Otherwise the result is computed as a decimal with the exact rational under the radical shown. √50 ÷ √2 = √25 = 5.

Addition/Subtraction: Both radicals are first simplified to a√b form. If they share the same radicand (like radicals), the coefficients are combined: 2√3 + 5√3 = 7√3. Unlike radicals (√2 + √3) cannot be simplified — only decimal approximations combine.

Common Perfect Squares Reference

n√(n²)n√(n²)
1111112111
2421214412
3931316913
41641419614
52551522515
63661625616
74971728917
86481832418
98191936119
10100102040020

Common Simplified Radicals

OriginalSimplifiedDecimalKey factor
√2√21.41421…Prime — already simplest
√3√31.73205…Prime — already simplest
√82√22.82842…8 = 4 × 2
√122√33.46410…12 = 4 × 3
√183√24.24264…18 = 9 × 2
√202√54.47213…20 = 4 × 5
√273√35.19615…27 = 9 × 3
√324√25.65685…32 = 16 × 2
√453√56.70820…45 = 9 × 5
√484√36.92820…48 = 16 × 3
√505√27.07106…50 = 25 × 2
√726√28.48528…72 = 36 × 2
√755√38.66025…75 = 25 × 3
√987√29.89949…98 = 49 × 2

The Babylonian / Heron's Method

Long before calculators, mathematicians used an iterative algorithm to compute square roots by hand. Starting with any initial guess g, repeatedly replace g with the average of g and n/g. This converges quadratically — the number of correct digits roughly doubles with each iteration. To find √50: guess g = 7. Iteration 1: (7 + 50/7)/2 = (7 + 7.143)/2 = 7.071. Iteration 2: (7.071 + 50/7.071)/2 = 7.07106… — already 6 significant figures after just two steps.

📐 Heron's algorithm for √50

Guess g₀ = 7
g₁ = (7 + 50/7) / 2 = 7.07143…
g₂ = (7.07143 + 50/7.07143) / 2 = 7.07107…
g₃ = 7.07106781… ← correct to 9 places

Square Roots in Geometry and Physics

Square roots appear constantly in distance, area, and physics problems. The Pythagorean theorem uses √(a² + b²) to compute the hypotenuse. The distance formula in 2D space is √((x&sub2;−x&sub1;)² + (y&sub2;−y&sub1;)²). In physics, the RMS speed of gas molecules is proportional to √T (square root of absolute temperature). The period of a pendulum is proportional to √L (square root of length). Standard deviation is the square root of variance. Understanding how to compute and simplify square roots precisely matters in all of these contexts.

Frequently Asked Questions

Why can't you take the square root of a negative number?
In real number math, no real number squared gives a negative result — squaring always produces zero or a positive. The square root of −1 is defined as i (the imaginary unit) in complex number theory. For most school and engineering contexts, √(negative) is simply undefined or "no real solution." Odd roots of negatives are fine in reals: ∛−8 = −2.
How do I know when a radical is fully simplified?
A radical √n is in simplest form when n has no perfect square factors other than 1 — equivalently, when every prime factor of n appears exactly once in the factorization (no repeated primes). Check: if you can find any perfect square (4, 9, 16, 25…) that divides n, the radical can be simplified further. √12 is not simplified because 4 divides 12; √15 is fully simplified because 15 = 3 × 5 (no repeated prime factors).
What's the last-digit trick for identifying non-perfect-squares instantly?
Perfect squares can only end in 0, 1, 4, 5, 6, or 9 in base 10. If a number ends in 2, 3, 7, or 8 — it is definitively not a perfect square. For example: 87 ends in 7 → not a perfect square. 196 ends in 6 → could be (and is: 14²). This eliminates 40% of candidates instantly without any computation.
How do you rationalize a denominator with a square root?
Multiply numerator and denominator by the radical in the denominator. 1/√2 × √2/√2 = √2/2. For a sum like 1/(1+√3), multiply by the conjugate (1−√3)/(1−√3): result is (1−√3)/(1−3) = (1−√3)/(−2). Rationalization is required in many algebra courses and useful for exact arithmetic.
√2 + √3 — can this be simplified?
No. Unlike radicals (different numbers under the root sign) cannot be combined into a single simpler term. √2 + √3 ≈ 1.414 + 1.732 = 3.146, but there is no simpler exact form. Only like radicals combine: 3√5 + 7√5 = 10√5. Always simplify each radical first — you might discover they become like radicals after simplification (e.g. √8 + √2 = 2√2 + √2 = 3√2).
What is √0?
√0 = 0, because 0 × 0 = 0. Zero is technically a perfect square (0 = 0²). It's the only non-positive perfect square.
Is √2 rational or irrational?
Irrational — it cannot be written as a fraction of two integers. The proof (by contradiction) is ancient: assume √2 = p/q in lowest terms. Then 2 = p²/q², so p² = 2q². This means p² is even, so p is even, write p = 2k. Then 4k² = 2q², so q² = 2k², meaning q is also even. But that contradicts p/q being in lowest terms. Therefore √2 is irrational. The same argument applies to √n for any non-perfect-square n.
How do negative exponents relate to roots?
x−1/2 = 1/√x. x−1/3 = 1/∛x. The negative means reciprocal; the fractional part means root. So 9−1/2 = 1/√9 = 1/3 = 0.333... This relationship is used constantly in calculus when differentiating expressions involving roots: d/dx[√x] = (1/2)x−1/2.