2007 iTest Problems/Problem 37

Problem

Rob is helping to build the set for a school play. For one scene, he needs to build a multi-colored tetrahedron out of cloth and bamboo. He begins by fitting three lengths of bamboo together, such that they meet at the same point, and each pair of bamboo rods meet at a right angle. Three more lengths of bamboo are then cut to connect the other ends of the first three rods. Rob then cuts out four triangular pieces of fabric: a blue piece, a red piece, a green piece, and a yellow piece. These triangular pieces of fabric just fill in the triangular spaces between the bamboo, making up the four faces of the tetrahedron. The areas in square feet of the red, yellow, and green pieces are $60, 20$, and $15$ respectively. If the blue piece is the largest of the four sides, find the number of square feet in its area.

Solution

[asy]  import three; unitsize(1cm); size(200); draw((0,0,0)--(0,0,10)); draw((0,0,0)--(0,30,0)); draw((0,0,0)--(40,0,0)); draw((40,0,0)--(0,30,0)--(0,0,10)--(40,0,0),dotted); label("a",(0,10,0),S); label("b",(15,0,0),S); label("c",(0,0,5),E);  currentprojection=orthographic(1,1/2,1/2);  [/asy]

Let the three lengths of the rods be $a$, $b$, and $c$. Since the hypotenuse of the three right triangles are longer than the legs of the right triangle, the blue piece uses the lengths of the hypotenuses. For the red, yellow, and green pieces, right triangles are used, so write three equations based on the area. \[ab = 120\] \[bc = 40\] \[ac = 30\] Solving this equation yields $a = 3\sqrt{10}$, $b = 4\sqrt{10}$, and $c = \sqrt{10}$. By the Pythagorean Theorem, the three side lengths of the blue piece are $5\sqrt{10}$, $10$, and $\sqrt{170}$.

[asy]  import three; unitsize(1cm); size(200); draw((0,0,0)--(0,0,10)); draw((0,0,0)--(0,30,0)); draw((0,0,0)--(40,0,0)); draw((40,0,0)--(0,30,0)--(0,0,10)--(40,0,0),dotted); draw((0,0,0)--(96/5,72/5,0)--(0,0,10),dotted); label("$5\sqrt{10}$",(20,15,0),SE); label("$\sqrt{170}$",(15,0,5),NW); label("10",(0,20,5),NE);  currentprojection=orthographic(1,1/2,1/2);  [/asy]

Draw the altitude of the triangle with lengths $3\sqrt{10}$ and $4\sqrt{10}$. Because the area of the red piece (one with lengths $3\sqrt{10}$ and $4\sqrt{10}$) is $60$, the length of the altitude is $\frac{12\sqrt{10}}{5}$. The hypotenuse of the triangle with length $\sqrt{10}$ and $\frac{12\sqrt{10}}{5}$ is $\frac{13\sqrt{10}}{5}$ and is perpendicular to the side with length $5\sqrt{10}$ (since it is on the same plane as the altitude), so the area of the blue piece is $\frac{\frac{13\sqrt{10}}{5} \cdot 5\sqrt{10}}{2} = \boxed{65}$.


See Also

2007 iTest (Problems, Answer Key)
Preceded by:
Problem 36
Followed by:
Problem 38
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 TB1 TB2 TB3 TB4