Optimization Problems with Functions of Two Variables

Several optimization problems are solved and detailed solutions are presented. These problems involve optimizing functions in two variables using first and second order partial derivatives.

Problems with Detailed Solutions

Problem 1

You decide to build a box that has the shape of a rectangular prism with a volume of 1000 cubic centimeters. Find the dimensions x, y and z of the box so that the total surface area of all 6 faces of the box is minimum.
Solution to Problem 1:
The total area A of all six faces of the prism is given by.
A = 2 xy + 2 yz + 2 zx
optimization problem 1, minimize area

The volume of the box is given; hence
xyz = 1000
Solve the above for z.
z = 1000 / (xy)
Substitute z in the expression of the area A to obtain.
A(x,y) = 2xy + 2y * 1000 / (xy) + 2x * 1000 / (xy) = 2xy + 2000 / x + 2000 / y
We now need to find x and y that minimize the area A. We first need to find the critical points and then test the second partial derivatives. The first order partial derivatives of A are given by
A
x (x,y) = 2y - 2000 / (x 2 )
A
y (x,y) = 2x - 2000 / (y 2 )
The critical points are found by setting Ax(x,y) = 0 and Ay(x,y) = 0 and solving the system obtained. Which gives
2y - 2000 / (x
2 ) = 0 which gives 2yx 2 = 2000
2x - 2000 / (y
2 ) = 0 which gives 2xy 2 = 2000
Solve the above to obtain
x = 10 and y = 10
We now need to find the second order partial derivatives.
A
xx (x,y) = 4000/(x 3 )
A
yy (x,y) = 4000/(y 3 )
A
xy (x,y) = 2
We now need to test the values of Axx, Ayy and Axy at the point (10,10) in order to use the theorem on minima and maxima of functions with 2 variables.
D = Axx(10,10) Ayy(10,10) - Axy2(10,10) = 4 * 4 - 4 = 12

D is positive and Axx(10,10) = 4 is positive and therefore the area A is minimum for
x = 10 cm
y = 10 cm
z = 1000/(xy) = 10 cm.


Problem 2

Find the dimensions of a six-faced box that has the shape of a rectangular prism with the largest possible volume that you can make with 12 squared meters of cardboard.

Solution to Problem 2:
Using all available cardboard to make the box, the total area A of all six faces of the prism is given by.
A = 2xy + 2yz + 2zx = 12
The volume V of the box is given by
V = xyz
Solve the equation 2xy + 2yz + 2zx = 12 for z
z = (6 - xy) / (x + y)
Substitute z in the expression of the volume V to obtain.
V(x,y) = xy (6 - xy) / (x + y)
Let us find the critical points by first finding the first order partial derivatives
Vx(x,y) = -y2( x2 + 2xy - 6 ) / (x + y) 2
Vy(x,y) = -x2( y2 + 2xy - 6 ) / (x + y) 2
We now solve the system of equations given by Vx = 0 and Vy = 0. One obvious solution is given by the point (0,0) but is not physically possible. Other solutions are found by setting
x2 + 2xy - 6 = 0
and
y2 + 2xy - 6 = 0
Subtracting the equations term by term we obtain
x2 - y2 = 0
Solve to obtain
x = y and x = - y
The solution x = -y is not valid for this problem since both x and y are dimensions and cannot be negative. Use x = y in the equation x2 + 2xy - 6 = 0, we obtain
x2 + 2x2 - 6 = 0
Solve for x
x = √2
Find y
y = x = √2
Let us now find the second order partial derivatives
Vxx(x,y) = -2y2( y2 + 6 ) / (x + y) 3
Vyy(x,y) = -2x2( x2 + 6 ) / (x + y) 3
Vxy(x,y) = -2xy(x2 + 3xy + y2 - 6 ) / (x + y) 3
We now need the values of Axx, Ayy and Axy to find the value of D = Vxx(√2,√2) Vyy(√2,√2) - Vxy2(√2,√2) in order to use the theorem on minima and maxima of functions with 2 variables.

D = Vxx(√2,√2) Vyy(√2,√2) - Vxy2(√2,√2) = 5/2

D is positive and Vxx(√2,√2) = -√2 is negative and therefore the volume V is maximum for
x = √2 meters
y = √2 meters
z = (6- xy) / (x + y) = √2 meters.


Problem 3

Find the distance from the point (1,2,-1) to the plane given by the equation x - y + z = 3.

Solution to Problem 3:
One way to find the distance from a point to a plane is to take a point (x,y,z) on the plane; find the distance between this point and the given point and minimize it. Because the distance involves the square root, it would be better to minimize the square of the distance. Let the square of the distance between the given point and the point (x,y,z) on the plane be f.
f(x,y,z) = (x - 1)2 + (y - 2)2 + (z + 1)2
We now solve the equation of the plane for z to obtain
z = 3 - x + y
Substitute z in f by 3 - x + y in f.
F(x,y) = (x - 1)2 + (y - 2)2 + (- x + y + 4)2
We now find the first order partial derivatives
Fx(x,y) = 2(x - 1) + 2(-1)(-x + y + 4)
Fy(x,y) = 2(y - 2) + 2(-x + y + 4)
We now need to find the critical points by setting the first partial derivatives equal to zero.
2(x - 1) + 2(-1)(-x + y + 4) = 0 and 2(y - 2) + 2(-x + y + 4) = 0
We now solve the system of equations to obtain
(8/3 , 1/3 , 2/3)
We now calculate the second order derivatives
Fxx(x,y) = 4
Fyy(x,y) = 4
Fxy(x,y) = -2
We now need to find the sign of D = Fxx(8/3,1/3) Fyy(8/3,1/3) - Fxy2(8/3,1/3) in order to use the theorem on minima and maxima of functions with 2 variables
D = 4 * 4 - (-2)2 = 12
Since D is positive and Fxx is positive, F has a minimum at the point (8/3,1/3) which correspond to a point on the plane given by
(8/3,-1/3,2/3)
The distance d between the given point and the plane is given by
d = √ [ (1 - 8/3)2 + (2 - 1/3)2 + (-1 - 2/3)2 ]
= 5 / √3

More on partial derivatives and mutlivariable functions. Multivariable Functions
Home Page