Application of Derivatives: Edge Cases and Subtle Traps (9)

hard 3 min read

Question

Find the absolute maximum and minimum of f(x)=x33x+2f(x) = x^3 - 3x + 2 on the interval [2,2][-2, 2].

Solution — Step by Step

f(x)=3x23=3(x21)=3(x1)(x+1)f'(x) = 3x^2 - 3 = 3(x^2 - 1) = 3(x-1)(x+1)

Setting f(x)=0f'(x) = 0: x=±1x = \pm 1. Both lie inside [2,2][-2, 2].

This is where students slip. The absolute max/min on a closed interval occurs at either a critical point or an endpoint.

  • f(2)=8+6+2=0f(-2) = -8 + 6 + 2 = 0
  • f(1)=1+3+2=4f(-1) = -1 + 3 + 2 = 4
  • f(1)=13+2=0f(1) = 1 - 3 + 2 = 0
  • f(2)=86+2=4f(2) = 8 - 6 + 2 = 4

Maximum value =4= 4 (achieved at both x=1x = -1 and x=2x = 2). Minimum value =0= 0 (achieved at both x=2x = -2 and x=1x = 1).

Final answer: Absolute max =4= 4, absolute min =0= 0.

Why This Works

The Extreme Value Theorem guarantees that a continuous function on a closed interval attains its absolute max and min. The candidates are critical points (where f(x)=0f'(x) = 0 or doesn’t exist) and the endpoints. Compare values at all candidates — pick the largest and smallest.

The classic mistake: assuming the maximum must be at a critical point. On a closed interval, endpoints can win. Here, f(2)=4f(2) = 4 ties with f(1)=4f(-1) = 4 — both are global maxima.

Alternative Method

Use the second derivative test to classify critical points. f(x)=6xf''(x) = 6x. At x=1x = -1, f(1)=6<0f''(-1) = -6 < 0 — local max. At x=1x = 1, f(1)=6>0f''(1) = 6 > 0 — local min. Then still check endpoints. The 2nd derivative test only classifies LOCAL extrema, not absolute ones.

The biggest trap: students find critical points and stop, forgetting to check endpoints. On [2,2][-2, 2], the endpoint x=2x = 2 achieves the max. Always evaluate at endpoints — that’s a free 2-3 marks in CBSE boards.

Common Mistake

Another subtle issue: assuming the max is at the largest critical point. Here x=1x = -1 (local max) gives f=4f = 4, but x=1x = 1 (local min) gives f=0f = 0. The behaviour depends on the function’s shape, not the position of the critical point on the number line.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next