Maths Olympiad Prep

Track / Stage 3 / 240 of 260 #240 of 1964

Problem 240

AMC 10/12, early questions
Geometry Difficulty 3.9 Find the answer

Circles with centers P,QP, Q and RR, having radii 1,21, 2 and 33, respectively, lie on the same side of line ll and are tangent to ll at P,QP', Q' and RR', respectively, with QQ' between PP' and RR'. The circle with center QQ is externally tangent to each of the other two circles. What is the area of triangle PQRPQR?

Pick one

Official solution

[asy] size(250); defaultpen(linewidth(0.4)); //Variable Declarations pair P,Q,R,Pp,Qp,Rp; pair A,B; //Variable Definitions A=(-5, 0); B=(8, 0); P=(-2.828,1); Q=(0,2); R=(4.899,3); Pp=foot(P,A,B); Qp=foot(Q,A,B); Rp=foot(R,A,B); path PQR = P--Q--R--cycle; //Initial Diagram dot(P); dot(Q); dot(R); dot(Pp); dot(Qp); dot(Rp); draw(Circle(P, 1), linewidth(0.8)); draw(Circle(Q, 2), linewidth(0.8)); draw(Circle(R, 3), linewidth(0.8)); draw(A--B,Arrows); label("PP",P,N); label("QQ",Q,N); label("RR",R,N); label("PP'",Pp,S); label("QQ'",Qp,S); label("RR'",Rp,S); label("ll",B,E); //Added lines draw(PQR); draw(P--Pp); draw(Q--Qp); draw(R--Rp); //Angle marks draw(rightanglemark(P,Pp,B)); draw(rightanglemark(Q,Qp,B)); draw(rightanglemark(R,Rp,B)); [/asy]
Notice that we can find [PPQRR][P'PQRR'] in two different ways: [PPQQ]+[QQRR][P'PQQ']+[Q'QRR'] and [PQR]+[PPRR].[PQR]+[P'PRR']. Since we want [PQR],[PQR], we use the latter method, so we have [PPQQ]+[QQRR]=[PQR]+[PPRR].[P'PQQ']+[Q'QRR']=[PQR]+[P'PRR'].
\break\break
PQ=PQ2(QQPP)2=3212=8=22P'Q'=\sqrt{PQ^2-(QQ'-PP')^2}=\sqrt{3^2-1^2}=\sqrt{8}=2\sqrt{2}. Additionally, QR=QR2(RRQQ)2=5212=24=26Q'R'=\sqrt{QR^2-(RR'-QQ')^2}=\sqrt{5^2-1^2}=\sqrt{24}=2\sqrt{6}. Therefore, [PPQQ]=PP+QQ222=1+2222=32[P'PQQ']=\frac{P'P+Q'Q}{2}*2\sqrt{2}=\frac{1+2}{2}*2\sqrt{2}=3\sqrt{2}. Similarly, [QQRR]=56[Q'QRR']=5\sqrt6. We can calculate [PPRR][P'PRR'] easily because PR=PQ+QR=22+26P'R'=P'Q'+Q'R'=2\sqrt{2}+2\sqrt{6}. [PPRR]=42+46[P'PRR']=4\sqrt{2}+4\sqrt{6}. \newline
Plugging into first equation, the two sums of areas, 32+56=42+46+[PQR],3\sqrt{2}+5\sqrt{6}=4\sqrt{2}+4\sqrt{6}+[PQR], so therefore [PQR]=(D) 62.[PQR]=\boxed{\textbf{(D) }\sqrt{6}-\sqrt{2}.}

Source: NuminaMath-1.5, licensed Apache-2.0. Statement and solution reproduced as published; topic, difficulty and ordering added by this site.