sqrt
sqrt(number
)
The SQRT function has the following argument:
number
The number for which to determine the square root.
If the input value is less than zero then the special "Not A Number" value will be returned and will propogate through subsequent calculations.
Formula |
Description |
Result |
---|---|---|
sqrt(4) |
The square root of 4 |
2.0 |
sqrt(100.0) |
The square root of 100.0 |
10.0 |
sqrt(0) |
The square root of 0.0. |
0.0 |
sqrt(-1.0) |
The square root of -1.0. |
Not A Number |