Square Root Calculator

Calculate the square root of any positive number instantly. Get both principal and negative roots with step-by-step solutions and estimation methods.

Principal Root (+)
Negative Root (-)
Properties
Enter a number and click calculate

Quick Examples

Square Root Calculator

A square root calculator instantly finds the number that, when multiplied by itself, equals your input. Whether checking homework, solving geometry problems, calculating standard deviation, or verifying engineering formulas, this tool delivers accurate results with complete mathematical context.

Students learning algebra, engineers calculating tolerances, physicists analyzing motion, statisticians computing variance, and carpenters using the Pythagorean theorem all depend on square root calculations. Understanding square roots connects arithmetic, algebra, geometry, and advanced mathematics.

What is an Online Square Root Calculator?

An online square root calculator is a web-based tool that computes the square root of any non-negative number instantly. Unlike manual methods that require estimation and iteration, the calculator provides precise decimal approximations for irrational roots and exact values for perfect squares.

Modern calculators use sophisticated algorithms like Newton-Raphson iteration, binary search, or lookup tables to rapidly converge on accurate values. For example, finding sqrt(2) requires infinite decimal places, but calculators approximate to 10+ decimal places instantly.

How to Find Square Root on Calculator

  1. Enter the number: Type or click the number whose square root you need.
  2. Press the square root button: Usually marked as sqrt(x), x, or with the radical symbol.
  3. Read the result: The display shows the principal (positive) square root.
  4. For both roots: Remember that negative of the result is also a valid square root.

Square Root Definition

The square root of a number x is a value y such that y multiplied by itself equals x. Formally:

If y = sqrt(x), then y^2 = x

For example, sqrt(25) = 5 because 5 x 5 = 25. Similarly, sqrt(100) = 10 because 10 x 10 = 100.

Why Are Square Roots Called This Way?

The term "square root" comes from geometry. If you have a square with area A, the "root" (side length) of that square is sqrt(A). The side is the root from which the square grows — multiply the root by itself and you get the square area.

This geometric interpretation explains both the name and the concept. The "square" refers to the geometric shape, and the "root" refers to the originating side length. Ancient Babylonians and Greeks used this geometric understanding long before symbolic algebra.

Square Root Symbol

The radical symbol sqrt(x), also called the square root sign, represents the principal (non-negative) square root of x. The symbol originated from a stylized lowercase 'r' for "radix" (Latin for "root").

Symbols and Notation

SymbolMeaningExample
sqrt(x)Principal square root of xsqrt(9) = 3
-sqrt(x)Negative square root of x-sqrt(9) = -3
+/-sqrt(x)Both square roots of x+/-sqrt(9) = +/-3
x^(1/2)Exponential notation for sqrt9^(1/2) = 3
x^(0.5)Decimal exponent equivalent9^0.5 = 3

Principal vs. Both Roots

By convention, sqrt(x) refers only to the principal square root — the non-negative result. However, every positive number actually has two square roots. For 25, both 5 and -5 are square roots because 5^2 = 25 and (-5)^2 = 25.

The Common Way or Formula for Calculating Square Root

Several methods exist for calculating square roots. Here are the main approaches:

Method 1: Recognition of Perfect Squares

For perfect squares, the root is the integer whose square equals the number:

sqrt(n^2) = n for positive integers n

Method 2: Newton-Raphson Iteration

This iterative formula approaches the square root:

x_new = (x_old + n/x_old) / 2

Start with an initial guess and iterate until convergence. For sqrt(10): guess x=3, then x_new = (3 + 10/3)/2 = (3 + 3.33)/2 = 3.166. Repeat for more accuracy.

Method 3: Long Division Algorithm

The traditional manual method pairs digits from right to left, finding each digit of the root progressively. Works for any number but requires careful bookkeeping.

Method 4: Prime Factorization

For perfect squares, factor the number and pair primes:

sqrt(144) = sqrt(2x2x2x2x3x3) = sqrt((2x2)^2 x (3)^2) = 2x2x3 = 12

How to Find the Square Root

For Perfect Squares

Perfect squares are products of an integer multiplied by itself. Memorize the common ones:

NumberSquareRootNumberSquareRoot
1111112111
2421214412
3931316913
41641419614
52551522515
63661625616
74971728917
86481832418
98191936119
10100102040020

For Non-Perfect Squares

Use estimation combined with iterative refinement:

  1. Bracket: Find the two consecutive perfect squares that bound your number.
  2. Estimate: Your root is between the two roots of those perfect squares.
  3. Refine: Use averaging or interpolation to improve your estimate.
  4. Verify: Square your estimate and compare to the original number.

