2001 AMC 10 Problems/Problem 15
Problem
A street has parallel curbs feet apart. A crosswalk bounded by two parallel stripes crosses the street at an angle. The length of the curb between the stripes is feet and each stripe is feet long. Find the distance, in feet, between the stripes.
Solution
Drawing the problem out, we see we get a parallelogram with a height of and a base of , giving an area of .
[asy] draw((0,0)--(5,0),linewidth(2)); draw((2.5,5)--(7.5,5)); draw((0,0)--(2.5,5)); draw((5,0)--(7.5,5)); draw((2.5,5)--(2.5,0),dashed); [/asy]
If we look at it the other way, we see the distance between the stripes is the height and the base is . The area is obviously still the same, so the distance between the stripes is .
[asy] draw((0,0)--(5,0));draw((2.5,5)--(7.5,5));draw((0,0)--(2.5,5));draw((5,0)--(7.5,5),linewidth(2));draw((2,4)--(7,4),dashed) [/asy]