Dapatkan akar kuadrat dari (angka × π)
=SQRTPI(number)
| Parameter | Deskripsi |
|---|---|
number |
A positive number to multiply by π before taking the square root. |
The SQRTPI function calculates the square root of (number × π). This is equivalent to SQRT(number*PI()) but provides a more direct way to perform this
=SQRTPI(1) // returns 1.77245385090552 (square root of π)
=SQRTPI(1) // returns 1.772453851 (square root of π)
=SQRTPI(4) // returns 3.544907702 (square root of 4π)
The SQRTPI function provides the same result as combining the SQRT and PI functions:
=SQRTPI(9) // 5.31736155271656
=SQRT(9*PI()) // 5.31736155271656 (equivalent)
=SQRTPI(-1) // Returns #NUM! error
=SQRTPI("text") // Returns #VALUE! error
=SQRTPI(TRUE) // Returns #VALUE! error