Geometry – Proving Cube Has Greater Volume than Cuboid with Same Edge Lengths

geometrymultivariable-calculusoptimization

How to prove that a cube has a bigger volume than a cuboid with the same sum of edge lengths?

Example:
Cube has an edge length of 5 cm. $\ V =5 \times 5 \times 5 = 125 cm^2$

Cuboid has an edge lengths of 3, 5, 7 cm. $\ V =3 \times 5 \times 7 = 105 cm^2$
$3 + 5 + 7 = 5 + 5 + 5 = 15$

$ 125 > 105 $

Best Answer

Let the cuboid have sides $a,b,c > 0$ and constrain $a+b+c=K$ for a constant $K$. Now optimize the choice of $a,b,c$ to maximize the volume.

You will get $a=b=c=K/3$, yielding your result.

You have $c = K - a -b$ and $$V(a,b) = ab(K-a-b) = Kab - a^2 b - ab^2,$$ which we seek to maximize. Note that $$ \begin{split} V_a(a,b) = \frac{\partial V}{\partial a} &= Kb - 2ab - b^2 = b(K-2a-b)\\ V_b(a,b) = \frac{\partial V}{\partial b} &= Ka - 2ab - a^2 = a(K-2b-a)\\ \end{split} $$ so solving $V_a(a,b) = 0 = V_b(a,b)$, the first equation yields $b=0$ (which is the minimum solution of zero volume) and $2a+b=K$, whereas $V_b(a,b)=0$ yields $2b+a = K$. Hence you have $$ 2a+b = K\\ a + 2b = K, $$ which has a unique solution at $a=b=K/3$.

Related Question