Difference between revisions of "2004 AMC 10B Problems/Problem 12"

(New page: ==Problem== An annulus is the region between two concentric circles. The concentric circles in the figure have radii <math>b</math> and <math>c</math>, with <math>b>c</math>. Let <math>O...)
 
 
Line 1: Line 1:
==Problem==
+
#redirect [[2004 AMC 12B Problems/Problem 10]]
 
 
An annulus is the region between two concentric circles. The concentric circles in the figure have radii <math>b</math> and <math>c</math>, with <math>b>c</math>. Let <math>OX</math> be a radius of the larger circle, let <math>XZ</math> be tangent to the smaller circle at <math>Z</math>, and let <math>OY</math> be the radius of the larger circle that contains <math>Z</math>. Let <math>a=XZ</math>, <math>d=YZ</math>, and <math>e=XY</math>. What is the area of the annulus?
 
 
 
<asy>
 
unitsize(1.5cm);
 
defaultpen(0.8);
 
real r1=1.5, r2=2.5;
 
pair O=(0,0);
 
path inner=Circle(O,r1), outer=Circle(O,r2);
 
pair Y=(0,r2), Z=(0,r1), X=intersectionpoint( Z--(Z+(10,0)), outer );
 
filldraw(outer,lightgray,black);
 
filldraw(inner,white,black);
 
draw(X--O--Y); draw(Y--X--Z);
 
label("$O$",O,SW);
 
label("$X$",X,E);
 
label("$Y$",Y,N);
 
label("$Z$",Z,SW);
 
label("$a$",X--Z,N);
 
label("$b$",0.25*X,SE);
 
label("$c$",O--Z,E);
 
label("$d$",Y--Z,W);
 
label("$e$",Y*0.65 + X*0.35,SW);
 
defaultpen(0.5);
 
dot(O); dot(X); dot(Z); dot(Y);
 
</asy>
 
 
 
<math> \mathrm{(A) \ } \pi a^2 \qquad \mathrm{(B) \ } \pi b^2 \qquad \mathrm{(C) \ } \pi c^2 \qquad \mathrm{(D) \ } \pi d^2 \qquad \mathrm{(E) \ } \pi e^2 </math>
 
 
 
==Solution==
 
 
 
The area of the large circle is <math>\pi b^2</math>, the area of the small one is <math>\pi a^2</math>, hence the shaded area is <math>\pi(b^2-c^2)</math>.
 
 
 
From the [[Pythagorean Theorem]] for the right triangle <math>OXZ</math> we have <math>a^2 + c^2 = b^2</math>, hence <math>b^2-c^2=a^2</math> and thus the shaded area is <math>\boxed{\pi a^2}</math>.
 
 
 
== See also ==
 
 
 
{{AMC10 box|year=2004|ab=B|num-b=11|num-a=13}}
 

Latest revision as of 14:33, 10 February 2009