4

Determine the local maximum and local minimum points for the function $f(x) = 2x^3 + 3x^2 - 12x + 3$.

I know that the local maximum and local minimum points largest and smallest value of the function, but I do not understand how to find the points from the equation. Assistance would be greatly appreciated.

N. F. Taussig
  • 76,571
Kate.K
  • 481
  • 1
    Do you know what's the role of the function's derivative in this kind of problems? – DonAntonio May 16 '16 at 23:12
  • Here's an example with a simpler polynomial but the idea is exactly the same. –  May 16 '16 at 23:18
  • It's the change in x and y.. But how would i use it to solve this question @Joanpemo – Kate.K May 16 '16 at 23:19
  • See the link I provided for how to solve it. And here's the same example done a different way. –  May 16 '16 at 23:21
  • 1
    Fermat's theorem tells us that if a differentiable function has a local extreme point at $;(a, f(a));$ , and it doesn't matter whether it is a local maximum or a local minimum, then $;f'(a)=0;$ , so the first thing is to calculate the function's derivative and then equal to zero and find this last equation's solutions...without this I can't see how else can you solve this, and you tagged your question @calculus@ . – DonAntonio May 16 '16 at 23:21
  • Fermat's theorem is not a part of our curriculum. I'm taking grade 12 calculus. But the video is helping me @tilper – Kate.K May 16 '16 at 23:24
  • I don't quite get it. I have a similar homework question. – Michelle May 16 '16 at 23:27
  • 1
    @Kate.K that theorem is definitely part of your curriculum but it's highly unlikely that it's being called Fermat's theorem. I have a lot of exposure to calculus and I've only heard "Fermat's theorem" twice, one of which is here in this thread now. I don't think that name is commonly used in this context in certain parts of the world. Glad to hear the video is helping! –  May 16 '16 at 23:29
  • @Michelle see my links earlier in the thread –  May 16 '16 at 23:29
  • I think i get it, but the examples in the video are quite different from this one. – Michelle May 16 '16 at 23:45

3 Answers3

2

To find the critical points of $f$, you should differentiate and set the derivative equal to 0.

$f(x) = 2x^3 + 3x^2 - 12x + 3 \implies f'(x) = 6x^2 + 6x - 12$

Then, $f'(x) = 0 \iff 6x^2 + 6x- 12 = 0 \iff x^2 +x -2$.

Using Bhaskara, you find the roots of this polynomial ($-2$ and $1$).

Now evaluate $f(-2)$ and $f(1)$ to decide which one is the maximum and which one is the minimum.

You should also note that

$\lim_{x \rightarrow -\infty} f(x) = -\infty$ and $\lim_{x \rightarrow +\infty} f(x) = +\infty$

Unmitigated
  • 105
  • 1
  • 5
  • 2
    You meant to write $f'(x) = 0 \iff 6x^2 + 6x - 12 = 0 \iff x^2 + x - 2 \color{red}{= 0}$. In English, we say differentiate rather than derivate. – N. F. Taussig May 17 '16 at 10:01
1

I know that the local maximum and local minimum points largest and smallest value of the function ...

Actually, a local maximum or minimum occurs, respectively, at a point where the function reaches its maximum or minimum value in an open interval.

Definition. A function $f$ is said to have a relative (or local) maximum at a point $c$ in an open interval $(a, b)$ if $f(x) \leq f(c)$ for each $x \in (a, b)$. A function $f$ is said to have a relative (or local) minimum at a point $c$ in an open interval $(a, b)$ if $f(x) \geq f(c)$ for each $x \in (a, b)$. A relative maximum or minimum is called a relative extremum of the function.

The function does not necessarily reach its maximum or minimum value at a relative extremum.

For example, the function

$$g(x) = x + \frac{1}{x}$$

