Skip to main content
Contents
Dark Mode Prev Up Next
\(\newcommand{\markedPivot}[1]{\boxed{#1}}
\newcommand{\IR}{\mathbb{R}}
\newcommand{\IC}{\mathbb{C}}
\renewcommand{\P}{\mathcal{P}}
\renewcommand{\Im}{\operatorname{Im}}
\newcommand{\RREF}{\operatorname{RREF}}
\newcommand{\vspan}{\operatorname{span}}
\newcommand{\setList}[1]{\left\{#1\right\}}
\newcommand{\setBuilder}[2]{\left\{#1\,\middle|\,#2\right\}}
\newcommand{\unknown}{\,{\color{gray}?}\,}
\newcommand{\drawtruss}[2][1]{
\begin{tikzpicture}[scale=#1, every node/.style={scale=#1}]
\draw (0,0) node[left,magenta]{C} --
(1,1.71) node[left,magenta]{A} --
(2,0) node[above,magenta]{D} -- cycle;
\draw (2,0) --
(3,1.71) node[right,magenta]{B} --
(1,1.71) -- cycle;
\draw (3,1.71) -- (4,0) node[right,magenta]{E} -- (2,0) -- cycle;
\draw[blue] (0,0) -- (0.25,-0.425) -- (-0.25,-0.425) -- cycle;
\draw[blue] (4,0) -- (4.25,-0.425) -- (3.75,-0.425) -- cycle;
\draw[thick,red,->] (2,0) -- (2,-0.75);
#2
\end{tikzpicture}
}
\newcommand{\trussNormalForces}{
\draw [thick, blue,->] (0,0) -- (0.5,0.5);
\draw [thick, blue,->] (4,0) -- (3.5,0.5);
}
\newcommand{\trussCompletion}{
\trussNormalForces
\draw [thick, magenta,<->] (0.4,0.684) -- (0.6,1.026);
\draw [thick, magenta,<->] (3.4,1.026) -- (3.6,0.684);
\draw [thick, magenta,<->] (1.8,1.71) -- (2.2,1.71);
\draw [thick, magenta,->] (1.6,0.684) -- (1.5,0.855);
\draw [thick, magenta,<-] (1.5,0.855) -- (1.4,1.026);
\draw [thick, magenta,->] (2.4,0.684) -- (2.5,0.855);
\draw [thick, magenta,<-] (2.5,0.855) -- (2.6,1.026);
}
\newcommand{\trussCForces}{
\draw [thick, blue,->] (0,0) -- (0.5,0.5);
\draw [thick, magenta,->] (0,0) -- (0.4,0.684);
\draw [thick, magenta,->] (0,0) -- (0.5,0);
}
\newcommand{\trussStrutVariables}{
\node[above] at (2,1.71) {\(x_1\)};
\node[left] at (0.5,0.866) {\(x_2\)};
\node[left] at (1.5,0.866) {\(x_3\)};
\node[right] at (2.5,0.866) {\(x_4\)};
\node[right] at (3.5,0.866) {\(x_5\)};
\node[below] at (1,0) {\(x_6\)};
\node[below] at (3,0) {\(x_7\)};
}
\newcommand{\N}{\mathbb N}
\newcommand{\Z}{\mathbb Z}
\newcommand{\Q}{\mathbb Q}
\newcommand{\R}{\mathbb R}
\DeclareMathOperator{\arcsec}{arcsec}
\DeclareMathOperator{\arccot}{arccot}
\DeclareMathOperator{\arccsc}{arccsc}
\newcommand{\tuple}[1]{\left\langle#1\right\rangle}
\newcommand{\lt}{<}
\newcommand{\gt}{>}
\newcommand{\amp}{&}
\definecolor{fillinmathshade}{gray}{0.9}
\newcommand{\fillinmath}[1]{\mathchoice{\colorbox{fillinmathshade}{$\displaystyle \phantom{\,#1\,}$}}{\colorbox{fillinmathshade}{$\textstyle \phantom{\,#1\,}$}}{\colorbox{fillinmathshade}{$\scriptstyle \phantom{\,#1\,}$}}{\colorbox{fillinmathshade}{$\scriptscriptstyle\phantom{\,#1\,}$}}}
\)
Section 3.4 Extreme Values (AD4)
Learning Outcomes
Use the Extreme Value Theorem to find the global maximum and minimum values of a continuous function on a closed interval.
Subsection 3.4.1 Activities
Example 3.4.2 .
Consider the familiar example of a parabolic function such as
\(s(t) = -16t^2 + 32t + 48\text{.}\) This function represents the height of an object tossed vertically straight up: its maximum value occurs at the vertex of the parabola and represents the greatest height the object reaches. This maximum value is an especially important point on the graph and we can notice that the function changes from increasing to decreasing at this point.
Figure 68. The graph of \(s(t) = -16t^2 + 32t + 48\)
Definition 3.4.3 .
We say that
\(f(x)\) has a
global maximum at
\(x=c\) provided that
\(f(c)\geq f(x)\) for all
\(x\) in the domain of the function. We also say that
\(f(c)\) is a global maximum value for the function. On the other hand, we say that
\(f(x)\) has a
global minimum at
\(x=c\) provided that
\(f(c)\leq f(x)\) for all
\(x\) in the domain of the function. We also say that
\(f(c)\) is a global minimum value for the function. The global maxima and minima are also known as the
global extrema (or extreme values or absolute extrema) of the function.
Activity 3.4.4 .
According to DefinitionΒ 3.4.3 , which of the following statements best describes the global extrema of the function in FigureΒ 68 ?
The global maximum is
\(t = 1\text{,}\) because this is where the function goes from increasing to decreasing.
The global maximum is
\(s(1) = 64\text{,}\) because
\(s(t)\leq 64\) for every other input
\(t\text{.}\)
The graph has two global minima at the endpoints because the endpoints must be global extrema.
The graph has no global minimum.
Answer .
B: The global maximum is
\(s(1) = 64\text{,}\) because
\(s(t)\leq 64\) for every other input
\(t\text{.}\)
Theorem 3.4.6 . Extreme Value Theorem.
If
\(f\) is continuous on a closed interval
\([a,b]\text{,}\) then
\(f\) has both a global maximum and a global minimum on the interval.
Activity 3.4.7 .
For each of the following figures, decide where the global extrema are located.
(a)
Answer .
The global maximum is at
\(x = \dfrac{\pi}{2}\) and the global minimum is at
\(x = \dfrac{3\pi}{2}\text{.}\)
(b)
Answer .
The global maximum is at
\(x = 0\) and the global minimum is at
\(x = 3\text{.}\)
(c)
Answer .
The global maximum occurs at about
\(x = 1.25\) and the global minimum occurs at about
\(x = 2.25\text{.}\)
(d)
Answer .
The global maximum occurs at
\(x = 3\) and the global minimum occurs at
\(x = 1\text{.}\)
Activity 3.4.8 .
The Extreme Value Theorem (EVT) guarantees a global maximum and a global minimum for which of the following?
\(f(x)=\dfrac{x^{2}}{x^{2}-4x-5}\) on \([-5,0]\text{.}\)
\(f(x)=\dfrac{x^{2}}{x^{2}-4x-5}\) on \([0,4]\text{.}\)
\(f(x)=\dfrac{x^{2}}{x^{2}-4x-5}\) on \([4,6]\text{.}\)
\(f(x)=\dfrac{x^{2}}{x^{2}-4x-5}\) on \([6,10]\text{.}\)
Activity 3.4.9 .
For the following activity, draw a sketch of a function that has the following properties.
(a)
The function is continuous and has an global minimum but no global maximum.
(b)
The function is continuous and has an global maximum but no global minimum.
Definition 3.4.10 .
We say that
\(x=c\) is a
critical point (or critical number) of
\(f(x)\) if
\(x=c\) is in the domain of
\(f(x)\) and either
\(f'(c) = 0\) or
\(f'(c)\) does not exist.
Activity 3.4.11 .
Which of the following are critical numbers for
\(f(x) = \frac{1}{3}x^3 - 2x + 2\text{?}\)
\(x = \sqrt{2}\) and \(x = -\sqrt{2}\text{.}\)
\(x = \sqrt{2}\text{.}\)
\(x = 2\) and \(x = 0\text{.}\)
\(x = 2\text{.}\)
Answer .
A:
\(x = \sqrt{2}\) and
\(x = -\sqrt{2}\)
Activity 3.4.13 .
What are the global extrema for
\(f(x) = 3x^4 - 4x^3\) on
\([-1,2]\text{.}\)
Global maximum is when \(x = 0\) and global minimum when \(x = 1\text{.}\)
Global maximum is when \(x = 2\) and global minimum when \(x = -1\text{.}\)
Global maximum is when \(x = 2\) and global minimum when \(x = 1\text{.}\)
Global maximum is when \(x = 0\) and global minimum when \(x = -1\text{.}\)
Answer .
C: Global maximum is when
\(x = 2\) and global minimum when
\(x = 1\text{.}\)
Activity 3.4.14 .
What are the global extrema for
\(f(x) = x\sqrt{4-x}\) on
\([-2,4]\text{.}\)
Global maximum is when \(x = -2\) and global minimum when \(x = \frac{8}{3}\text{.}\)
Global maximum is when \(x = 4\) and global minimum when \(x = \frac{8}{3}\text{.}\)
Global maximum is when \(x = \frac{8}{3}\) and global minimum when \(x = -2\text{.}\)
Global maximum is when \(x = 4\) and global minimum when \(x = -2\text{.}\)
Answer .
C: Global maximum is when
\(x = \frac{8}{3}\) and global minimum when
\(x = -2\text{.}\)
Activity 3.4.15 .
Explain how to find the global minimum and global maximum values of the function
\(f(x)=-2 \, x^{3} + 18 \, x^{2} + 42 \, x + 33\) on the interval
\([-2,2]\text{.}\)
Answer .
The global extrema may occur at these
\(x\) -values:
\(-2, -1, 2\text{.}\)
\(\displaystyle f(-2)=37\)
\(\displaystyle f(-1)=11\)
\(\displaystyle f(2)=173\)
Thus the global minimum is
\(11\) and the global maximum is
\(173\text{.}\)
(The value
\(f(7)=523\) is ignored as
\(7\) isnβt in the given interval.)
Activity 3.4.16 .
In this problem you will consider the function \(g(x)\text{.}\)
\begin{equation*}
g(x) = \left\{ \begin{array}{ll}
x^3-3x & x \lt 0\\
x^2 -4x +2 & x\geq 0
\end{array}
\right.
\end{equation*}
(a)
What can you say about the point
\(x=0\text{?}\)
Answer .
The function is discontinuous at this point, so the derivative does not exist; thus, 0 is a critical point.
(b)
In addition to \(x=0\text{,}\) find the other two critical points. What are the critical points of \(g(x)\text{?}\)
\(\displaystyle x=0, \, x=1, \, x= 2\)
\(\displaystyle x=0, \, x=-1, \, x= 2\)
\(\displaystyle x=0, \, x=-1, \, x=-2\)
\(\displaystyle x=0, \, x=1, \, x= -2\)
Answer .
B:
\(x=0, \, x=-1, \, x= 2\)
(c)
Can you use the Closed Interval Method on
\([-4,-1]\text{?}\) If you can, find the global max and min. If you canβt, explain why.
Answer .
The global maximum is at
\(x = -1\) and the global minimum is at
\(x = -4\text{.}\)
(d)
Can you use the Closed Interval Method on
\([1,4]\text{?}\) If you can, find the global max and min. If you canβt, explain why.
Answer .
The global maximum is at
\(x=4\) and the global minimum is at
\(x = 2\text{.}\)
(e)
Can you use the Closed Interval Method on
\([-1,1]\text{?}\) If you can, find the global max and min. If you canβt, explain why.
Answer .
No. The function is not continuous on the interval.
Subsection 3.4.2 Videos
Figure 69. Video for AD4
Subsection 3.4.3 Exercises