Can you divide a square into 5 equal area regions

10.2k Views Asked by At

Given this shape: diagram showing a 4000 unit wide cyan square with a 400 unit wide red square in the middle

Is it possible to divide the cyan area into 5 equal area shapes

such that:

  1. Each shape is the same
  2. Each shape has an edge touching the red square
  3. Each shape has an edge touching the outside.
  4. No diagonal lines.

Its reasonably easy to perform #2 and #3 as long as you violate #1

And I don't believe its possible to actually satisfy #1, and the very fact its contained within a square suggests #1 is not satisfiable given the presence of #2.

Though its just a bit of fun really =).

Context: Was simply devising a town plan for a guild oriented town for a minecraft world, and it became possible that we might want 5 guilds, and the fun of giving each guild a fair equal area region , in conjunction with all 5 guilds having a shared space in the middle.

Diagonals are unwanted as it makes dividing the land fairly and applying region controls onerous, as most things are rectangular, regions included.

So while you can roughly approximate a diagonal with sufficiently many rectangles, the less steps, the better.

If it is not possible

Please provide reasoning as to why not.

Additionally

It would be interesting to see what sort of alternatives people can come up with, perhaps there is an optimal shape that results in all the shapes being highly similar geometrically, despite not being identical.

2

There are 2 best solutions below

4
On BEST ANSWER

What about the shape below made in geogebra? enter image description here

0
On

I don't think it possible to have all shapes identical, because the criteria of "touching the outside" and "touching the inner square" basically means there has to be at least 5 edges running from center to outside.

And because it is impossible to draw 5 edges from a square in such a way that all edges leave the square in such a way they present as being geometrically the same, the rest of the image becomes dependent on this fact.

However, if you waive the "shapes are identical rule", this is the best solution I've come up with so far.

enter image description here

enter image description here

enter image description here

Logic:

The Cyan area is basically: $$ \begin{array}{cc} A_{cyan} & = & A_{outer} & - & A_{inner} \\ A_{cyan} & = & 4,000 \times 4,000 & - & 400 \times 400 \\ A_{cyan} & = & 15,840,000 \end{array} $$ So each must be

$$ \begin{array}{cc} A_{section} & = & \frac{15,840,000}{5} \\ A_{section} & = & 3,168,000 \end{array} $$

Its apparent that at least one shape may need an edge from center to edge, so you quickly find a starting rectangle of

$$ \begin{array}{cc} A_{section} & = & \frac{W_{outer}}{2} & - & \frac{W_{inner}}{2} & \times & y \\ A_{section} & = & \frac{4000}{2} & - & \frac{400}{2} & \times & y \\ A_{section} & = & 2000 & - & 200 & \times & y \\ A_{section} & = & 1800 & & & \times & y \\ y & = & \frac{3,168,000}{1800} \\ y & = & 1760 \end{array} $$

From there, it was basically a case of shape-shifting the perimeter while keeping area the same, to achieve a sort of balanced distribution, which is reasonably easy to do.

After you've created 2 shapes with that process, duplicating it was pretty simple, and you're then left with a void which will logically be the same size.

For the usecase we had, having different shapes was acceptable, and this combination of shapes was useful enough. Though somebody can probably find a combination of more similar shapes.

( You'll also see that the arrangement loosely models a pentagon, just with far less regularity )