AP Stats on the TI-84: Every command you need for the exam

APMathematicsexam prep
By Amadeus Carnegie
6 min read
Amadeus Carnegie

The TI-84 Plus is the most commonly used calculator on the AP (Advanced Placement) Statistics exam. CollegeBoard allows any graphing calculator on the approved list, and the Bluebook testing app also has a built-in Desmos graphing calculator, but the TI-84 Plus (and the CE variant) has the biggest install base in US high schools and the largest stock of shared tutorials. Every command you need for the exam lives in three menus: STAT, DISTR, and MATRIX.

This guide walks through the specific TI-84 commands the exam tests, keystroke by keystroke, with a worked example for each. If you'd rather see the underlying stats content, Cognito's AP Statistics past papers have every recent released paper with worked solutions.

You don't need every menu on the TI-84 memorized. You need about a dozen commands cold, and the muscle memory to reach them in under 10 seconds each.

Tip

Descriptive stats: 1-Var Stats and LinReg

Enter data first. STAT > EDIT gives you L1, L2, etc. Type values into L1 for one-variable data; L1 and L2 for two-variable.

1-Var Stats: STAT > CALC > 1:1-Var Stats > choose L1. Returns mean (x-bar), sample standard deviation (Sx, with n-1), population standard deviation (sigma-x, with n), median, quartiles, and n. On the exam, always use Sx (n-1), not sigma-x, unless the question explicitly says you have the whole population.

LinReg(a+bx): STAT > CALC > 8:LinReg(a+bx) > choose L1, L2. Returns the intercept (a), slope (b), correlation coefficient (r), and r-squared. To display r you have to have DiagnosticOn enabled (CATALOG, or 2ND 0, scroll to DiagnosticOn, ENTER). Do that once at the start of the year and it stays on.

Worked example: study hours L1 = {1, 2, 3, 4, 5}, test score L2 = {60, 65, 70, 80, 85}. 1-Var Stats on L1: x-bar = 3, Sx = 1.58. On L2: y-bar = 72, Sy = 10.4. LinReg(a+bx) L1, L2: a = 52.5, b = 6.5, r = 0.991, r-squared = 0.983. Regression line: y-hat = 52.5 + 6.5x.


Probability: normalcdf and invNorm

normalcdf(lower, upper, mu, sigma): 2ND VARS (DISTR) > 2:normalcdf. Returns the probability that a Normal variable falls in a range. For the standard Normal, omit mu and sigma (defaults are 0 and 1).

Worked example: adult heights are Normally distributed with mu = 68 inches and sigma = 3. Probability an adult is between 65 and 72 inches: normalcdf(65, 72, 68, 3) returns 0.7501. Or equivalently, in z-scores: normalcdf(-1, 1.333) returns about the same value (0.7501).

invNorm(area, mu, sigma): 2ND VARS > 3:invNorm. Returns the z-score (or raw value) with a given area to the left. Useful for finding cutoffs.

Worked example: what height cuts off the top 5 percent of adults? invNorm(0.95, 68, 3) returns 72.93 inches.

binompdf and binomcdf: 2ND VARS > A:binompdf gives P(X = k) for a binomial; B:binomcdf gives P(X less than or equal to k). Arguments are (n, p, k). For P(X greater than or equal to k), use 1 minus binomcdf(n, p, k-1).

Ready to boost your grades?

Join 1M+ students who have used Cognito to ace their exams.

Get started for free!
free account

Inference: the STAT TESTS menu

Every inference procedure has a menu entry at STAT > TESTS. The exam allows and expects you to use them; the FRQ rubric still wants you to identify the procedure (by name or by formula) and report the key values alongside the calculator output.

ProcedureMenu locationWhen to use
Z-TestSTAT > TESTS > 1One-sample z-test for a mean (rare; sigma known)
T-TestSTAT > TESTS > 2One-sample t-test for a mean
2-SampZTestSTAT > TESTS > 3Two-sample z-test for means (rare; both sigmas known)
2-SampTTestSTAT > TESTS > 4Two-sample t-test for means (common)
1-PropZTestSTAT > TESTS > 5One-proportion z-test
2-PropZTestSTAT > TESTS > 6Two-proportion z-test
ZIntervalSTAT > TESTS > 7One-sample z-interval for a mean (rare)
TIntervalSTAT > TESTS > 8One-sample t-interval for a mean
2-SampTIntSTAT > TESTS > 0Two-sample t-interval for means
1-PropZIntSTAT > TESTS > AOne-proportion z-interval
2-PropZIntSTAT > TESTS > BTwo-proportion z-interval
Chi-Squared TestSTAT > TESTS > CChi-square test of independence or homogeneity
The STAT TESTS entries you need for AP Statistics. Every AP inference procedure has a dedicated entry (the menu also has tests the course doesn't use, such as 2-SampZInt, 2-SampFTest and ANOVA).

Worked example (one-sample t-test): a company claims bulbs last 1,000 hours. Sample of 20 bulbs has x-bar = 985, s = 40. Test H0: mu = 1000 vs Ha: mu less than 1000.

STAT > TESTS > 2:T-Test. Choose 'Stats' input. Enter mu0 = 1000, x-bar = 985, Sx = 40, n = 20, and select mu less than mu0 for the alternative. Calculate. Returns t = -1.677, p = 0.0550, df = 19. Because p greater than 0.05, we fail to reject H0.

Worked example (matched pairs): to test whether a study method improves scores, 10 students take a test before and after. Enter differences (after minus before) into L1. Run STAT > TESTS > 2:T-Test on L1 with mu0 = 0 and mu > mu0. That's a one-sample t on the differences, which is what a matched-pairs test IS.


Chi-square: entering matrices

For chi-square tests of independence or homogeneity, enter the observed counts as a matrix. 2ND MATRIX > EDIT > [A]. Set dimensions (rows x columns), then enter counts.

Then STAT > TESTS > C:chi-squared-Test. Observed = [A]. Expected: the calculator computes and stores in [B]; you don't need to enter it manually. Calculate returns chi-squared, p-value, and df.

After running the test, view [B] to see the expected counts (2ND MATRIX > 2:[B]). Check that no expected count is less than 5; if any are, the chi-square approximation is questionable and you should note this on the FRQ.

Do this the night before.

  • Fresh batteries and a spare set in your bag
  • Confirm DiagnosticOn is enabled so LinReg displays r and r-squared
  • Clear all lists and matrices (STAT > 4:ClrList, 2ND MEM > 2:Mem Mgmt/Del)
  • Practice normalcdf, invNorm, 1-Var Stats, LinReg, T-Test, and chi-squared-Test until each takes under 15 seconds
  • On the FRQ, name the procedure (or write its formula), check conditions, and report the test statistic and p-value; don't rely on calculator syntax alone
  • Round in the final step only; use full calculator precision for intermediate values
TI-84 exam-day setup

Practice AP Statistics with our past papers

Every recent released AP Statistics paper grouped by year, with worked solutions that show both the calculator commands and the written setup the rubric wants.

frequently asked questions