Estimating a Square Root

Estimation is a valuable skill for mental math and checking calculator results. Here's the complete estimation process:

Step-by-Step Estimation Method

Example: Estimate sqrt(50)

  1. Find bounding perfect squares: 7^2 = 49, 8^2 = 64. So sqrt(50) is between 7 and 8.
  2. Interpolate: 50 is very close to 49, so the root is just above 7.
  3. Linear approximation: (50-49)/(64-49) = 1/15. So sqrt(50) is roughly 7 + 0.07 = 7.07.
  4. Verify: 7.07^2 = 49.98, very close to 50. Actual value: 7.071...

Example: Estimate sqrt(200)

  1. 14^2 = 196, 15^2 = 225. So sqrt(200) is between 14 and 15.
  2. 200 is very close to 196, so root is just above 14.
  3. (200-196)/(225-196) = 4/29.
  4. Estimate: 14 + 4/29 = 14.14. Actual: 14.142...

Quick Mental Approximation

For sqrt(n) near a perfect square k^2:

sqrt(n) is approximately k + (n - k^2)/(2k)

For sqrt(17) near 4^2 = 16: sqrt(17) is approximately 4 + (17-16)/(2x4) = 4 + 1/8 = 4.125. Actual: 4.123...

Square Roots: Odd and Even Numbers

The parity (oddness or evenness) of numbers relates to their squares and square roots in specific ways:

Squares of Odd Numbers

Odd numbers always produce odd squares:

  • 3^2 = 9 (odd)
  • 5^2 = 25 (odd)
  • 7^2 = 49 (odd)
  • Any odd number n = 2k+1 has square (2k+1)^2 = 4k^2 + 4k + 1, which is odd

Squares of Even Numbers

Even numbers always produce even squares:

  • 2^2 = 4 (even)
  • 4^2 = 16 (even)
  • 6^2 = 36 (even)
  • Any even number n = 2k has square (2k)^2 = 4k^2, which is even

Implications for Square Roots

  • Odd perfect squares: Have odd square roots (9 → 3, 25 → 5, 49 → 7)
  • Even perfect squares: Have even square roots (4 → 2, 16 → 4, 36 → 6)
  • Testing for perfect squares: If an odd number has a whole square root, that root must be odd

Perfect Square Calculator

A perfect square is a number that equals an integer multiplied by itself. Perfect squares include 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, and so on.

How to Check if a Number is a Perfect Square

  1. Calculate the square root: Find sqrt(n) to several decimal places.
  2. Test for integer: If sqrt(n) is a whole number, n is a perfect square.
  3. Verify: Square the root to confirm it returns n.

Properties of Perfect Squares

  • Perfect squares never end in 2, 3, 7, or 8
  • Perfect squares end in 0, 1, 4, 5, 6, or 9 in base 10
  • The digital root of a perfect square (except multiples of 3) is 1, 4, 7, or 9
  • Perfect squares have an odd number of factors
  • The square of n has n^2 as its value

Example Square Roots

NumberSquare RootTypeNotes
11PerfectIdentity: 1^2 = 1
42PerfectFirst even perfect square
93Perfect9 = 3^2
21.4142135...Irrationalsqrt(2) is irrational, non-repeating decimal
31.7320508...Irrationalsqrt(3) is irrational
52.2360679...Irrationalsqrt(5) is irrational
103.1622776...Irrationalsqrt(10) = sqrt(2) x sqrt(5)
0.250.5Rationalsqrt(1/4) = 1/2
2.251.5Rationalsqrt(9/4) = 3/2
19614Perfect14^2 = 196

How to Simplify Square Roots

Simplifying a square root means expressing it in the most reduced radical form, with no perfect square factors inside the radical.

Simplification Rules

  1. Factor out perfect squares: sqrt(12) = sqrt(4 x 3) = sqrt(4) x sqrt(3) = 2sqrt(3)
  2. Continue factoring: sqrt(72) = sqrt(36 x 2) = 6sqrt(2)
  3. Find largest square factor: sqrt(50) = sqrt(25 x 2) = 5sqrt(2)

Step-by-Step Simplification Examples

Simplify sqrt(72):

  • Factor: 72 = 36 x 2 = 36 x 2
  • 36 is a perfect square: 6^2
  • sqrt(72) = sqrt(36 x 2) = sqrt(36) x sqrt(2) = 6sqrt(2)

