2000 AIME I Problems/Problem 13
Problem
In the middle of a vast prairie, a firetruck is stationed at the intersection of two perpendicular straight highways. The truck travels at miles per hour along the highways and at
miles per hour across the prairie. Consider the set of points that can be reached by the firetruck within six minutes. The area of this region is
square miles, where
and
are relatively prime positive integers. Find
.
Solution
Let the intersection of the highways be at the origin , and let the highways be the x and y axes. We consider the case where the truck moves in the positive x direction.
After going miles,
hours has passed. If the truck leaves the highway it can travel for at most
hours, or
miles. It can end up anywhere off the highway in a circle with this radius centered at
. All these circles are homothetic with respect to a center at
.
![[asy] pair truck(pair P){ pair Q = IP(P--P+(7/10,24/10),(35/31,35/31)--(5,0)); D(P--Q,EndArrow(5)); D(CP(P,Q),linewidth(0.5)); return Q; } pointpen = black; pathpen = black+linewidth(0.7); size(250); pair B=(5,0), C=(35/31,35/31); D(D(B)--D(C)--D(B*dir(90))--D(C*dir(90))--D(B*dir(180))--D(C*dir(180))--D(B*dir(270))--D(C*dir(270))--cycle); D((-6,0)--(6,0),Arrows(4)); D((0,-6)--(0,6),Arrows(4)); truck((1,0)); truck((2,0)); truck((3,0)); truck((4,0)); [/asy]](http://latex.artofproblemsolving.com/b/1/e/b1e4a60f3081861da720715755129e0abc341cb9.png)
![[asy] pointpen = black; pathpen = black+linewidth(0.7); size(250); pair O=(0,0), B=(5,0), A=1.4*expi(atan(24/7)), C=1.4*expi(atan(7/24)); D(D(B)--D(A)--D(O)); D(O--D(C)--D(B*dir(90))--D(A*dir(90))--O--D(C*dir(90))--D(B*dir(180))--D(A*dir(180))--O--D(C*dir(180))--D(B*dir(270))--D(A*dir(270))--O--D(C*dir(270))--B,linewidth(0.5)); D(CR(O,1.4)); D((-6,0)--(6,0),Arrows(4)); D((0,-6)--(0,6),Arrows(4)); MP("A",A,N); MP("B",B); MP("(5,0)",B,N); D(MP("\left(\frac{35}{31},\frac{35}{31}\right)",(35/31,35/31),NE)); D(rightanglemark(O,A,B)); [/asy]](http://latex.artofproblemsolving.com/b/1/d/b1dbbfe9154757443da1f35c5fce02513e7afdd6.png)
Now consider the circle at . Draw a line tangent to it at
and passing through
. By the Pythagorean Theorem
. Then
, so the slope of line
is
. Since it passes through
its equation is
.
This line and the x and y axis bound the region the truck can go if it moves in the positive x direction. Similarly, the line bounds the region the truck can go if it moves in positive y direction. The intersection of these two lines is
. The bounded region in Quadrant I is made up of a square and two triangles.
. By symmetry, the regions in the other quadrants are the same, so the area of the whole region is
so the answer is
.
See also
2000 AIME I (Problems • Answer Key • Resources) | ||
Preceded by Problem 12 |
Followed by Problem 14 | |
1 • 2 • 3 • 4 • 5 • 6 • 7 • 8 • 9 • 10 • 11 • 12 • 13 • 14 • 15 | ||
All AIME Problems and Solutions |
The problems on this page are copyrighted by the Mathematical Association of America's American Mathematics Competitions.