SQRTPI
Last updated
Was this helpful?
Last updated
Was this helpful?
The function SQRTPI takes a Number, multiples it by pi, and outputs the square root of the resulting product.
This function takes a as input. It outputs another Number: the square root of the given number multiplied by pi.
n (required, type: Number
) Any number.
number (type: Number
) The square root of n multiplied by pi. Mathematically, this can be written as √(nπ).
The following example takes the Number 2 as input, multiplies it by pi, and outputs the square root of the resulting product:
The following example takes the result of the function (itself the mathematical constant pi), multiplies it by pi, and outputs the square root of the resulting product (pi squared):