Why Maxima & Minima Matter in Real Life?

Ever wondered how a smartphone decides the best battery‑saving mode, or how a company chooses the price that gives the highest profit? Both answers hide a simple math idea: finding the highest or lowest points of a curve. That’s exactly what maxima and minima are about.

In simple words, a maximum is the highest point on a graph, like the top of a hill, and a minimum is the lowest point, like a valley. Using the derivative – the tool that tells us how steep a curve is – we can locate those hills and valleys quickly.

What Are Maxima and Minima?

A local maximum (or relative maximum) is a point where the function’s value is bigger than every value right next to it. Think of standing on a small hill; you’re higher than the ground around you, but there might be taller hills elsewhere.

A local minimum (or relative minimum) is the opposite – a point lower than all nearby points, like a dip in a road.

If a point is the biggest (or smallest) over the entire domain of the function, we call it a global (or absolute) maximum/minimum. Imagine the tallest mountain on Earth – that’s a global maximum.

How Derivatives Help

The derivative of a function, written as f'(x), measures the slope of the curve at each point – just like checking how steep a road feels under your bike wheels. When the slope is zero, the road is flat for an instant, which is where a hilltop or a valley can appear.

So, the basic idea is:

  • Find where f'(x)=0 (these are called critical points).
  • Decide whether each critical point is a max, a min, or just a flat spot.

Step‑by‑Step Method to Find Extrema

graph TD A[Find f'(x)] --> B[Set f'(x)=0] B --> C[Solve for critical points] C --> D{Second derivative test?} D -->|f''(x)>0| E[Local minimum] D -->|f''(x)|f''(x)=0| G[Use first‑derivative test]

Follow the flowchart above. The second derivative (written f''(x)) tells us how the slope itself is changing. If the second derivative is positive, the curve is curving upward like a smile – that means a minimum. If it’s negative, the curve bends downward like a frown – that means a maximum. When the second derivative is zero, we fall back on the first‑derivative test, which looks at the sign of f'(x) before and after the critical point.

Worked Example 1

Find the local maxima and minima of f(x)=x^3-3x^2+2.

1. Compute the first derivative: f'(x)=3x^2-6x.

2. Set it to zero: 3x^2-6x=0 ⇒ 3x(x-2)=0 ⇒ x=0 or x=2.

3. Compute the second derivative: f''(x)=6x-6.

4. Test each critical point:

  • At x=0, f''(0)= -6 (negative) → local maximum.
  • At x=2, f''(2)= 6 (positive) → local minimum.

5. Find the function values: f(0)=2, f(2)= -2. So the graph climbs to a peak at (0,2) and dips to a valley at (2,-2).

Worked Example 2 (Using First‑Derivative Test)

Find extrema of g(x)=x^4-4x^3.

1. g'(x)=4x^3-12x^2 =4x^2(x-3). Critical points: x=0 (double root) and x=3.

2. Because g''(x)=12x^2-24x, g''(0)=0, the second‑derivative test is inconclusive at x=0. Use the first‑derivative test.

3. Choose test points: left of 0 (e.g., -1), between 0 and 3 (e.g., 1), right of 3 (e.g., 4). Evaluate sign of g'(x):

  • g'(-1)=4(-1)^2(-4)= -16 → negative.
  • g'(1)=4(1)^2(-2)= -8 → negative.
  • g'(4)=4(16)(1)= 64 → positive.

Sign changes from negative to positive at x=3, so x=3 is a local minimum. No sign change at x=0, so it’s a point of inflection (neither max nor min).

Quick Comparison: First‑Derivative Test vs Second‑Derivative Test

AspectSecond‑Derivative TestFirst‑Derivative Test
When to useWhen f''(x) ≠ 0 at the critical pointWhen f''(x)=0 or is hard to compute
What it checksCurvature sign (upward or downward)Sign of f'(x) on either side of the point
ResultImmediate classification as max or minMay need a sign table, but always works

Common Pitfalls to Avoid

  • Skipping the step of checking endpoints – for a closed interval, the absolute max/min could sit at the ends.
  • Assuming f'(x)=0 always gives a max or min – sometimes it’s just a flat spot (point of inflection).
  • Forgetting to simplify the derivative before solving – messy algebra can hide easy solutions.

📝 Likely Exam Questions

  1. Find the local maximum and minimum of f(x)=2x^3-9x^2+12x+1.
    Model answer: f'(x)=6x^2-18x+12=6(x^2-3x+2)=6(x-1)(x-2). Critical points x=1,2. f''(x)=12x-18. f''(1)=-6 → max at (1, f(1)=6). f''(2)=6 → min at (2, f(2)=5).
  2. Determine the absolute maximum and minimum of h(x)=x^2-4x on the interval [0,5].
    Model answer: h'(x)=2x-4=0 ⇒ x=2 (critical). h(0)=0, h(2)=-4, h(5)=5. Absolute minimum = -4 at x=2, absolute maximum = 5 at x=5.
  3. Explain why the point (0,0) on y=x^3 is not a maximum or minimum.
    Model answer: y'=3x^2 gives y'(0)=0, but y''=6x → y''(0)=0, so second‑derivative test fails. The sign of y' is positive on both sides, indicating the curve passes through with no change in direction – a point of inflection.
#ISC#Class 12#Mathematics#Calculus#Maxima and Minima