has a relative maximum at $x = -1$ since $g(x) \leq g(-1) = -2$ for $x \in (-\infty, 0)$ and a relative minimum at $x = 1$ since $g(x) \geq g(1) = 2$ for $x \in (0, \infty)$. Since $g(-1) < g(1)$, the relative maximum $x = -1$ is not an absolute (global) maximum of the function $g$. Similarly, since $g(1) > g(-1)$, the relative minimum $x = 1$ is not an absolute (global) minimum of the function $g$.

rational_function_graph

... I do not understand how to find the points from the equation.

The relative extrema of a function $f$ occur at points where $f'(x) = 0$ or $f'(x)$ does not exist. Points at which $f'(x) = 0$ are called critical points.

Differentiating the function $f(x) = 2x^3 + 3x^2 - 12x + 3$ yields \begin{align*} f'(x) & = 6x^2 + 6x - 12\\ & = 6(x^2 + x - 2)\\ & = 6(x + 2)(x - 1) \end{align*}
Since $f'$ is a polynomial function, the derivative is defined everywhere. Setting the derivative equal to zero yields the critical points $x = -2$ or $x = 1$.

When the derivative is positive in an interval, the function is increasing over that interval. When the derivative is negative in an interval, the function is decreasing over that interval.

Since the derivative $f'(x) = 6(x + 2)(x - 1)$ is a quadratic polynomial, it is continuous. Thus, it can only change sign at a point where it is equal to zero. Thus, the derivative can only change sign at the critical points $x = -2$ and $x = 1$.

In the interval $(-\infty, -2)$, $f'(x) = 6(x + 2)(x - 1) > 0$ as you can tell by substituting the test point $-3$ for $x$. Hence, the function $f$ is increasing on the interval $(-\infty, -2]$.

In the interval $(-2, 1)$, $f'(x) < 0$ as you can tell by substituting the test point $0$ for $x$. Hence, the function $f$ is decreasing on the interval $[-2, 1]$.

In the interval $(1, \infty)$, $f'(x) = 6(x + 2)(x - 1) > 0$ as you can tell by substituting the test point $2$ for $x$. Thus, the function $f$ is increasing on the interval $[1, \infty)$.

We showed above that $f$ is increasing on $(-\infty, -2]$ and decreasing on $[-2, 1]$. Since the function increases to the left of $-2$, is defined at $x = -2$, and decreases to the right of $-2$, the function has a relative maximum at $x = -2$.

We showed above that $f$ is decreasing on the interval $[-2, 1]$ and increasing on $[1, \infty)$. Since $f$ is decreasing to the left of $1$, defined at $x = 1$, and increasing to the right of $1$, $f$ has a relative minimum at $x = 1$.

We have applied the First Derivative Test.

First Derivative Test. Let $f$ be a function that is continuous on $[a, b]$ and differentiable on $(a, b)$ except possibly at a point $c$.
(a) If $f'(x) > 0$ for all $x < c$ and $f'(x) < 0$ for all $x > c$, then $f$ has a relative maximum at $c$.
(b) If $f'(x) < 0$ for all $x < c$ and $f'(x) > 0$ for all $x > c$, then $f$ has a relative minimum at $c$.

Since $$\lim_{x \to \infty} f(x) = \infty$$ and $$\lim_{x \to -\infty} f(x) = -\infty$$ the relative extrema are not absolute extrema.

N. F. Taussig
  • 76,571
0

If the function $f$ is differentiable, the extrema-- maxima, minima and saddle points-- occur when $f'(x) = 0$.

If at those points if $f''(x) > 0$, $(x,f(x))$ is a local minimum. If $f''(x) < 0$, $(x,f(x))$ is a local maximum. If $f''(x) = 0$, $(x, f(x))$ is a saddle point (which might, or might not, be a maximum of minimum or neither).

So

1)find out what $f'(x)$ is. (It will be a quadradic).

2)Solve for $f'(x) = 0$. (There will be two solutions, $x_0$ and $x_2$.)

3) find out what $f''(x)$ is. (It will be a linear equation.)

4) Plug in $f''(x_0)$ and $f''(x_1)$ and see whether they are positive, negative, or zero.

fleablood
  • 124,253