TI-84 for Calculus: Derivatives, Integrals & Limits Explained
TI84 Calculator
Math Guides

TI-84 for Calculus: Derivatives, Integrals & Limits Explained

📚 Related Guides
📅 February 15, 2026 ⏱ 5 min read ✍️ TI84 Calculator Editorial

Calculus represents the apex of the TI-84's mathematical capabilities. The calculator's numerical differentiation and integration functions handle the computation of derivatives and definite integrals with speed and accuracy that would take minutes to achieve analytically. This frees you to focus on conceptual understanding and problem setup — the genuinely mathematical parts — while the calculator handles the mechanical computation.

Introduction

The TI-84 is fundamentally a numerical calculator, which means it cannot perform symbolic differentiation or integration. It cannot give you the antiderivative of a function in closed form or simplify a derivative expression symbolically. What it can do is evaluate derivatives at specific points and compute definite integrals to high numerical precision — capabilities that are sufficient for the majority of AP Calculus and college calculus coursework.

This guide covers numerical derivatives with nDeriv(, definite integrals with fnInt(, area-between-curves calculations, the graphical derivative and integral features accessible through the CALC menu, and the table and graphical methods for investigating limits. Each section includes worked examples with exact keystrokes and common pitfalls to avoid.

Numerical Derivatives: nDeriv(

The TI-84 computes numerical derivatives using the symmetric difference quotient: f prime of a approximately equals [f(a+h) minus f(a-h)] divided by (2h), where h defaults to 0.001. This approximation is accurate to three or four decimal places for smooth functions at points where the derivative is well-defined. Access nDeriv( through MATH → 8:nDeriv(.

Syntax: nDeriv(function, variable, value). For example, nDeriv(X^3, X, 2) computes the derivative of x cubed at x = 2, returning 12 — exactly matching the analytical result of 3 times 2 squared = 12. nDeriv(sin(X), X, 0) returns 1, matching cos(0) = 1. nDeriv(e^X, X, 1) returns approximately 2.718, matching e to the first power.

For AP Calculus exam work, always present nDeriv results with the appropriate notation and attribution. Write the derivative expression, then state "Using the calculator, f'(2) is approximately 12.000" — explicitly noting calculator use and providing three decimal places as required by the College Board scoring guidelines. Writing only the numerical result without this framing risks losing method points even when the numerical answer is correct.

Definite Integrals: fnInt(

The fnInt( function computes numerical definite integrals using adaptive quadrature — a sophisticated algorithm that subdivides the integration interval and evaluates the function at optimally chosen points until the result converges to the required precision. Access it through MATH → 9:fnInt(.

Syntax: fnInt(function, variable, lower bound, upper bound). For example, fnInt(X^2, X, 0, 3) returns 9, exactly matching x cubed divided by 3 evaluated from 0 to 3. fnInt(sin(X), X, 0, pi) returns 2, matching the analytical result of negative cos(pi) minus negative cos(0) = 1 + 1 = 2. For functions with no elementary antiderivative like e to the power of negative x squared, fnInt returns an accurate numerical result even though no closed-form antiderivative exists.

For complex integrands that arise in physics and engineering applications — Bessel functions, Fresnel integrals, elliptic integrals — fnInt is often the only practical evaluation method. The calculator's adaptive quadrature handles these cases accurately within its numerical precision limits. This makes the TI-84 a surprisingly capable tool for applied mathematics even at the undergraduate level.

Area Between Curves

Finding the area between two curves f(x) and g(x) from x = a to x = b is one of the most common AP Calculus application problems. Store f(x) in Y1 and g(x) in Y2. Verify by graphing that Y1 is above Y2 on the interval of interest (or adjust the integrand if the curves cross). Then compute fnInt(Y1-Y2, X, a, b) on the home screen. Reference Y1 and Y2 by pressing VARS → Y-VARS → 1:Function → 1:Y1.

For the area between y = x and y = x squared from x = 0 to x = 1, enter Y1 = X and Y2 = X^2. Graph to confirm Y1 is above Y2 on [0,1] — the line is above the parabola between the intersection points at 0 and 1. Then compute fnInt(Y1-Y2, X, 0, 1) → 0.1667, which equals 1/6. You can verify by computing 1/2 minus 1/3 = 1/6 analytically.

When curves cross within the integration interval, the standard approach is to split the integral at the crossing point and integrate each section separately, using absolute values to ensure positive area in each piece. Find the crossing point using 2ND+TRACE → intersect, then use the x-coordinate as the intermediate bound in two separate fnInt( calls.

Limits: Graphical and Table Approach

The TI-84 has no dedicated limit function, but you can investigate limits effectively using both graphical and table-based approaches. For limits of the form as x approaches a, graph the function and zoom in near x = a. If the graph approaches a single y-value from both sides, that value is the limit. Use TRACE or dy/dx to read approximate function values near the limit point.

The table method is often more precise for numerical limit investigation. Set up Y1 with the function and open TABLE (2ND+GRAPH). Press 2ND+WINDOW to access TBL SET and change Indpnt from Auto to Ask. Now the table prompts you for specific x-values. Enter values approaching the limit from the left (like 0.9, 0.99, 0.999) and from the right (like 1.1, 1.01, 1.001). If the y-values converge to the same number from both sides, that is the limit.

For example, investigate the limit as x approaches 2 of (x squared minus 4) divided by (x minus 2). Enter the function in Y1 and use the Ask table with x-values of 1.9, 1.99, 2.01, 2.1. All four return values very close to 4, confirming the limit is 4 even though the function is undefined at x = 2 itself. This investigative approach builds genuine intuition for limit concepts that purely algebraic evaluation can obscure.

Further Reading & Sources

Understanding nDeriv() — Numerical Derivative

The TI-84's nDeriv(expression, variable, value) function computes the numerical derivative of a function at a specific point using the symmetric difference quotient: [f(x+h) − f(x−h)] / (2h) where h is a small tolerance (default 0.001). This gives an extremely accurate approximation of f'(a). Access it via MATH → 8:nDeriv(. Example: nDeriv(X³−2X,X,3) computes f'(3) for f(x)=x³−2x, returning 25 (exact value: 3(9)−2=25).

On AP Calculus exams, College Board requires you to state "using the calculator" when you use nDeriv() in free-response work. The four permitted calculator competencies explicitly include "computing the derivative of a function numerically."

Understanding fnInt() — Numerical Integration

fnInt(expression, variable, lower, upper) computes the definite integral using adaptive Romberg integration. Access via MATH → 9:fnInt(. Example: fnInt(X²,X,0,3) returns 9, the exact value of ∫₀³ x² dx. For transcendental functions like fnInt(sin(X²),X,0,2), the TI-84 returns a numerical approximation that would be impossible to compute by hand analytically.

On AP Calculus FRQs, when a function has no closed-form antiderivative (e.g., e^(−x²), sin(x)/x), fnInt() is the required method. Always give your answer to 3 decimal places unless the problem specifies otherwise.

Finding Zeros, Extrema, and Inflection Points Graphically

Graph f(x) in Y1, then use 2ND → CALC: 2:zero to find x-intercepts (critical for solving f(x)=0), 3:minimum and 4:maximum to locate local extrema, and set WINDOW appropriately so all features are visible. For inflection points, graph f''(x) in Y2 using nDeriv(nDeriv(Y1,X,X),X,X) — where the second derivative crosses zero is an inflection point of f.

Finding Area Between Curves

To find the area between f(x) and g(x) from a to b: first find the intersection points using 2ND → CALC → 5:intersect on their graphs. Then compute fnInt(Y1−Y2, X, a, b). If the curves switch which is on top, split the integral at the crossing point and use absolute values or split into separate integrals. This technique is tested heavily on AP Calculus AB Part B and BC.

Riemann Sums on the TI-84

While the TI-84 doesn't have a built-in Riemann sum command, you can approximate them using the sum() and seq() functions. For a left Riemann sum of f(x)=x² on [0,3] with n=6: sum(seq(Y1(X), X, 0, 2.5, 0.5))*0.5. The seq() function generates x-values and sum() adds the function values. Right, midpoint, and trapezoidal sums all use slight variations of this approach.

AP Calculus Exam Strategy

College Board tests four specific calculator competencies: graphing in a window, finding zeros, computing nDeriv(), and computing fnInt(). Every other calculator use is secondary. On Section 1 Part B (MCQ with calculator) and Section 2 Parts A and B (FRQ), identify which of these four tools solves the problem fastest. nDeriv() is almost always faster than symbolic differentiation for evaluating f'(a) at a specific point. fnInt() eliminates the need to find antiderivatives for definite integrals on Part B problems.