Selected TI83 Functions - Syntax
- binomcdf(numtrials,p,x) - binomomial probability
cumulative distribution function,
numtrials = number of trials,
p = probability of success, and
x is the number of successes.
It is equivalent to P(X<x),
where P is the binomial probability
distribution function P(x)=C(N,x)px(1-p)N-x
- binompdf(numtrials,p,x) - binomomial probability
distribution function,
numtrials = number of trials,
p = probability of success, and
x is the number of successes.
It is equivalent to P(X=x),
where P is the binomial probability
distribution function P(x)=C(N,x)px(1-p)N-x
- value->Frac - convert value into a fraction
- LinReg(ax+b) Xlist, Ylist - Linear Regression
Xlist is a list of x - coordinate
Ylist is a list of y - coordinate
This function returns with the values of a (slope) and b (intercept)
of the regression line.
- valueA nCr valueB - Combinatorial function
returns the number of combinations of valueA objects, taken
valueB at a time
that is, C(valueA,valueB), where C(N,x) = N!/((N-r)!r!)
- valueA nPr valueB - Permutation function
returns the number of permutations of valueA objects, taken
valueB at a time
that is, P(valueA,valueB), where P(N,x) = N!/(N-x)!
- InvNorm(area,mu,sigma - Normal area function
area = area enclosed,
mu = mean of the distribution, and
sigma = standard deviation of the distribution .
It returns x, where P(X < x)=area
- normalcdf(a,b,mu,sigma) - normal probability
cumulative distribution function,
a = lower bound,
b = upper bound,
mu = mean of the distribution, and
sigma = standard deviation of the distribution .
It is equivalent to P(a < X < b),
where P is the normal probability
distribution function
P(x)=1/(sigma sqrt(pi)) e-(x-mu)22sigma2
- normalpdf(numtrials,p,x) - normal probability
distribution function,
numtrials = number of trials,
p = probability of success, and
x is the number of successes.
where P is the normal probability
distribution function
P(x)=1/(sigma sqrt(pi)) e-(x-mu)2/2sigma2
- *row(value,matrix,row) - matrix row multiplication
value = value multiplied by,
matrix = matrix, and
row = row number
- *row+(value,matrix,rowA,rowB) -
matrix row multiply/add
value = value rowA is multiplied by, then added to rowB,
matrix = matrix, and
rowA = row number A
rowB = row number B
- rref(matrix) - row reduced echelon form
matrix = matrix
- SetUpEditor - resets List Editor.
Removes all list names from the stat list editor, then restores
list names
L1, L2, ..., L6
to columns 1 ... 6.
- 1-Var Stats XList, FreqList
Xlist - data list,
FreqList - list of frequencies,
- Function Plotting
Y= - set up functions to be plotted
Window - set up x and y ranges, as well as tic marks
trace - trace values along a function graph,
intersect - find the intersection between two curves,
- Stat Plotting
Options - scatterplot, histogram, line graph
Window - set up x and y ranges, as well as tic marks