Syntax
| Parameter | Description |
|---|---|
| alpha | Parameter of the CONFIDENCE function. |
| standard_dev | Parameter of the CONFIDENCE function. |
| size | Parameter of the CONFIDENCE function. |
Examples
95% confidence interval margin
=CONFIDENCE(0.05, 2.5, 50)
Building the interval
=AVERAGE(B2:B51) + CONFIDENCE(0.05, STDEV(B2:B51), 50)
Narrower interval with larger sample
=CONFIDENCE(0.05, 10, 400)
Common Errors
Alpha must be between 0 and 1 (exclusive), standard deviation must be positive, and sample size must be at least 1.
Non-numeric arguments.
Tips
For a 95% confidence interval, alpha = 0.05. For 99%, alpha = 0.01. For 90%, alpha = 0.10.
CONFIDENCE uses the normal distribution, which assumes you know the population standard deviation. If you are estimating it from the sample, use CONFIDENCE.T instead.
To halve the margin of error, you need 4x the sample size. The margin is proportional to 1/SQRT(n).
Try CONFIDENCE in Viztab
Import your data and use CONFIDENCE with 370+ other formulas. No signup required.
Open Viztab