2008 iTest Problems/Problem 24

Revision as of 00:48, 2 July 2018 by Rockmanex3 (talk | contribs) (Solution to Problem 24)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Problem

In order to earn her vacation spending money, Alexis helped her mother remove weeds from the garden. When she was done, she came into the house to put away her gardening gloves and change into clean clothes.

On her way to her room she notices Joshua with his face to the floor in the family room, looking pretty silly. "Josh, did you know you lose IQ points for sniffing the carpet?"

"Shut up. I'm not sniffing the carpet. I'm doing something."

"Sure, if sniffing the carpet counts as doing something." At this point Alexis stands over her twin brother grinning, trying to see how silly she can make him feel.

Joshua climbs to his feet and stands on his toes to make himself a half inch taller than his sister, who is ordinarily a half inch taller than Joshua. "I'm measuring something. I'm designing something."

Alexis stands on her toes too, reminding her brother that she is still taller than he. "When you're done, can you design me a dress?"

"Very funny." Joshua walks to the table and points to some drawings. "I'm designing the sand castle I want to build at the beach. Everything needs to be measured out so that I can build something awesome."

"And this requires sniffing carpet?" inquires Alexis, who is just a little intrigued by her brother's project.

"I was imagining where to put the base of a spiral staircase. Everything needs to be measured out correctly. See, the castle walls will be in the shape of a rectangle, like this room. The center of the staircase will be $9$ inches from one of the corners, $15$ inches from another, 16 inches from another, and some whole number of inches from the furthest corner." Joshua shoots Alexis a wry smile. The twins liked to challenge each other, and Alexis knew she had to find the distance from the center of the staircase to the fourth corner of the castle on her own, or face Joshua's pestering, which might last for hours or days.

Find the distance from the center of the staircase to the furthest corner of the rectangular castle, assuming all four of the distances to the corners are described as distances on the same plane (the ground).

Solution

[asy]  draw((0,0)--(50,0)--(50,60)--(0,60)--(0,0)); dot((16,32)); draw((16,32)--(0,60)); label("9",(8,46),SW); draw((16,32)--(0,0)); label("15",(8,16),NW); draw((16,32)--(50,60)); label("16",(33,46),NW); draw((16,32)--(50,0));  draw((0,32)--(50,32),dotted); label("$a$",(8,32),S); label("$c$",(33,32),S); draw((16,0)--(16,60),dotted); label("$b$",(16,46),E); label("$d$",(16,16),E); [/asy]

Note that because the unknown length is the furthest diagnoal, draw the diagram as shown because it maximizes the unknown length. By the Pythagorean Theorem, \[a^2 + b^2 = 81\] \[a^2 + d^2 = 225\] \[b^2 + c^2 = 256\] Adding the second and third equations results in \[a^2 + b^2 + c^2 + d^2 = 481\] By substitution, \[81 + c^2 + d^2 = 481\] \[c^2 + d^2 = 400\] Thus, the distance from the center of the staircase to the furthest corner of the castle is $\boxed{20}$ inches.

See Also

2008 iTest (Problems)
Preceded by:
Problem 23
Followed by:
Problem 25
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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100