Annulus
Source:
January 6, 2009
geometryPythagorean Theorem
Problem Statement
An annulus is the region between two concentric circles. The concentric circles in the figure have radii and , with . Let be a radius of the larger circle, let be tangent to the smaller circle at , and let be the radius of the larger circle that contains . Let a \equal{} XZ, d \equal{} YZ, and e \equal{} XY. What is the area of the annulus?
[asy]unitsize(1.4cm);
defaultpen(linewidth(.8pt));
dotfactor=3;real r1=1.0, r2=1.8;
pair O=(0,0), Z=r1*dir(90), Y=r2*dir(90);
pair X=intersectionpoints(Z--(Z.x+100,Z.y), Circle(O,r2))[0];
pair[] points={X,O,Y,Z};filldraw(Circle(O,r2),mediumgray,black);
filldraw(Circle(O,r1),white,black);dot(points);
draw(X--Y--O--cycle--Z);label("",O,SSW,fontsize(10pt));
label("",Z,SW,fontsize(10pt));
label("",Y,N,fontsize(10pt));
label("",X,NE,fontsize(10pt));defaultpen(fontsize(8pt));label("",midpoint(O--Z),W);
label("",midpoint(Z--Y),W);
label("",midpoint(X--Y),NE);
label("",midpoint(X--Z),N);
label("",midpoint(O--X),SE);[/asy]