How do I find the minimum height of this table?
+---+---+---+
| a | | |
+---+---+---+
| | b | |
+---+---+---+
| | | c |
+---+---+---+
$a$, $b$, and $c$ are the known (and fixed) areas of their respective cells.
Each cell's area is the height of its row multiplied by the width of its column. In other words:
$$ a = w_0 \cdot h_0 $$ $$ b = w_1 \cdot h_1 $$ $$ c = w_2 \cdot h_2 $$
The total width of the table is also fixed and known:
$$ W = \sum_i w_i $$ $$ 0 = \sum_i \frac{d}{dt}w_i $$
You can see that the height of the table is:
$$ H = h_0 + h_1 + h_2 $$ $$ = \frac{a}{w_0} + \frac{b}{w_1} + \frac{c}{w_2} $$
Now, normally I would set $\frac{d}{dt}H = 0$. So let's try that:
$$ \frac{d}{dt}H = 0 = - \frac{a}{w_0^2} \cdot \frac{d}{dt}w_0 - \frac{b}{w_1^2} \cdot \frac{d}{dt}w_1 - \frac{c}{w_2^2} \cdot \frac{d}{dt}w_2 $$
Hmm. I can eliminate a variable by assuming that one of the column widths changes at the same rate as $t$:
$$ \frac{d}{dt}w_0 = 1 $$
But I still need a lot more equations to solve this. Where do I get them?
Note: all column widths are non-negative, the total table width is positive, and the cell areas are non-negative. Or all these things can be positive if it makes it easier.
P.S. By understanding how to solve this simple case I'm hoping to inch closer to a solution to another question of mine.
This problem has two degrees of freedom: there are three column widths, but the sum of those widths is known so the degrees of freedom are reduced to only two. Therefore this will be easier to solve if we use two variables.
Let's use $x$ for the width of the first column and $y$ for the width of the second. Then the width of the third column is $W-x-y$ where $W$ is the known sum of the widths.
Then, using the known areas of the cells on the main diagonal, the heights of the three rows are
$$\frac ax,\ \frac by,\ \frac{c}{W-x-y}$$
The height of the complete table is then
$$H = \frac ax + \frac by + \frac{c}{W-x-y}$$
The values of $x$ and $y$ are limited by $0 < x,\ 0 < y,\ x+y < W$ so there are no boundaries. Thus the minimum value of $H$, if one exists, is where the two partial derivatives are zero. So we get
$$\frac{\partial H}{\partial x} = -\frac{a}{x^2}+0-\frac{c}{(W-x-y)^2}(-1)=0 $$
and
$$\frac{\partial H}{\partial y} = 0-\frac{b}{y^2}-\frac{c}{(W-x-y)^2}(-1)=0 $$
So we get
$$\frac{c}{(W-x-y)^2}=\frac{a}{x^2}$$
and
$$\frac{c}{(W-x-y)^2}=\frac{b}{y^2}$$
Equating the two right-hand sides and solving yields
$$y=\sqrt{\frac ba}x$$
We now are down to only one independent variable, $x$. You substitute the expression for $y$ into either of the two expressions for $\frac{c}{(W-x-y)^2}$ and solve for $x$. Finally, you substitute that expression for $x$ into the formula for $H$ and get your final answer. But a shorter way is to see that the problem is symmetric in $a, b, c$ and we could have set $x$ and $y$ to the first and last columns. Following our work above would then yield
$$z=W-x-y=\sqrt{\frac ca}x$$
I'll let you finish from here, as in the bulk of @Henry's answer. Note that the intuition of @Henry regarding the proportions of each column/row is correct: $\sqrt a: \sqrt b: \sqrt c$.