# Solution to the [[Three Semi-Circles in a Rectangle]] Puzzle +-- {.image} [[ThreeSemiCirclesinaRectangle.jpeg:pic]] > Is more of this rectangle red or blue? =-- ## Solution by [[Pythagoras' Theorem]] and the [[Area of a Circle]] +-- {.image} [[ThreeSemiCirclesinaRectangleLabelled.jpeg:pic]] =-- In the diagram above, $A$ is the midpoint of the upper edge so is the centre of the upper semi-circle, $E$ is the midpoint of the lower edge, and $D$ is the centre of the lower semi-circle. Let $a$ be half of the width of the rectangle and $b$ half of its height. Then the radii of the various circles are: 1. Upper semi-circle: $a$ 2. Right quarter circle: $2 b$ 3. Left semi-circle: $b$ 4. Lower semi-circle: $\frac{2a - 2b}{2} = a - b$ By including the white petal regions into both the blue and red, the difference in the areas of the red and blue regions is the same as the differences in the corresponding partial circles. The upper and lower semi-circles have area: $$ \frac{1}{2} \pi a^2 + \frac{1}{2} \pi (a - b)^2 = \frac{1}{2} \pi (2 a^2 - 2 a b + b^2) $$ The left and right partial circles have area: $$ \frac{1}{2} \pi b^2 + \frac{1}{4} \pi (2 b)^2 = \frac{3}{2} \pi b^2 $$ Triangle $A D E$ is a [[right-angled triangle]] with sides of lengths $2 b$, $a - (a - b) = b$, and $a + (a - b) = 2a - b$. Applying [[Pythagoras' theorem]] yields: $$ \begin{aligned} (2a - b)^2 &= (2 b)^2 + b^2 \\ 4 a^2 - 4 a b + b^2 &= 5 b^2 \\ a^2 - a b &= b^2 \end{aligned} $$ Substituting in to the expression for the area of the upper and lower semi-circles, this shows that that area is: $$ \frac{1}{2} \pi (2 a^2 - 2 a b + b^2) = \frac{1}{2} \pi (2 b^2 + b^2) = \frac{3}{2} \pi b^2 $$ which is exactly the area of the side circle segments. Hence the red and blue areas are the same.