SQRTPI Function

Excel Functions › Math & Trig

All versions Math & Trig

The Excel SQRTPI function returns the square root of a number multiplied by π — that is, √(number × π). It is a shorthand common in statistics and physics formulas.


Quick answer:
=SQRTPI(1) sqrt(pi) = 1.7724539

Syntax

=SQRTPI(number)
ArgumentDescription
numberRequiredThe number that is multiplied by pi before the square root is taken. Must be zero or positive.

How to use it

SQRTPI computes √(number × π) in one step:

=SQRTPI(1) // sqrt(pi) ~1.7724539
=SQRTPI(2) // sqrt(2pi) ~2.5066283
=SQRTPI(4) // sqrt(4pi) ~3.5449077

It is exactly equivalent to =SQRT(number*PI()) — SQRTPI just saves you wrapping PI in the formula. The factor √(2π) appears constantly in the normal-distribution density, which is where SQRTPI earns its keep.

Non-negative only. Because the result must be a real number, a negative argument returns a #NUM! error, just like SQRT.

Try it: interactive demo

Live demo

Pick a SQRTPI example to see the formula and its result.

Result:

Practice workbook

📊
Download the free SQRTPI practice workbook
Every example on this page, ready to open in Excel — plus practice challenges with answers on a separate tab. No sign-up required.

Frequently asked questions

What exactly does SQRTPI calculate?
It returns √(number × π). So =SQRTPI(1) is √π ≈ 1.7724539 and =SQRTPI(2) is √(2π) ≈ 2.5066283.
Is SQRTPI the same as SQRT(number*PI())?
Yes, exactly. =SQRTPI(2) and =SQRT(2*PI()) return the same value. SQRTPI is just more compact.
Where is SQRTPI useful?
In statistics and physics — the constant √(2π) appears in the normal distribution's density function, and SQRTPI expresses it cleanly.
Can SQRTPI take a negative number?
No. A negative argument makes the product negative, so the real square root does not exist and Excel returns a #NUM! error.

Master functions like this in one day

This page covers one function. Our Excel Formulas and Functions class covers the 30 that matter most — live, hands-on, taught by professionals in Dallas–Fort Worth, Houston, Austin, Oklahoma City, Denver, or online.

See the Formulas & Functions Class

Related functions: SQRT · PI · POWER · EXP