Returns the square root of (number * pi).
Syntaxe
SQRTPI(number)Arguments
numberobligatoire
The number by which pi is multiplied.
The SQRTPI function calculates the square root of the product of a specified number and the mathematical constant Pi. It is a convenient way to perform this specific calculation without needing to manually multiply by PI() before taking the square root.
=SQRTPI(1)→1.772453851Calculates the square root of 1 * PI, which is approximately 1.772.
=SQRTPI(2)→2.506628275Calculates the square root of 2 * PI, which is approximately 2.507.
Select a cell
Click on the cell where you want to display the result.
Enter the formula
Type =SQRTPI(number) and replace 'number' with your desired value or cell reference.
Press Enter
Press the Enter key to calculate the square root of the product.
The function will return a #NUM! error because the square root of a negative number is not a real number.