ConceptComplete

Applications of Derivatives - Core Definitions

Critical points and extrema are central to optimization problems across mathematics, science, and engineering. Understanding where functions achieve their maximum and minimum values is essential for modeling real-world phenomena.

DefinitionCritical Points

A critical point of a function ff is a point cc in the domain of ff where either:

  1. fβ€²(c)=0f'(c) = 0, or
  2. fβ€²(c)f'(c) does not exist

Critical points are candidates for local extrema, though not every critical point corresponds to an extremum.

DefinitionLocal and Absolute Extrema

Let ff be defined on a domain DD.

  • ff has a local maximum at cc if f(c)β‰₯f(x)f(c) \geq f(x) for all xx in some open interval containing cc
  • ff has a local minimum at cc if f(c)≀f(x)f(c) \leq f(x) for all xx in some open interval containing cc
  • ff has an absolute maximum at cc if f(c)β‰₯f(x)f(c) \geq f(x) for all x∈Dx \in D
  • ff has an absolute minimum at cc if f(c)≀f(x)f(c) \leq f(x) for all x∈Dx \in D

Collectively, maxima and minima are called extrema.

TheoremFermat's Theorem

If ff has a local extremum at cc and fβ€²(c)f'(c) exists, then fβ€²(c)=0f'(c) = 0.

Remark

Fermat's Theorem provides a necessary condition for extrema: they can only occur at critical points. However, it is not sufficientβ€”the function f(x)=x3f(x) = x^3 has fβ€²(0)=0f'(0) = 0, but x=0x = 0 is neither a local maximum nor minimum.

ExampleFinding Critical Points

Find all critical points of f(x)=x3βˆ’6x2+9x+1f(x) = x^3 - 6x^2 + 9x + 1.

First, compute the derivative: fβ€²(x)=3x2βˆ’12x+9=3(x2βˆ’4x+3)=3(xβˆ’1)(xβˆ’3)f'(x) = 3x^2 - 12x + 9 = 3(x^2 - 4x + 3) = 3(x - 1)(x - 3)

Setting fβ€²(x)=0f'(x) = 0: 3(xβˆ’1)(xβˆ’3)=03(x - 1)(x - 3) = 0

The critical points are x=1x = 1 and x=3x = 3. Since ff is a polynomial, fβ€²f' exists everywhere, so these are the only critical points.

DefinitionFirst Derivative Test

Let cc be a critical point of a continuous function ff.

  • If fβ€²f' changes from positive to negative at cc, then ff has a local maximum at cc
  • If fβ€²f' changes from negative to positive at cc, then ff has a local minimum at cc
  • If fβ€²f' does not change sign at cc, then ff has neither a maximum nor minimum at cc
ExampleApplying the First Derivative Test

Classify the critical points of f(x)=x3βˆ’6x2+9x+1f(x) = x^3 - 6x^2 + 9x + 1.

We found critical points at x=1x = 1 and x=3x = 3. Test the sign of fβ€²(x)=3(xβˆ’1)(xβˆ’3)f'(x) = 3(x-1)(x-3):

  • For x<1x < 1: choose x=0x = 0, so fβ€²(0)=3(βˆ’1)(βˆ’3)=9>0f'(0) = 3(βˆ’1)(βˆ’3) = 9 > 0 (increasing)
  • For 1<x<31 < x < 3: choose x=2x = 2, so fβ€²(2)=3(1)(βˆ’1)=βˆ’3<0f'(2) = 3(1)(βˆ’1) = βˆ’3 < 0 (decreasing)
  • For x>3x > 3: choose x=4x = 4, so fβ€²(4)=3(3)(1)=9>0f'(4) = 3(3)(1) = 9 > 0 (increasing)

Therefore:

  • At x=1x = 1: fβ€²f' changes from positive to negative, so ff has a local maximum
  • At x=3x = 3: fβ€²f' changes from negative to positive, so ff has a local minimum

Understanding critical points and extrema is fundamental to optimization, allowing us to find maximum efficiency, minimum cost, or optimal design parameters in countless applications.