√ Root Calculator

√144
12

📋 Perfect Squares (1–30)

Click any card to calculate its square root.

🎯 Perfect Cubes (1–20)

Click any card to calculate its cube root.

💡 Square Root Facts & History

🏛️
Ancient Origins
Square roots were known to the Babylonians around 1800 BCE. The Yale Babylonian Collection contains a clay tablet (YBC 7289) showing the square root of 2 calculated to an extraordinary 6 decimal places — a remarkable feat for the era!
🔢
√2 — The First Irrational Number
The Pythagoreans discovered that √2 cannot be expressed as a fraction. This caused a crisis in ancient Greek mathematics — they believed all numbers were rational. Legend says Hippasus, who proved this, was thrown overboard at sea by fellow Pythagoreans!
♾️
√2 Never Ends
√2 = 1.41421356237... and the digits never repeat or end — it's irrational. It has been calculated to over 10 trillion decimal places. Despite this, just 39 digits of √2 is enough to compute the circumference of the observable universe to an accuracy within a hydrogen atom!
🌀
The Golden Ratio Connection
The golden ratio φ = (1 + √5) / 2 ≈ 1.6180... involves a square root. It appears everywhere in nature — sunflower seeds, nautilus shells, galaxy spirals — and was used in the Parthenon and the Great Pyramid's proportions.
📐
Pythagorean Theorem
The most famous use of square roots: c = √(a² + b²). If a right triangle has legs 3 and 4, the hypotenuse is √(9+16) = √25 = 5. The 3-4-5 triangle was used by Egyptian rope-stretchers to make perfect right angles for pyramid construction!
💻
Fast Inverse Square Root
The game Quake III (1999) contained a legendary hack: the "Fast Inverse Square Root" — a 4-line code that calculated 1/√x using a mysterious magic number (0x5f3759df). It was 4× faster than the standard method and transformed 3D gaming. The code is still studied today!
🌍
Square Root in Nature
The standard deviation in statistics uses square roots. The distance formula uses square roots. Even Einstein's relativity (Lorentz factor γ = 1/√(1-v²/c²)) uses square roots. They're fundamental to describing how the physical universe works.
🔬
Negative Square Roots & Imaginary Numbers
The square root of a negative number is called imaginary. √(-1) = i (imaginary unit). Complex numbers (a + bi) use this concept and are essential in electrical engineering, quantum mechanics, and signal processing. They're not imaginary in the real-world sense!

📐 Root Formulas & Methods

Basic Definitions

Square Root: √x = x^(1/2) → if √x = y, then y² = x
Cube Root: ∛x = x^(1/3) → if ∛x = y, then y³ = x
Nth Root: ⁿ√x = x^(1/n) → if ⁿ√x = y, then yⁿ = x

Properties of Square Roots

√(a × b) = √a × √b
√(a / b) = √a / √b
√(a²) = |a| (absolute value)
(√a)² = a (for a ≥ 0)
√a + √b ≠ √(a+b) ← Common mistake!

Simplifying Square Roots

Find the largest perfect square factor and pull it out.

√72 = √(36 × 2) = √36 × √2 = 6√2
√48 = √(16 × 3) = √16 × √3 = 4√3
√200 = √(100 × 2) = 10√2

Babylonian Method (Newton's Method)

Ancient iterative algorithm to calculate √N:

Start: guess g = N/2
Repeat: g = (g + N/g) / 2
Until g² ≈ N

Example: √2, start g=1
g₁ = (1 + 2/1) / 2 = 1.5
g₂ = (1.5 + 2/1.5) / 2 = 1.4167
g₃ = (1.4167 + 2/1.4167) / 2 = 1.41422...
Converges very fast!

Perfect Square Check

A number n is a perfect square if:
√n is an integer (no decimal part)
OR: n = k² for some integer k

Perfect squares: 1, 4, 9, 16, 25, 36, 49, 64, 81, 100...

Distance Formula (Uses √)

Distance = √((x₂-x₁)² + (y₂-y₁)²)

Example: Distance from (0,0) to (3,4):
= √((3-0)² + (4-0)²)
= √(9 + 16) = √25 = 5

❓ Frequently Asked Questions

🤖
AI Insights — Coming Soon!
AI-powered step-by-step root simplification, factorization explanations, and personalized math help.
Coming Soon — Stay Tuned!