<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://learn.cemetech.net/index.php?action=history&amp;feed=atom&amp;title=TI-BASIC%3AInvnorm</id>
	<title>TI-BASIC:Invnorm - Revision history</title>
	<link rel="self" type="application/atom+xml" href="http://learn.cemetech.net/index.php?action=history&amp;feed=atom&amp;title=TI-BASIC%3AInvnorm"/>
	<link rel="alternate" type="text/html" href="http://learn.cemetech.net/index.php?title=TI-BASIC:Invnorm&amp;action=history"/>
	<updated>2026-05-28T17:54:18Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.43.3</generator>
	<entry>
		<id>http://learn.cemetech.net/index.php?title=TI-BASIC:Invnorm&amp;diff=835&amp;oldid=prev</id>
		<title>Maintenance script: Initial automated import</title>
		<link rel="alternate" type="text/html" href="http://learn.cemetech.net/index.php?title=TI-BASIC:Invnorm&amp;diff=835&amp;oldid=prev"/>
		<updated>2016-02-24T18:21:02Z</updated>

		<summary type="html">&lt;p&gt;Initial automated import&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{Template:TI-BASIC:Command&lt;br /&gt;
|picture=INVNORM.GIF&lt;br /&gt;
|summary=Calculates the inverse of the cumulative normal distribution function.&lt;br /&gt;
|syntax=invNorm(&amp;#039;&amp;#039;probability&amp;#039;&amp;#039;[,&amp;#039;&amp;#039;μ&amp;#039;&amp;#039;, &amp;#039;&amp;#039;σ&amp;#039;&amp;#039;])&lt;br /&gt;
|location=Press:&lt;br /&gt;
# 2ND DISTR to access the distribution menu&lt;br /&gt;
# 3 to select invNorm(, or use arrows.&lt;br /&gt;
|compatibility=TI-83/84/+/SE&lt;br /&gt;
|size=2 bytes&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
invNorm( is the inverse of the cumulative normal distribution function: given a probability, it will give you a z-score with that tail probability. The probability argument of invNorm( is between 0 and 1; 0 will give -1&amp;lt;span style=&amp;quot;font-size: 75%&amp;quot;&amp;gt;E&amp;lt;/span&amp;gt;99 instead of negative infinity, and 1 will give 1&amp;lt;span style=&amp;quot;font-size: 75%&amp;quot;&amp;gt;E&amp;lt;/span&amp;gt;99 instead of positive infinity&lt;br /&gt;
&lt;br /&gt;
There are two ways to use invNorm(. With three arguments, the inverse of the cumulative normal distribution for a probability with specified mean and standard deviation is calculated. With one argument, the standard normal distribution is assumed (zero mean and unit standard deviation). For example:&lt;br /&gt;
&lt;br /&gt;
 for the standard normal distribution&lt;br /&gt;
 :invNorm(.975&lt;br /&gt;
 &lt;br /&gt;
 for the normal distribution with mean 10 and std. dev. 2.5&lt;br /&gt;
 :invNorm(.975,10,2.5&lt;br /&gt;
&lt;br /&gt;
= Advanced =&lt;br /&gt;
&lt;br /&gt;
This is the only inverse of a probability distribution function available (at least on the TI 83/+/SE calculators), so it makes sense to use it as an approximation for other distributions. Since the normal distribution is a good approximation for a binomial distribution with many trials, we can use invNorm( as an approximation for the nonexistent &amp;quot;invBinom(&amp;quot;. The following code gives the number of trials out of N that will succeed with probability X if the probability of any trial succeeding is P (rounded to the nearest whole number):&lt;br /&gt;
&lt;br /&gt;
 :int(.5+invNorm(X,NP,√(NP(1-P&lt;br /&gt;
&lt;br /&gt;
You can also use invNorm() to approximate the [[TI-BASIC:Invt|inverse of a t-distribution]]. Since a normal distribution is a t-distribution with infinite degrees of freedom, this will be an overestimate for probabilities below 1/2, and an underestimate for probabilities above 1/2.&lt;br /&gt;
&lt;br /&gt;
= Formulas =&lt;br /&gt;
&lt;br /&gt;
Unlike the [[TI-BASIC:Normalpdf|Normalpdf(]] and [[TI-BASIC:Normalcdf|Normalcdf(]] commands, the invNorm( command does not have a closed-form formula. It can however be expressed in terms of the [wikipedia:Error_function inverse error function]:&lt;br /&gt;
{{Template:TI-BASIC:Math&lt;br /&gt;
|eqn= \operatorname{invNorm}(p) = \sqrt{2}\,\operatorname{erf}^{-1}(2p-1)&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
For the arbitrary normal distribution with mean μ and standard deviation σ:&lt;br /&gt;
{{Template:TI-BASIC:Math&lt;br /&gt;
|eqn= \operatorname{invNorm}(p,\mu,\sigma)=\mu+\sigma\operatorname{invNorm}(p)&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
= Related Commands =&lt;br /&gt;
&lt;br /&gt;
* [[TI-BASIC:Normalpdf|Normalpdf(]]&lt;br /&gt;
* [[TI-BASIC:Normalcdf|Normalcdf(]]&lt;br /&gt;
* [[TI-BASIC:Shadenorm|ShadeNorm(]][[Category:TI-BASIC]]&lt;br /&gt;
[[Category:TIBD]]&lt;/div&gt;</summary>
		<author><name>Maintenance script</name></author>
	</entry>
</feed>