Skip to content
Property Value
Hex Value $BB12
Categories
Localizations
  • FR: studentFRép(

tcdf(

Overview

Computes the Student-t distribution probability between lowerbound andupperbound for the specified degrees of freedomdf.

Availability: Token available everywhere.

Syntax

tcdf(lowerbound,upperbound,df)

Arguments

NameTypeOptional
lowerbound
upperbound
df

Location

2nd, distr, DISTR, 6:tcdf(


Description

tcdf( is the Student's t cumulative density function. If some random variable follows this distribution, you can use this command to find the probability that this variable will fall in the interval you supply.

Unlike normalcdf(, this command only works for the standardized distribution with mean 0 and standard deviation 1. To use it for non-standardized values you will have to standardize them by calculating (X-μ)/σ (where μ is the mean and σ the standard deviation). Do this for both lower and upper.

Advanced

Often, you want to find a "tail probability" - a special case for which the interval has no lower or no upper bound (the form frequently used in one-tailed tests). For example, "what is the probability x is greater than 2?". The TI-83+ has no special symbol for infinity, but you can use E99 to get a very large number that will work equally well in this case (E is the decimal exponent obtained by pressing [2nd] [EE]). Use E99 for +∞, and -E99 for -∞.

Alternatively, you can exploit the identity

(1) \(\begin{align} \texttt{tcdf}(-\infty,0,\nu)=\frac1{2} \end{align}\)

(similarly for the interval from 0 to ∞)

and thus

(2) \(\begin{align} \texttt{tcdf}(-\infty,x,\nu)=\frac1{2}+\texttt{tcdf}(0,x,\nu) \end{align}\)

For the form used in two-tailed tests, the following identity may be useful:

(3) \(\begin{align} \texttt{tcdf}(-x,x,\nu)=2\texttt{tcdf}(0,x,\nu) \end{align}\)

Formulas

As with any other continuous distribution, tcdf( can be defined in terms of the probability density function, tpdf(:

(4) \(\begin{align} \texttt{tcdf}(a,b,\nu)=\int_a^b \texttt{tpdf}(t,\nu)\mathrm{d}t \end{align}\)

The function can also be expressed in terms of an incomplete beta function.

For one degree of freedom (ν=1), tcdf( is expressible in terms of simpler functions:

(5) \(\begin{align} \texttt{tcdf}(a,b,1)=\frac1{\pi}\left(\tan^{-1}\left(b\right)-\tan^{-1}\left(a\right)\right) \end{align}\)

This is the so-called Cauchy distribution.


Source: parts of this page were written by the following TI|BD contributors: burr, DarkerLine, GoVegan, thornahawk.

History

Calculator OS Version Description
TI-83 0.01013 Added

Last update: September 30, 2023 15:38:51
Created: February 23, 2023 23:15:01
Authors: Adrien Bertrand