Wolfram Function Repository
Instant-use add-on functions for the Wolfram Language
Function Repository Resource:
Calculate the number of standard deviations of a normal distribution that correspond to a confidence level
ResourceFunction["InverseSigmaConfidenceLevel"][cl] calculates the number of standard deviations around the mean containing the given fraction of a normal distribution. |
A confidence level of 0.95 spans approximately two standard deviations:
In[1]:= |
Out[1]= |
A one-sided p-value of 0.05 is equivalent to around 1.64 standard deviations:
In[2]:= |
Out[2]= |
Exact inputs yield exact results:
In[3]:= |
Out[3]= |
InverseSigmaConfidenceLevel automatically threads over lists:
In[4]:= |
Out[4]= |
InverseSigmaConfidenceLevel can be defined as the inverse CDF of the NormalDistribution with mean 0 and standard deviation 1:
In[5]:= |
Out[5]= |
InverseSigmaConfidenceLevel is the inverse to the resource function SigmaConfidenceLevel:
In[6]:= |
Out[6]= |
In[7]:= |
Out[7]= |
Values of unity get replaced with Infinity:
In[8]:= |
Out[8]= |
Arguments containing a top-level Erf get replaced with an expression containing no Erf or InverseErf heads:
In[9]:= |
Out[9]= |
Values with a magnitude above one are left unevaluated:
In[10]:= |
Out[10]= |
The Mensa organization only accepts members with an IQ test coming out in the top 2%. Calculate the lower IQ limit to pass this bar:
In[11]:= |
Out[11]= |
This work is licensed under a Creative Commons Attribution 4.0 International License