Dividing a Square into Equal-Area Pieces

Here’s a fun little problem. It’s from the latest MIT magazine:

M/J3. Tom Harriman wants you to divide a square of side length 2 into four equal-area pieces so that the sum of the lengths of the boundaries is minimized. Hint: It is easy to get four side =1 squares with total boundary 16. But you can do better.

The first thing to notice is that the outside of the square will always be counted in the total boundary, so we just need to focus on minimizing the length of the cuts on the inside. In other words, we would like to find some interior cuts which create 4 equal-area pieces but have total length less than 4. It seems impossible, at first, to beat two straight lines. One might think that we must therefore try curved lines. Maybe that works, but I did not find it to lead anywhere. Well, this is a devious problem. Let’s take a look at a possibility anyways, though.

It is easy to see how we must construct such a picture, since each piece must have area 1. (As a result, the radius of each quarter-circle is \frac{2}{\sqrt{\pi}}. It turns out that the total interior lengths sum to \sim 4.12. However, it was unclear at first glance whether the sum is less than or greater than 4, and this is because the inside diagonal is shared when we consider the cuts from left to right and up to down. Although this example doesn’t work, we can use this insight!

Let’s now revert back to straight lines, since they may work better. Let’s try to replace each of the four “curved segments” with straight lines and see if we can fiddle around with the length of the middle line to make it work. For example, something like this.

There is one parameter we can change within our restrictions. Notice that if we make the center diagonal longer, the other lines will be forced to move in order to maintain the equal area pieces, and vice versa. Suppose the side length of the right triangle (as below) made by the center diagonal has length 2a.

Since each of the regions has area 1, we know that if we cut the region on the top left in half to form two identical triangles, their regions will have area \frac 12.

Following the diagram, if we use the side that lies on the top edge of the square as a base for the triangle, we have \frac{bh}{2}=\frac 12, where h=1-a. So solving in terms of a, we get b=\frac{1}{1-a}. Now let’s find the lengths of the interior lines in terms of a, so that we see if this works for some a. We can calculate the length of the longer inner segment through the Pythagorean Theorem. The base is b-(1-a)=\frac{1}{1-a}-1+a, and the height is 1-a, so the length is \sqrt{(\frac{1}{1-a}-1+a)^2+(1-a)^2}. We have four of these and one diagonal of length 2a\sqrt{2}, so our total interior length is:

4\sqrt{(\frac{1}{1-a}-1+a)^2+(1-a)^2}+2a\sqrt{2}.

We know that a can take values strictly between 0 and 1 (but between 0 and 0.5, realistically). Plotting this on Desmos, we find that the local minima within this range is at a\approx 0.061, with a total area of \sim 3.962.

So, we’ve found an arrangement where the total interior lengths add up to less than 4! Below is a depiction of the optimal solution given the lengths:

Here is a slider I made, and you can play around with changing the value of a.

This solution is better, as the question prompted… But I’m not sure if this is the optimal solution. I couldn’t think of anything better, but I’ll be interested to see if there is one!

 

Source: Puzzle corner’s Problem M/J3 of MIT News May/June 2023 edition.

Leave a comment