A Problem From Three Days Ago’s Simulation

This problem took me a while to solve because of its calculations, but it’s actually very instructive. It makes you see how few conditions can determine a lot.

All of the data is in the figure above, we have to find the area of the rectangle.

Now let j = \tan{\alpha} where alpha is the biggest of the two angles of one of the two triangles with the diagonal as hypotenuse.

Obviously, all of the triangles generated by the squares are similar to them, hence we can write:

(10+10j)^2+(10 + \frac{10}{j})^2 = (\sqrt{96}+\sqrt{96}j+\frac{\sqrt{96}}{j})^2

What I’m doing is just applying the Pythagorean Theorem and writing every segment only using j. The little vertical segment above the square of area 100 for example is \frac{10}{j} . The others are defined similarly.

Now let’s solve this equation. After expanding and rearranging we get to:

j^2+\frac{1}{j^2}+2(j+\frac{1}{j})-22 = 0

Let now k = j + \frac{1}{j} .

Notice j^2+\frac{1}{j^2} = k^2-2 , hence we have

k^2+2k-24 = 0

The solutions are 4 and -6, but we only need the positive ones, so 4.

Now we get

j+\frac{1}{j} = 4 \Rightarrow j^2-4j+1 = 0

The solutions are 2+\sqrt{3}, 2-\sqrt{3} , but we said that the tangent was the one of the bigger angle, so we get the largest one (but it actually doesn’t matter which you chose since one is the inverse of the other). So we get that the two sides of the rectangle are:

10 +10j, 10+10\frac{1}{j} = 10(3+\sqrt{3}), 10(3-\sqrt{3})

The area equals to their product, which is

100 \cdot (9-3) = 600

Scroll to top