2010 AIME I Problems/Problem 11
Problem
Let be the region consisting of the set of points in the coordinate plane that satisfy both
and
. When
is revolved around the line whose equation is
, the volume of the resulting solid is
, where
,
, and
are positive integers,
and
are relatively prime, and
is not divisible by the square of any prime. Find
.
Solution
![[asy]size(280); import graph; real min = 2, max = 12; pen dark = linewidth(1); real P(real x) { return x/3 + 5; } real Q(real x) { return 10 - abs(x - 8); } path p = (2,P(2))--(8,P(8))--(12,P(12)), q = (2,Q(2))--(12,Q(12)); pair A = (8,10), B = (4.5,6.5), C= (9.75,8.25), F=foot(A,B,C), G=2*F-A; fill(A--B--C--cycle,rgb(0.9,0.9,0.9)); draw(graph(P,min,max),dark); draw(graph(Q,min,max),dark); draw(Arc((8,7.67),A,G,CW),dark,EndArrow(8)); draw(B--C--G--cycle,linetype("4 4")); label("$y \ge x/3 + 5$",(max,P(max)),E,fontsize(10)); label("$y \le 10 - |x-8|$",(max,Q(max)),E,fontsize(10)); label("$\mathcal{R}$",(6,Q(6)),NW); /* axes */ Label f; f.p=fontsize(8); xaxis(0, max, Ticks(f, 6, 1)); yaxis(0, 10, Ticks(f, 5, 1)); [/asy]](http://latex.artofproblemsolving.com/0/2/9/02958bb5c4716e5bf47c728a5fa01a53dcda0b57.png)
The inequalities are equivalent to . We can set them equal to find the two points of intersection,
. This implies that one of
, from which we find that
. The region
is a triangle, as shown above. When revolved about the line
, the resulting solid is the union of two right cones that share the same base and axis.
![[asy]size(200); import three; currentprojection = perspective(0,0,10); defaultpen(linewidth(0.7)); pen dark=linewidth(1.3); pair Fxy = foot((8,10),(4.5,6.5),(9.75,8.25)); triple A = (8,10,0), B = (4.5,6.5,0), C= (9.75,8.25,0), F=(Fxy.x,Fxy.y,0), G=2*F-A, H=(F.x,F.y,abs(F-A)),I=(F.x,F.y,-abs(F-A)); real theta1 = 1.2, theta2 = -1.7,theta3= abs(F-A),theta4=-2.2; triple J=F+theta1*unit(A-F)+(0,0,((abs(F-A))^2-(theta1)^2)^.5 ),K=F+theta2*unit(A-F)+(0,0,((abs(F-A))^2-(theta2)^2)^.5 ),L=F+theta3*unit(A-F)+(0,0,((abs(F-A))^2-(theta3)^2)^.5 ),M=F+theta4*unit(A-F)-(0,0,((abs(F-A))^2-(theta4)^2)^.5 ); draw(C--A--B--G--cycle,linetype("4 4")+dark); draw(A..H..G..I..A); draw(C--B^^A--G,linetype("4 4")); draw(J--C--K); draw(L--B--M); dot(B);dot(C);dot(F); label("$h_1$",(B+F)/2,SE,fontsize(10)); label("$h_2$",(C+F)/2,S,fontsize(10)); label("$r$",(A+F)/2,E,fontsize(10)); [/asy]](http://latex.artofproblemsolving.com/a/6/7/a677b7bf01faacdc024c6d06c300886f6ba38ae1.png)
Let denote the height of the left and right cones, respectively (so
), and let
denote their common radius. The volume of a cone is given by
; since both cones share the same base, then the desired volume is
. The distance from the point
to the line
is given by
. The distance between
and
is given by
. Thus, the answer is
. (Note to MAA: Is it a coincidence that this is the number of days in a non-leap year?)
See Also
2010 AIME I (Problems • Answer Key • Resources) | ||
Preceded by Problem 10 |
Followed by Problem 12 | |
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.