At SL, you investigate limits using a GDC table with decreasing values of \( h \). You do NOT need to evaluate limits algebraically.
TI-84 Plus CE — Investigating limits
Enter Y1 = (f(X+0.001) - f(X)) / 0.001 in [Y=]
Use [TABLE] to evaluate at specific \( x \)-values
Or: [MATH] → 8: nDeriv( → nDeriv(f(X), X, value) for numerical derivative
TI-Nspire CX II — Investigating limits
In Calculator: type nDeriv(f(x), x, value) for numerical derivative
In Graphs: [Menu] → Analyze Graph → dy/dx → click on curve at desired point
Casio fx-CG50 — Investigating limits
In Graph mode: draw the function, then [G-SOLV] (SHIFT+F5) → \frac{d}{dx} → enter \( x \)-value → gives gradient at that point
Or in Run-Matrix: \frac{d}{dx}(f(x), value) using the [OPTN] calculus menu
2
Power Rule for Differentiation
Power rule (given in formula booklet)
If \( f(x) = ax^n \) then \( f'(x) = anx^{n-1} \)
Differentiate each term separately. Constants disappear: if \( f(x) = 5 \), then \( f'(x) = 0 \).
Common error: Wrong power rule application. "Bring the power down and reduce it by 1." For \( x^3 \), the derivative is \( 3x^2 \), NOT \( x^2 \) or \( 3x^3 \).
3
Equation of a Tangent Line
Tangent at point \( (a, f(a)) \)
\( y - f(a) = f'(a)(x - a) \)
Step 1: Find \( f'(a) \) = gradient. Step 2: Find the point \( (a, f(a)) \). Step 3: Substitute into the formula.
Worked Example
Find the equation of the tangent to \( f(x) = x^2 + 3x \) at \( x = 2 \).
GDC check: Graph both the original curve and your tangent line. They should touch at exactly one point and the tangent should not cross the curve at that point.
Stationary points occur where \( f'(x) = 0 \). They can be a local maximum, local minimum, or point of inflexion.
Finding stationary points
Step 1: Find \( f'(x) \).
Step 2: Solve \( f'(x) = 0 \).
Step 3: Classify using the GDC (graph or sign of gradient either side).
Local maximum
\( f'(x) \) changes from + to −
Gradient goes from uphill to downhill.
Local minimum
\( f'(x) \) changes from − to +
Gradient goes from downhill to uphill.
TI-84 Plus CE — Stationary points
Graph Y1 = f(x) in [Y=], press [GRAPH] [2nd][CALC] → 3: minimum → set left/right bounds → gives min point [2nd][CALC] → 4: maximum → set left/right bounds → gives max point Alternative: Graph Y2 = nDeriv(Y1, X, X) and find where Y2 = 0
TI-Nspire CX II — Stationary points
Graph the function, then: [Menu] → Analyze Graph → Minimum (or Maximum)
Drag to set bounds → gives coordinates of the stationary point
Casio fx-CG50 — Stationary points
Graph the function: [DRAW] (F6) [G-SOLV] (SHIFT+F5) → MIN or MAX
Gives coordinates of the stationary point directly
Worked Example
Find and classify the stationary points of \( f(x) = x^3 - 6x^2 + 9x + 1 \).
GDC graph shows: (1, 5) is a local max, (3, 1) is a local min.
Answer: Local maximum at (1, 5); local minimum at (3, 1)
5
Optimisation
Optimisation problems ask you to find the maximum or minimum value of a quantity (cost, area, profit, etc.) subject to a constraint.
Optimisation method
1. Write the quantity to optimise as a function of one variable. 2. Use the constraint to eliminate other variables. 3. Differentiate and set \( f'(x) = 0 \). 4. Solve and check it gives a max/min (GDC or sign test). 5. Answer the question in context with units.
Worked Example
A farmer has 80 m of fencing to make a rectangular pen against a wall. Find the dimensions that maximise the area.
Let width = \( x \). Three sides of fencing: \( 2x + l = 80 \), so \( l = 80 - 2x \)
\( A(x) = x(80 - 2x) = 80x - 2x^2 \)
\( A'(x) = 80 - 4x = 0 \Rightarrow x = 20 \)
\( l = 80 - 2(20) = 40 , A = 20 \times 40 = 800 \)
Answer: Width = 20 m, length = 40 m, maximum area = 800 m\( ^2 \)
✗
Common error: Forgetting to check the domain. In the example above, \( x \) must satisfy \( 0 < x < 40 \) (otherwise the pen has no area). Also check endpoints if the domain is closed.
Method 1: [MATH] → 9: fnInt( → fnInt(f(X), X, a, b)
Method 2: Graph Y1 = f(x), then [2nd][CALC] → 7: ∫f(x)dx
Enter lower and upper bounds → gives shaded area value
TI-Nspire CX II — Definite integral
Calculator: type nInt(f(x), x, a, b)
Graphs: [Menu] → Analyze Graph → Integral → set bounds
Gives the numerical value of the definite integral
Casio fx-CG50 — Definite integral
Graph mode: draw the function, then [G-SOLV] (SHIFT+F5) → ∫dx → enter lower and upper bounds
Or in Run-Matrix: ∫(f(x), a, b) using the [OPTN] calculus menu
✗
Common error: Forgetting \( + C \) for indefinite integrals. Every indefinite integral must include the constant of integration. You lose a mark every time you forget it.
7
Trapezoidal Rule
The trapezoidal rule approximates the area under a curve using trapezoids. Used when you have data points but no equation, or when asked to approximate.
where \( h = \frac{b - a}{n} \) (width of each strip) and \( n \) = number of strips
Worked Example
Use the trapezoidal rule with 4 strips to approximate \( \int_0^4 x^2 \, dx \).
\( h = (4 - 0) / 4 = 1 \) \( x \)-values: 0, 1, 2, 3, 4
\( y \)-values: 0, 1, 4, 9, 16
Area ≈ (1/2)[0 + 2(1 + 4 + 9) + 16]
= (1/2)[0 + 28 + 16] = (1/2)(44) = 22
Answer: Approximate area = 22 (exact value is \( 64/3 \approx 21.3 \))
8
Exam Traps & Key Reminders
✗
Wrong power rule for integration. "Add 1 to the power and divide by the new power." For \( x^3: integral = \( x^4/4 \), NOT \( x^4 \) or \( x^4/3 \).
✗
Area below the \( x \)-axis. If the curve is below the \( x \)-axis, the integral gives a negative value. For the actual area, take the absolute value or split into regions.
✗
Trapezoidal rule: \( n \) strips vs \( n + 1 \) values. 4 strips means 5 \( y \)-values (including both endpoints). Don't confuse the number of strips with the number of data points.
▶
At AI SL, use the GDC freely. Most integration questions expect you to use technology. Only show manual working if the question says "find the integral" or involves a simple power rule.
▶
Formula booklet: The power rule for differentiation and integration, the trapezoidal rule, and the tangent line formula are all given. Practise finding them quickly in the booklet under time pressure.
▶
3 sf rule: Give answers to 3 significant figures. For exact answers like 22 or 12, write them as given. Never round mid-calculation.
This website uses essential cookies for authentication and security. We respect your privacy and comply with GDPR.
By continuing, you accept our Privacy Policy.
Cookie details
Cookie Information
Essential Cookies
JMaths uses only essential cookies required for the platform to function properly:
Session Cookies
Keep you logged in while using the platform. Deleted when you close your browser.
CSRF Protection
Prevent cross-site request forgery attacks for your security.
Performance Cache
Help load pages faster by storing temporary data.
Privacy-Friendly Analytics
Plausible Analytics
We use Plausible, a privacy-first analytics tool that doesn't use cookies and doesn't collect any personal information. It only tracks anonymous page visits to help improve the platform.
Privacy First: Our analytics are fully GDPR, COPPA, and FERPA compliant. No personal data is collected, and no cookies are used for tracking. We do not use advertising or third-party tracking cookies.
Managing Cookies
You can control cookies through your browser settings, but disabling essential cookies
may prevent the platform from working correctly. For educational use, we recommend
keeping these essential cookies enabled.