Lagrange Multipliers with One Constraint Examples 2

Lagrange Multipliers with One Constraint Examples 2

Recall from The Method of Lagrange Multipliers page that with the Method of Lagrange Multipliers that if we have a function $z = f(x, y)$ subject to the constraint $g(x, y) = C$, then if extreme values exist and $\nabla g (x, y) \neq (0, 0)$ on the level curve $g(x, y) = C$ then we can obtain the critical points subject to the constraint by solving the system of equations below and then comparing the values of $f$ at these critical points.

(1)
\begin{align} \quad \nabla f(x, y) = \lambda \nabla g(x, y) \\ \quad g(x, y) = C \end{align}

Furthermore, if we have a function $w = f(x, y, z)$ subject to the constraint $g(x, y, z) = C$, then if extreme values exist and $\nabla g(x, y, z) \neq (0,0,0)$ on the level surface $g(x, y, z) = C$, then we can find these extreme values by solving the system of equations below and then comparing the values of $f$ at these critical points.

(2)
\begin{align} \quad \nabla f(x, y, z) = \lambda g(x, y, z) \\ \quad g(x, y, z) = C \end{align}

We will now look at some more examples of solving problems regarding Lagrange multipliers.

Example 1

Find the maximum and minimum values of the function $f(x, y, z) = xyz$ subject to the constraint $x^2 + y^2 + z^2 = 6$ using Lagrange multipliers.

Let $g(x, y, z) = x^2 + y^2 + z^2 = 6$. Computing the necessary partial derivatives and we have that:

(3)
\begin{align} \quad yz = \lambda (2x) \\ \quad xz = \lambda (2y) \\ \quad xy = \lambda (2z) \\ \quad x^2 + 2y^2 + 3z^2 = 6 \end{align}

Now multiply the first equation by $x$, the second equation by $y$, and the third equation by $z$ to get:

(4)
\begin{align} \quad xyz = \lambda 2x^2 \\ \quad xyz = \lambda 2y^2 \\ \quad xyz = \lambda 2z^2 \\ \quad x^2 + y^2 + z^2 = 6 \end{align}

Thus we can eliminate the multiplier $\lambda$ immediately to get that $x^2 = y^2 = z^2$. Thus, substituting $y^2 = x^2$ and $z^2 = x^2$ into the fourth equation and we get that:

(5)
\begin{align} \quad x^2 + x^2 + x^2 = 6 \\ \quad 3x^2 = 6 \\ \quad x^2 = 2 \\ \quad x = \pm \sqrt{2} \end{align}

Thus the points of interest for this problem are $\left ( \pm \sqrt{2}, \pm \sqrt{2}, \pm \sqrt{2} \right )$. It's not hard to see that the maximum of $f(x, y, z) = xyz$ is $2 \sqrt{2}$, and the minimum of $f(x, y, z)$ is $-2 \sqrt{2}$.

Example 2

Find the maximum and minimum values of the function $f(x, y, z) = xyz$ subject to the constraint $x^2 + 2y^2 + 3z^2 = 6$ using Lagrange multipliers.

This problem is very similar to example 1, however, it is a tad more difficult. Let $g(x, y, z) = x^2 + 2y^2 + 3z^2 = 6$. In computing the necessary partial derivatives we get that:

(6)
\begin{align} \quad yz = \lambda (2x) \\ \quad xz = \lambda (4y) \\ \quad xy = \lambda (6z) \\ x^2 + 2y^2 + 3z^2 = 6 \end{align}

Note that from these equations that $x \neq 0$, $y \neq 0$, and $z \neq 0$, for if one of $x$, $y$, or $z$ equals $0$, then it would follow that $x = y = z = 0$ which contradicts equation 4, $x^2 + 2y^2 + 3z^2 = 6$ since $0 \neq 6$! Thus we can divide by $x$, $y$, and $z$ freely.

From the first equation we have that $yz = \lambda (2x)$ implies that $\lambda = \frac{yz}{2x}$. Plugging this into the second equation and we have that:

(7)
\begin{align} \quad xz = \lambda (4y) = \left ( \frac{yz}{2x} \right ) 4y = \frac{4y^2z}{2x} = \frac{2y^2z}{x} \end{align}

The equation above implies that $x^2z = 2y^2z$ which implies that $x^2 = 2y^2 (*)$.

Now from the second equation we have that $\quad xz = \lambda (4y)$ implies that $\lambda = \frac{xz}{4y}$. Plugging this into the third equation and we have that:

(8)
\begin{align} \quad xy = \lambda (6z) = \left ( \frac{xz}{4y} \right ) 6z = \frac{6xz^2}{4y} = \frac{3xz^2}{2y} \end{align}

The equation above implies that $2xy^2 = 3xz^2$ or equivalently, $2y^2 = 3z^2$. But from $(*)$ we have that then $3z^2 = x^2 (**)$.

Now plugging $(*)$ and $(**)$ into equation 4 and:

(9)
\begin{align} \quad x^2 + 2y^2 + 3z^2 = 6 \\ \quad x^2 + x^2 + x^2 = 6 \\ \quad 3x^2 = 6 \\ \quad x^2 = 2 \\ \quad x = \pm \sqrt{2} \end{align}

From $(*)$ we have that $2y^2 = x^2 = (\pm \sqrt{2})^2 = 2$, so $y^2 = 1$ and $y = \pm 1$. From $(**)$ we have that $3z^2 = x^2 = (\pm \sqrt{2})^2 = 2$, so $z^2 = \frac{2}{3}$ and $z = \pm \sqrt{\frac{2}{3}}$.

Thus our points of interest are $\left ( \pm \sqrt{2}, \pm 1, \pm \sqrt{\frac{2}{3}} \right )$. It's not hard to see that a maximum is achieved when all coordinates are positive or only two coordinates are negative, and the maximum value is $\frac{2}{\sqrt{3}}$. Similarly, the minimum is achieved when all three coordinates are negative or only one coordinate is negative, and the minimum value is $- \frac{2}{\sqrt{3}}$.

Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License