A plane in the x y z coordinate system is given by z = a − b x − c y , where a , b , c are positive reals. We want to place a box (cuboid) under the plane with its faces parallel to the x y , x z and y z planes, and one of its vertices at the origin, while the opposite vertex on the given plane. Find the largest possible volume of such a box, in terms of a , b , c , then assuming that a = 1 2 , b = 2 , c = 7 , find the value of this maximum volume. If the answer can be expressed as q p for positive coprime integers p and q , find p + q .
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
The volume of the box is given by
V = x y z = x y ( a − b x − c y )
Taking the partial derivatives of V with respect to x and y :
V x = y ( a − b x − c y ) + x y ( − b ) = y ( a − 2 b x − c y )
V y = x ( a − b x − c y ) + x y ( − c y ) = x ( a − b x − 2 c y )
At the critical point (the extremum), V x = V y = 0 . Since x = 0 , y = 0 , then
2 b x + c y = a
and
b x + 2 c y = a
The solution of this linear system is x = 3 b a , y = 3 c a
Clearly this critical point corresponds to a maximum of V , since at x = 0 or y = 0 the volume is zero. However, one can check that by taking the second partial derivatives:
V x x = y ( − 2 b ) , V x y = ( a − 2 b x − c y ) − c y = a − 2 b x − c y , V y y = x ( − 2 c ) , hence the Hessian matrix is
H = ⎣ ⎢ ⎡ − 3 c 2 a b − 3 a − 3 a − 3 b 2 a c ⎦ ⎥ ⎤
Since − H 1 1 = 3 c 2 a b > 0 and ∣ − H ∣ = 3 1 a 2 > 0 , then matrix H is negative definite, and hence our critical point is a local maximum.
At this point, z = a − b x − c y = 3 a
Therefore, the maximum volume is V Max = 2 7 b c a 3
Substituting a = 1 2 , b = 2 , c = 7 , gives us V Max = 2 7 ( 2 ) ( 7 ) 1 2 3 = 7 3 2
Thus the answer is 3 2 + 7 = 3 9
Nice maximization problem, Hosam! I always wanted to ask you: what SW do you use to generate your amazing 3D animations???
Log in to reply
I use MS-Excel VBA (Visual Basic for Applications) programming environment to create the graphics with the assistance of the built-in Excel Chart Tool. After generating the frames I use gifmaker.org to combine the frames into a single GIF animated image file.
Problem Loading...
Note Loading...
Set Loading...
We want to maximize x y z subject to 2 x + 7 y + z = 1 2 . By AM-GM, 1 2 = 2 x + 7 y + z ≥ 3 3 ( 2 x ) ( 7 y ) ( z ) = 3 3 1 4 x y z , so x y z ≤ 1 4 4 3 = 7 3 2 . Equality occurs when 2 x = 7 y = z = 4 .