OFFSET
-2,2
COMMENTS
The probability P{(x-m)/s > 3} for a normally distributed random variable x with mean m and standard deviation s.
In experimental sciences (hypothesis testing), a measured excursion exceeding background "noise" by more than three standard deviations is considered fairly significant, unless it is an isolated case among hundreds of measurements.
LINKS
Stanislav Sykora, Table of n, a(n) for n = -2..1998
Wikipedia, Normal distribution
FORMULA
P{(x-m)/s > 3} = P{(x-m)/s < -3} = 0.5*erfc(3/sqrt(2)), with erfc(x) being the complementary error function.
EXAMPLE
0.0013498980316300945266518147675949773778293681583806493642...
MATHEMATICA
First[RealDigits[1 - CDF[NormalDistribution[], 3], 10, 100]] (* Joan Ludevid, Jun 13 2022 *)
PROG
(PARI) n=3; a=0.5*erfc(n/sqrt(2)) \\ Use sufficient realprecision
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Stanislav Sykora, Mar 18 2014
STATUS
approved