Simplify sqrt(200):

  • Factor: 200 = 100 x 2
  • 100 is 10^2
  • sqrt(200) = sqrt(100 x 2) = 10sqrt(2)

Simplify sqrt(48):

  • Factor: 48 = 16 x 3
  • 16 is 4^2
  • sqrt(48) = sqrt(16 x 3) = 4sqrt(3)

Adding, Subtracting, Multiplying, and Dividing Square Roots

Adding and Subtracting Square Roots

Only like radicals (same radicand) can be combined directly:

  • 2sqrt(3) + 5sqrt(3) = 7sqrt(3) (same radicand, add coefficients)
  • sqrt(2) + sqrt(2) = 2sqrt(2)
  • sqrt(3) + sqrt(5) cannot be simplified further
  • sqrt(12) + sqrt(27) = 2sqrt(3) + 3sqrt(3) = 5sqrt(3) (simplify first!)

Multiplying Square Roots

Multiply radicands together, simplify the result:

sqrt(a) x sqrt(b) = sqrt(a x b)
  • sqrt(3) x sqrt(5) = sqrt(15)
  • sqrt(2) x sqrt(8) = sqrt(16) = 4
  • 2sqrt(3) x 3sqrt(3) = 6 x 3 = 18 (multiply coefficients: 2x3=6, multiply roots: sqrt(3)x sqrt(3)=3)

Dividing Square Roots

Divide radicands, then simplify:

sqrt(a) / sqrt(b) = sqrt(a/b)
  • sqrt(18) / sqrt(2) = sqrt(9) = 3
  • sqrt(45) / sqrt(5) = sqrt(9) = 3

Rationalizing the Denominator

When a square root appears in a denominator, multiply numerator and denominator by that root:

  • 1/sqrt(2) = sqrt(2)/2
  • 3/sqrt(5) = 3sqrt(5)/5
  • 1/(sqrt(3) + 1) = (sqrt(3) - 1)/(3 - 1) = (sqrt(3) - 1)/2 (multiply by conjugate)

Square Roots of Powers and Fractions

Square Root of Powers

The square root of x^n:

sqrt(x^n) = x^(n/2) = |x^(n/2)| for even n
  • sqrt(x^2) = |x| (always non-negative)
  • sqrt(x^4) = x^2
  • sqrt(x^6) = |x^3|

Square Root of Fractions

The square root of a fraction equals the fraction of square roots:

sqrt(a/b) = sqrt(a)/sqrt(b)
  • sqrt(4/9) = sqrt(4)/sqrt(9) = 2/3
  • sqrt(1/4) = 1/2
  • sqrt(9/16) = 3/4

Square Root of Decimals

Convert to fraction or use calculator:

  • sqrt(0.25) = sqrt(1/4) = 1/2 = 0.5
  • sqrt(0.04) = sqrt(4/100) = 2/10 = 0.2
  • sqrt(2.25) = sqrt(9/4) = 3/2 = 1.5

Square Root Function and Graph

The square root function f(x) = sqrt(x) is defined for x >= 0 and outputs non-negative values.

Key Properties

PropertyValueDescription
Domain[0, infinity)All non-negative real numbers
Range[0, infinity)All non-negative real numbers
x-intercept(0, 0)Passes through origin
y-intercept(0, 0)Same as x-intercept
IncreasingYesAlways increasing
ConcavityConcave downSecond derivative negative
One-to-oneYesPasses horizontal line test

Graph Characteristics

The graph of y = sqrt(x):

  • Starts at origin (0, 0)
  • Rises quickly at first, then more slowly
  • Is the inverse of y = x^2 (restricted to x >= 0)
  • Is half of a sideways parabola

Derivative of the Square Root

The derivative of sqrt(x) is found using the power rule:

d/dx[sqrt(x)] = d/dx[x^(1/2)] = (1/2)x^(-1/2) = 1/(2sqrt(x))

Derivatives Involving Square Roots

  • d/dx[sqrt(x)] = 1/(2sqrt(x))
  • d/dx[sqrt(u)] = 1/(2sqrt(u)) x du/dx (chain rule)
  • d/dx[xsqrt(x)] = sqrt(x) + x/(2sqrt(x))
  • d/dx[sqrt(x^2 + 1)] = x/sqrt(x^2 + 1)

Square Root of a Negative Number

Within the real number system, negative numbers have no square root. No real number multiplied by itself yields a negative product — positive times positive is positive, and negative times negative is also positive.

Complex Number Solution

In the complex number system, we define the imaginary unit i = sqrt(-1). This allows us to find square roots of negative numbers:

