Sqrt
Syntax:¶
SQRT(number)
- number: The number for which you want to calculate the square root. This must be a non-negative numeric value.
Description:¶
The SQRT function returns the square root of a given number. The square root of a number is a value that, when
multiplied by itself, gives the original number. For example:
SQRT(number) = √number
Examples:¶
=SQRT(4)would return2because the square root of 4 is 2.=SQRT(9)would return3because the square root of 9 is 3.=SQRT(0)would return0because the square root of 0 is 0.=SQRT(1)would return1because the square root of 1 is 1.=SQRT(2)would return approximately1.414213because the square root of 2 is an irrational number.
Notes:¶
- The
SQRTfunction only works with non-negative numbers. If you provide a negative value, Excel will return a#NUM!error. - It is the inverse operation of squaring a number (x²). For example, if
x = 3, thenSQRT(9) = 3. - The function is widely used in mathematical, statistical, and engineering calculations.
- The result of the
SQRTfunction is always a non-negative value.