Problem Description
FiveThirtyEight’s Oliver Roeder challenged readers to maximize the volume of a cake comprised of three cylindrical tiers subject to the constraint that the cake must fit beneath a glass cone of a prescribed size in The Riddler:
A mathematician who has a birthday coming up asks his students to make him a cake. He is very particular (he is a constructive set theorist, which explains a lot) and asks his students to make him a three-layer cake that fits under a hollow glass cone he has on his desk. (The cone was given to him as a prize for proving an obscure theorem long ago.) He requires that the cake fill up the maximum amount of volume under the cone as possible and that the layers of the cake have straight vertical sides. (Again, the guy’s particular.) What are the thicknesses of the three layers of the cake in terms of the height of the glass cone? What percentage of the cone’s volume does the cake fill?
Here’s an animation of what the cake looks like. Our goal is to adjust the height/radius of each of the three tiers in order to maximize the volume of the cake:
Drawing a Diagram
While there may be an elegant solution to this problem that uses only elementary techniques, this problem immediately stood out to me as one that could be solved using multivariable calculus optimization. Let’s start with a cone of height and radius
. Let the height of each tier of the cake be
,
, and
. Also let the remaining space between the third tier of the cake and the top of the cone be
. Finally, let the radius of each tier of the cake be
,
, and
. Here’s a diagram:
A Formula for the Volume of the Cake
The volume of the entire cone is just . The combined volume of the three-tiered cake is a bit more complicated since it is the sum of the volumes of the individual cylindrical tiers,
. At first, maximizing
might seem very difficult since there are so many variables in the equation. Luckily, the diagram above reveals a set of four similar right triangles, which we can use to our advantage:
The first right triangle is the right side of the entire big triangle with a height of and a radius of
. There’s a second triangle of height
and radius
that is formed by the space above the bottom tier of the cake. A third one has a height of
and a radius of
that is in the space above the second tier of the cake. Finally, a fourth one has a height of
and a radius of
. This leads us to the following proportions:
These proportions can be used to obtain the following equalities:
If you plug these back into , you get the following volume equation as a function of
,
, and
:
Now remember that ,
, and
are variables while
and
are constants. We can find the gradient of this function and set it equal to the zero vector to find candidates for extrema. I personally found my choice of variables distracting at this point in the problem, so I rewrote my equation as follows using
,
,
,
, and
:
Maximize the Volume Using the Gradient
This equation is perfect for finding the gradient, :
As usual, set and solve. We get four solutions, the first two of which are extraneous if we require that the cake have three tiers of nonzero volume:
Test Candidates Using the Hessian Determinant
It’s a bit of a pain, but you should now spend a few minutes verifying which of these solutions is our desired maximum. This is a perfect time to break out the second derivative test for a function of the three variables. This requires us to compute the Hessian determinant. For a function , this means we need to compute the following determinants:
Now we know that has a local maximum at
if
,
, and
.
Further, has a local minimum at
if
,
, and
.
Otherwise, has a saddle point at
.
Testing the candidate gives us a saddle point:
On the other hand, gives us our desired local maximum:
The Solution
Now that we have our local maximum at , let’s plug this ordered triple back into
. Since we are done using calculus at this point, let’s also switch back to
,
at the same time:
This is the maximum volume of our three-tiered cake. And here’s the maximum percentage of the cone filled with cake:
Mathematica Demo
I created a Mathematica demo of my solution, which you can preview below as an animated GIF. If you would like, you can also download my full Mathematica notebook (either LayerCakeProblem.nb or LayerCakeProblem.cdf).