sqrt(-n) = sqrt(n) x i = isqrt(n)

Examples

  • sqrt(-1) = i
  • sqrt(-4) = 2i
  • sqrt(-9) = 3i
  • sqrt(-2) = sqrt(2)i = 1.414i

Properties of Complex Square Roots

  • Every negative number has two complex square roots: +/-isqrt(|x|)
  • (-n)^(1/2) = +/-isqrt(n)
  • These roots are purely imaginary (no real part)

Frequently Asked Questions

How is the square root calculated?
The square root of a number x is a value y where y squared equals x: y^2 = x. For perfect squares like 144, the root is 12 because 12 x 12 = 144. For non-perfect squares, calculators use iterative approximation methods like Newton-Raphson: start with a guess, then iteratively refine using x_new = (x_old + n/x_old)/2 until convergence.
How can I find the square root of a number?
For perfect squares, memorize the common squares (1, 4, 9, 16, 25, 36, 49, 64, 81, 100, ...) and their roots. For non-perfect squares: (1) estimate between consecutive perfect squares, (2) use Newton's method for approximation, (3) apply the long division algorithm, or (4) use the sqrt button on a calculator.
Is there a square root for every number?
Every non-negative real number has exactly one principal square root and two square roots total (positive and negative). Zero has one square root (zero). Negative numbers have no real square roots but have two complex square roots involving the imaginary unit i. So every number has square roots — real or complex.
Can a number have more than one square root?
Yes, every positive number has exactly two square roots: one positive and one negative. For 25, both 5 and -5 are square roots because 5^2 = 25 and (-5)^2 = 25. The radical symbol sqrt(x) conventionally refers only to the principal (positive) square root. Zero has one square root (zero itself).
How do you find the square root without a calculator?
Use estimation with bracketing: find the two perfect squares that bound your number. For sqrt(20): 4^2 = 16 and 5^2 = 25, so sqrt(20) is between 4 and 5. Since 20 is closer to 16, estimate around 4.4. Verify: 4.4^2 = 19.36, close! Refine using Newton's method: x_new = (4.4 + 20/4.4)/2 = 4.47. Actual: 4.472...
How can I estimate square roots?
Find the closest perfect squares below and above your number. For sqrt(50): 7^2 = 49 and 8^2 = 64. Since 50 is just above 49, the root is just above 7. Using linear approximation: sqrt(50) is approximately 7 + (50-49)/(2x7) = 7.07. This gives excellent estimates without a calculator.
Is the square root of 2 a rational number?
No, sqrt(2) is irrational. It cannot be written as a fraction a/b. The ancient Greeks proved this by contradiction: if sqrt(2) = a/b in lowest terms, then 2 = a^2/b^2, meaning a^2 = 2b^2, making a^2 even, so a is even. Write a = 2k, then 4k^2 = 2b^2, so b^2 = 2k^2, making b also even — contradiction since a/b was simplified. sqrt(2) = 1.41421356237... continues infinitely without repeating.
How can I get rid of a square root?
To eliminate a square root from an expression: (1) Square both sides of an equation — if sqrt(x) = 3, then x = 9. (2) Rationalize denominators by multiplying numerator and denominator by the root: 1/sqrt(2) = sqrt(2)/2. (3) For multiple roots, multiply by the conjugate: 1/(sqrt(3)+1) = (sqrt(3)-1)/(3-1). Always check for extraneous solutions when squaring equations.
Are square roots rational?
Square roots of perfect squares are rational: sqrt(4) = 2, sqrt(9) = 3, sqrt(1/4) = 1/2. However, square roots of numbers that aren't perfect squares are irrational: sqrt(2), sqrt(3), sqrt(5), sqrt(6), sqrt(7), sqrt(8), sqrt(10) — all irrational. Only when the radicand is a perfect square (or fraction of perfect squares) is the result rational.
Is the square root of 5 a rational number?
No, sqrt(5) is irrational. Using the same proof as for sqrt(2): if sqrt(5) = a/b in lowest terms, then 5 = a^2/b^2, so a^2 = 5b^2. For a^2 to be a multiple of 5, a must be a multiple of 5. Write a = 5k, then 25k^2 = 5b^2, so b^2 = 5k^2, making b also divisible by 5 — contradicting that a/b was reduced. sqrt(5) = 2.23606797... continues infinitely without repeating pattern.
Is the square root of 7 a rational number?
No, sqrt(7) is irrational. The general theorem states: for any integer n that is not a perfect square, sqrt(n) is irrational. Since 7 is not a perfect square (no integer squared gives 7), sqrt(7) cannot be rational. Its decimal expansion is 2.64575131... continuing infinitely without repeating. The proof follows the same contradiction argument used for sqrt(2).
What is the derivative of the square root of x?
The derivative of sqrt(x) is 1/(2sqrt(x)). Using the power rule: sqrt(x) = x^(1/2), so d/dx[x^(1/2)] = (1/2)x^(-1/2) = 1/(2sqrt(x)). This formula is valid for x > 0. At x = 0, the derivative is undefined (the function has a vertical tangent at the origin).
How do you find the square root of a decimal?
For terminating decimals, either convert to fraction if convenient (sqrt(0.25) = sqrt(1/4) = 1/2 = 0.5), or use a calculator directly. For estimation: sqrt(0.5) is between sqrt(0.49) = 0.7 and sqrt(0.64) = 0.8, closer to 0.7. More precisely, sqrt(0.5) = 0.707... For non-perfect square decimals, calculators provide the most efficient solution.

