INVT (Inverse t) Program for TI-83 or TI-83 PLUS
Purpose: Just as invNorm accepts a quantile value (between 0 and 1, inclusive) and returns a z score, the INVT program accepts a value between 0 and 1, plus user-specified degrees of freedom (df), and returns a t score. INVT thus fills a gap that TI left when designing the firmware of the TI-83. |
Simple Program Listing:
:ClrHome
:Disp "INVERSE T"
:Disp "BY EMH, 3-8-1999"
:Disp "CUM. PROB.":Prompt P
:Disp "DF (INTEGER
Listing of longer version with better error checking:
:ClrHome
:Disp "INVERSE T"
:Disp "BY EMH, 10-17-00"
:Disp "CUMULATIVE PROB.":Input P
:If P<1E-9 or P>1-1
Comments: