Finding turning points of a function using differentiation involves a systematic process of calculus to identify where the function's gradient changes direction, indicating a local maximum or minimum.
What are Turning Points?
A turning point, also known as a critical point or stationary point, is a point on a function's graph where its gradient (slope) is zero. At these points, the curve momentarily flattens out before changing direction. Specifically:
- Local Maximum: The gradient changes from positive to negative.
- Local Minimum: The gradient changes from negative to positive.
For a polynomial function of degree n
, there can be up to (n-1)
turning points. For example, a quadratic function (degree 2) has at most one turning point, while a cubic function (degree 3) can have up to two.
Steps to Find Turning Points Using Differentiation
The general method involves two main steps: finding the critical points using the first derivative and then determining their nature (maximum or minimum) using either the second derivative test or the first derivative test.
Step 1: Find the First Derivative and Critical Points
The first step is to differentiate the given function, f(x)
, to find its first derivative, f'(x)
. The x
-coordinates of any turning points are found by setting this derivative equal to zero and solving for x
.
- Differentiate the function: Calculate
f'(x)
. - Set the first derivative to zero: Set
f'(x) = 0
. - Solve for
x
: The values ofx
obtained are thex
-coordinates of the critical points, which are potential turning points.
Step 2: Determine the Nature of the Turning Points (Local Maxima or Minima)
Once you have the x
-coordinates of the critical points, you need to determine whether each point is a local maximum or a local minimum. This can be done using either the second derivative test or the first derivative test.
Method A: Second Derivative Test (Preferred for Simplicity)
- Calculate the second derivative: Find
f''(x)
. - Substitute
x
values: Substitute eachx
-value (from Step 1) intof''(x)
.- If
f''(x) > 0
, the point is a local minimum. - If
f''(x) < 0
, the point is a local maximum. - If
f''(x) = 0
, the test is inconclusive. You must use the first derivative test (Method B) or other means to determine the nature of the point. This often indicates a point of inflection.
- If
Here’s a quick reference for the Second Derivative Test:
Value of f''(x) |
Nature of Turning Point |
---|---|
f''(x) > 0 |
Local Minimum |
f''(x) < 0 |
Local Maximum |
f''(x) = 0 |
Inconclusive |
Method B: First Derivative Test (Alternative or when Second Derivative Test is Inconclusive)
- Choose test points: For each
x
-value from Step 1, choose one test point slightly to its left and one slightly to its right. - Substitute test points into
f'(x)
:- If
f'(x)
changes from positive to negative asx
increases through the critical point, it is a local maximum. - If
f'(x)
changes from negative to positive asx
increases through the critical point, it is a local minimum. - If
f'(x)
does not change sign (e.g., positive to positive or negative to negative), it is generally a point of inflection, not a turning point.
- If
Step 3: Find the Corresponding y
-coordinates
Finally, substitute the x
-coordinates of the confirmed turning points back into the original function f(x)
to find their corresponding y
-coordinates. This gives you the complete (x, y)
coordinates of each turning point.
Example: Finding Turning Points for a Cubic Function
Let's find the turning points for the function f(x) = x^3 - 3x^2 + 2
.
Step 1: Find the First Derivative and Critical Points
-
Differentiate
f(x)
:
f'(x) = 3x^2 - 6x
-
Set
f'(x) = 0
:
3x^2 - 6x = 0
-
Solve for
x
:
3x(x - 2) = 0
This givesx = 0
orx = 2
. These are our critical points.
Step 2: Determine the Nature of the Turning Points (Using Second Derivative Test)
-
Calculate the second derivative:
f''(x) = 6x - 6
-
Substitute
x = 0
:
f''(0) = 6(0) - 6 = -6
Sincef''(0) < 0
,x = 0
corresponds to a local maximum. -
Substitute
x = 2
:
f''(2) = 6(2) - 6 = 12 - 6 = 6
Sincef''(2) > 0
,x = 2
corresponds to a local minimum.
Step 3: Find the Corresponding y
-coordinates
-
For
x = 0
(local maximum):
Substitutex = 0
into the original functionf(x) = x^3 - 3x^2 + 2
:
f(0) = (0)^3 - 3(0)^2 + 2 = 2
The local maximum is at(0, 2)
. -
For
x = 2
(local minimum):
Substitutex = 2
into the original functionf(x) = x^3 - 3x^2 + 2
:
f(2) = (2)^3 - 3(2)^2 + 2 = 8 - 3(4) + 2 = 8 - 12 + 2 = -2
The local minimum is at(2, -2)
.
Therefore, the turning points of the function f(x) = x^3 - 3x^2 + 2
are a local maximum at (0, 2)
and a local minimum at (2, -2)
.