Difference between revisions of "TI-BASIC:Invt"
(Initial automated import) |
(Automated @@ correction) |
||
(One intermediate revision by one other user not shown) | |||
Line 1: | Line 1: | ||
{{Template:TI-BASIC:Command | {{Template:TI-BASIC:Command | ||
− | |picture= | + | |picture= |
|summary=Calculates the inverse of the cumulative [*https://en.wikipedia.org/wiki/Student%27s_t-distribution Student's t-distribution] function with degrees of freedom ν. | |summary=Calculates the inverse of the cumulative [*https://en.wikipedia.org/wiki/Student%27s_t-distribution Student's t-distribution] function with degrees of freedom ν. | ||
|syntax=invT(''probability'', ''ν'') | |syntax=invT(''probability'', ''ν'') | ||
Line 25: | Line 25: | ||
For one degree of freedom, invT( is expressible in terms of simpler functions: | For one degree of freedom, invT( is expressible in terms of simpler functions: | ||
− | + | <math> | |
\definecolor{darkgreen}{rgb}{0.90,0.91,0.859}\pagecolor{darkgreen} | \definecolor{darkgreen}{rgb}{0.90,0.91,0.859}\pagecolor{darkgreen} | ||
\operatorname{invT}(p,1)=\tan\left(\pi\left(p-\frac1{2}\right)\right) | \operatorname{invT}(p,1)=\tan\left(\pi\left(p-\frac1{2}\right)\right) | ||
− | + | </math> | |
= Related Commands = | = Related Commands = |
Latest revision as of 22:12, 24 February 2016
[[File:|border]]
Command Summary
Calculates the inverse of the cumulative [*https://en.wikipedia.org/wiki/Student%27s_t-distribution Student's t-distribution] function with degrees of freedom ν.
Command Syntax
invT(probability, ν)
Menu Location
Press:
- 2ND DISTR to access the distribution menu
- 4 to select invT(, or use arrows.
TI-84+/SE (OS 2.30 or greater)
2 bytes
invT( is the inverse of the cumulative Student t distribution function: given a probability p and a specified degrees of freedom ν, it will return the number x such that tcdf(-E99,x,ν) is equal to p
:invT(.95,24 1.710882023
Advanced
invT( is meant for use with so-called "one-tailed' tests; for two-tailed tests, the proper expression to use (corresponding to the inverse of tcdf(-x,x,ν)) is invT(.5(1+p),ν)
Formulas
Unlike the Tpdf( and Tcdf( commands, the invT( command does not have a closed-form formula. However, it can be expressed in terms of the inverse incomplete beta function.
For one degree of freedom, invT( is expressible in terms of simpler functions:
<math> \definecolor{darkgreen}{rgb}{0.90,0.91,0.859}\pagecolor{darkgreen} \operatorname{invT}(p,1)=\tan\left(\pi\left(p-\frac1{2}\right)\right) </math>