Historical Context

Ancient Babylon (1800-1600 BCE): Babylonian clay tablets show accurate approximations of sqrt(2) to three sexagesimal places. They used iterative methods remarkably similar to Newton-Raphson.

Ancient Egypt: The Rhind Papyrus (1650 BCE) contains problems involving square roots. Egyptians used fractions and approximations for construction.

Ancient Greece: Pythagoreans (6th century BCE) discovered that sqrt(2) is irrational — a shocking revelation that some numbers cannot be expressed as ratios. This discovery fundamentally changed Greek mathematics.

Indian mathematics: Aryabhata (5th century CE) gave algorithms for square root extraction. The decimal place-value system made calculations more efficient.

Medieval Islamic mathematics: Al-Khwarizmi (9th century) and others refined methods. The radical symbol evolved from Arabic notation.

Renaissance Europe: The radical symbol in its modern form appeared in print (1525). Christoff Rudolff introduced the sqrt symbol we use today.

Modern era: Electronic calculators (1970s) made square root computation instant. Computer algorithms achieve millions of digits of precision for numbers like sqrt(2).

Properties Summary

PropertyFormulaExample
Product Propertysqrt(ab) = sqrt(a) x sqrt(b)sqrt(12) = sqrt(4)x sqrt(3) = 2sqrt(3)
Quotient Propertysqrt(a/b) = sqrt(a)/sqrt(b)sqrt(9/4) = 3/2
Square of Root(sqrt(x))^2 = x(sqrt(7))^2 = 7
Root of Squaresqrt(x^2) = |x|sqrt((-3)^2) = sqrt(9) = 3
Exponential Formsqrt(x) = x^(1/2)sqrt(25) = 25^(1/2) = 5
nth Root Relationsqrt(x) = x^(1/2)sqrt(8) = 8^(1/2)

Real-Life Applications

  • Geometry: Distance formula, diagonal of squares and rectangles, Pythagorean theorem, circle radius from area.
  • Physics: Velocity from kinetic energy, wave speed, pendulum period, free fall calculations, uncertainty principle.
  • Statistics: Standard deviation, margin of error, RMS (root mean square) values, correlation coefficients.
  • Engineering: Signal processing, electrical impedance, structural calculations, control systems.
  • Finance: Volatility (standard deviation of returns), option pricing (Black-Scholes), risk metrics.
  • Navigation: GPS coordinate geometry, great-circle distances, navigation calculations.

Related Calculators

  • Cube Root Calculator: Find the cube root of any number.
  • Nth Root Calculator: Calculate any root (4th, 5th, etc.).
  • Square Calculator: Find the square of any number.
  • Exponent Calculator: Calculate any power.
  • Pythagorean Theorem: Right triangle side calculations.
  • Standard Deviation: Statistical calculations.

Conclusion

Square roots are fundamental mathematical operations that reverse the squaring process. From geometry (finding side lengths from areas) to calculus (derivatives and integrals) to statistics (standard deviation), square roots appear throughout mathematics and its applications.

Understanding that sqrt(x) represents both an exact value (the radical expression) and an approximate numerical value (for non-perfect squares) provides flexibility in mathematical work. The distinction between rational roots of perfect squares and irrational roots of non-perfect squares reveals deep number-theoretic structure.

Use the square root calculator above for instant computation with both positive and negative roots displayed. Whether checking homework, solving applied problems, or exploring mathematical relationships, this tool delivers accurate results with complete mathematical context.