Sqrt

Computes the square root of a positive number.

Syntax

Sqrt(number)
number = number (greater than or equal to zero) whose square root you want to calculate

Remarks

If the number entered as a parameter is negative, the function will return NaN (Not a Number), because it cannot handle imaginary numbers.

Example

Sqrt(4) = 2
Sqrt(1) = 1

Classification

Maths