Statistics is one of the TI-84's most powerful and least understood domains. The calculator's STAT menu and DISTR submenu pack an extraordinary range of statistical capabilities: descriptive statistics, probability distributions, hypothesis tests, confidence intervals, and regression analysis. These features make the TI-84 not just a calculator but a full-featured statistics workbench for courses from AP Statistics to introductory college statistics.
Introduction
Statistics is one of the TI-84's most powerful and least understood domains. The calculator's STAT menu and DISTR submenu pack an extraordinary range of statistical capabilities: descriptive statistics, probability distributions, hypothesis tests, confidence intervals, and regression analysis. These features make the TI-84 not just a calculator but a full-featured statistics workbench for courses from AP Statistics to introductory college statistics.
This guide covers the complete statistical workflow on the TI-84: entering data using the list editor, computing one-variable and two-variable descriptive statistics, performing linear and nonlinear regression, using probability distribution functions for calculations and hypothesis testing, conducting formal hypothesis tests, and creating scatter plots with regression overlays.
AP Statistics students should note that the TI-84's statistics capabilities are precisely what the AP exam expects. The College Board designs the free-response questions around the assumption that students can perform all the calculations in this guide using their calculators. Mastering these features is not supplementary preparation — it is core exam skill development.
Entering Data: The List Editor
All statistics work on the TI-84 begins with entering data into lists. Press STAT → 1:Edit to open the list editor. You will see columns labeled L1, L2, L3, L4, L5, and L6, each capable of holding up to 999 data values. Navigate to a list column and enter your values by typing each one and pressing ENTER. The cursor automatically moves to the next empty row.
To clear a list, move the cursor to the column header (the L1 label at the top of the column) and press CLEAR followed by ENTER. This removes all values from the list without deleting the list itself. Do not press DEL on a column header — that removes the entire list from the editor view, which can be confusing.
For two-variable regression data, put your x-values in L1 and y-values in L2, in the same order so each row represents one (x, y) data pair. For weighted data (where each value has a frequency), put the data values in L1 and their frequencies in L2. The TI-84 statistical functions accept a frequency list as a second argument, allowing you to enter data efficiently when many values repeat.
1-Variable Statistics
With data in L1, press STAT → CALC → 1:1-Var Stats → ENTER. If your data is in a list other than L1, type the list name after the command: 1-Var Stats L2, for example. The calculator displays: x-bar (arithmetic mean), sum of x (total of all values), sum of x squared, Sx (sample standard deviation), sigma-x (population standard deviation), and n (count of data points).
Scroll down on the 1-Var Stats output to see the five-number summary: minimum value, Q1 (first quartile), median, Q3 (third quartile), and maximum value. These five numbers completely characterize the spread and center of a dataset and are essential for boxplot construction and outlier identification.
The distinction between Sx and sigma-x is statistically important. Sx is the sample standard deviation, computed by dividing by n-1 (Bessel's correction). It is the appropriate measure when your data represents a sample drawn from a larger population, which is the case in virtually all practical statistical applications. Sigma-x divides by n and is appropriate only when your data constitutes the entire population of interest.
Linear Regression
Before running any regression, enable the diagnostic display: press 2ND+0 (CATALOG), scroll to DiagnosticOn, press ENTER twice. This one-time setup ensures that regression output includes the correlation coefficient r and the coefficient of determination r-squared.
With x-data in L1 and y-data in L2, press STAT → CALC → 4:LinReg(ax+b) ENTER. To automatically store the regression equation in Y1 for graphing, type: LinReg(ax+b) L1, L2, Y1. The output displays: a (slope), b (y-intercept), r (correlation coefficient between -1 and 1), and r-squared (the proportion of variance in y explained by x).
The regression line stored in Y1 can be graphed alongside a scatter plot. Create the scatter plot first: press 2ND+Y= (STAT PLOT) → 1:Plot1 → turn it On → select the scatter plot icon → set Xlist to L1 and Ylist to L2. Then press ZOOM → 9:ZoomStat to auto-fit the window to your data. Press GRAPH to see both the scatter plot and the regression line overlaid.
Probability Distributions
Press 2ND+VARS (DISTR) to access the complete library of probability distribution functions. The most commonly used are: normalcdf(lower, upper, mean, standard deviation) for finding probabilities in a normal distribution between two values; invNorm(area, mean, standard deviation) for finding the x-value at a given cumulative probability percentile; binompdf(n, p, k) for the probability of exactly k successes in n Bernoulli trials with success probability p; and binomcdf(n, p, k) for the cumulative probability of at most k successes.
For AP Statistics, these distribution functions replace the z-table, t-table, and binomial probability table that older statistics courses required. normalcdf(-1.96, 1.96, 0, 1) gives the probability within 1.96 standard deviations of the mean in a standard normal distribution, returning approximately 0.95. invNorm(0.975, 0, 1) returns 1.96, confirming the critical value for a 95% confidence interval.
The t-distribution functions tcdf(lower, upper, degrees of freedom) and invT(area, degrees of freedom) handle t-distribution calculations for small-sample inference. The chi-squared distribution functions chi-sq-cdf and invChi handle chi-squared tests. Each distribution function has both the pdf (probability density for a specific value) and cdf (cumulative probability up to a value) variants.
Hypothesis Tests and Confidence Intervals
Press STAT → TESTS to access the complete suite of formal inference procedures. For one-sample tests of a mean with known population standard deviation, use ZTest. For unknown standard deviation (the more common case), use TTest. Both tests accept either raw data from a list or summary statistics (mean, standard deviation, and n) entered directly.
Confidence intervals are constructed using ZInterval (for known sigma) or TInterval (for unknown sigma). Enter the confidence level (0.95 for 95%, 0.99 for 99%, etc.), provide data or summary statistics, and the calculator returns the lower and upper bounds of the confidence interval directly. This replaces the manual calculation of x-bar ± z* times sigma divided by square root of n.
For two-proportion z-tests comparing proportions from two populations, use 2-PropZTest. For chi-squared tests of independence or goodness of fit, use chi-sq-Test. For each test, the output includes the test statistic, the p-value, and the relevant sample statistics — everything needed to complete a formal hypothesis test or confidence interval conclusion on an AP Statistics free-response question.
Further Reading & Sources
Understanding 1-Variable Statistics on the TI-84
The 1-Var Stats command is your go-to tool for summarizing a single data set. After entering data in L1 via STAT → Edit, press STAT → CALC → 1:1-Var Stats, then specify L1 as the list. The output screen gives you: x̄ (mean), Σx (sum), Σx² (sum of squares), Sx (sample standard deviation), σx (population standard deviation), n (count), minX, Q1, Med, Q3, and maxX.
A critical distinction that trips up many AP Statistics students: Sx is the sample standard deviation (divides by n−1) while σx is the population standard deviation (divides by n). On AP exams, you almost always want Sx unless you explicitly have the entire population.
Linear Regression Step by Step
Linear regression on the TI-84 uses the LinReg(ax+b) command. Before running it, turn on DiagnosticOn so the output includes correlation coefficient r and r²: press 2ND → CATALOG, scroll to DiagnosticOn, press ENTER twice. Then enter your x-values in L1 and y-values in L2, press STAT → CALC → 4:LinReg(ax+b), specify L1, L2, and optionally Y1 to store the equation. The output gives you a (slope), b (y-intercept), r (correlation), and r² (coefficient of determination).
Interpreting r²: a value of 0.95 means 95% of the variation in y is explained by x. In AP Statistics free-response questions, always interpret r² in context using the actual variable names from the problem.
Normal Distribution Calculations
The TI-84 has two essential normal distribution functions under 2ND → DISTR: normalcdf(lower, upper, μ, σ) gives the probability between two values, and invNorm(area, μ, σ) finds the value at a given percentile. For standard normal (z-distribution), use μ=0 and σ=1. To find P(X < 75) where X~N(70,8): normalcdf(−1E99, 75, 70, 8). Use −1E99 as negative infinity and 1E99 as positive infinity.
Hypothesis Testing
The TI-84 STAT → TESTS menu contains every hypothesis test AP Statistics students need. Key tests include: Z-Test (1-prop or 2-prop z-test for proportions), T-Test (1-sample or 2-sample t-test for means), 2-SampTTest (independent samples), TInterval and ZInterval for confidence intervals, and χ²-Test for chi-square tests of independence and goodness-of-fit.
For each test, the calculator outputs the test statistic, p-value, and (where applicable) degrees of freedom. Always compare your p-value to the significance level α stated in the problem — if p < α, reject H₀.
Box Plots and Histograms
Visualize your data with STAT PLOT (2ND → Y=). Select Plot1, turn it On, choose the plot type (scatter, line, histogram, box plot, or modified box plot), and set the list. Press ZOOM → 9:ZoomStat to auto-scale the window to your data. Modified box plots show outliers as individual dots beyond the whiskers, which is what AP Statistics exam problems typically use.
Common AP Statistics Calculator Mistakes
The most frequent errors students make: (1) Using σx instead of Sx for sample problems. (2) Forgetting to turn on DiagnosticOn before running regression, so r and r² don't appear. (3) Entering data in L1 and L2 but not specifying those lists in the CALC command. (4) Misreading p-values — the TI-84 outputs them in scientific notation (e.g., 2.3E-4 = 0.00023). Always check that your lists don't contain stale data from previous problems by clearing them first with STAT → Edit → highlight list name → CLEAR → ENTER.