Difference between revisions of "2007 iTest Problems/Problem 15"

(Created page with "== Problem == Form a pentagon by taking a square of side length 1 and an equilateral triangle of side length 1 and placing the triangle so that one of its sides coincides with a...")
 
(Solution to Problem 15 — drawing took a while)
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
== Problem ==
+
==Problem==
  
Form a pentagon by taking a square of side length 1 and an equilateral triangle of side length 1 and placing the triangle so that one of its sides coincides with a side of the square. Then "circumscribe" a circle around the pentagon, passing through three of its vertices, so that the circle passes through exactly one vertex of the equilateral triangle, and exactly two vertices of the square. What is the radius of the circle?
+
Form a pentagon by taking a square of side length 1 and an equilateral triangle of side length 1, and
 +
placing the triangle so that one of its sides coincides with a side of the square. Then "circumscribe" a circle around the
 +
pentagon, passing through three of its vertices, so that the circle passes through exactly one of the vertices of the
 +
equilateral triangle, and through exactly two vertices of the square. What is the radius of the circle?
  
<math>\textbf{(A) }\dfrac23\hspace{14.4em}
+
<math>\text{(A) }\frac{2}{3}\qquad
\textbf{(B) }\dfrac34\hspace{14.4em}
+
\text{(B) }\frac{3}{4}\qquad
\textbf{(C) }1
+
\text{(C) }1\qquad
\textbf{(D) }\dfrac54\hspace{14.4em}
+
\text{(D) }\frac{5}{4}\qquad
\textbf{(E) }\dfrac43\hspace{14.4em}
+
\text{(E) }\frac{4}{3}\qquad
\textbf{(F) }\dfrac{\sqrt2}2
+
\text{(F) }\frac{\sqrt{2}}{2}\qquad
\textbf{(G) }\dfrac{\sqrt3}2\hspace{13.5em}\&#036;
+
\text{(G) }\frac{\sqrt{3}}{2}\qquad
</math>\textbf{(H) }\sqrt2\hspace{13.8em}
+
\text{(H) }\sqrt{2}\qquad</math>
\textbf{(I) }\sqrt3
 
\textbf{(J) }\dfrac{1+\sqrt3}2\hspace{12em}
 
\textbf{(K) }\dfrac{2+\sqrt6}2\hspace{11.9em}
 
\textbf{(L) }\dfrac76
 
\textbf{(M) }\dfrac{2+\sqrt6}4\hspace{11.5em}
 
\textbf{(N) }\dfrac45\hspace{14.4em}
 
\textbf{(O) }2007 $
 
  
== Solution ==
+
<math>\text{(I) }\sqrt{3}\qquad
 +
\text{(J) }\frac{1+\sqrt{3}}{2}\qquad
 +
\text{(K) }\frac{2+\sqrt{6}}{2}\qquad
 +
\text{(L) }\frac{7}{6}\qquad
 +
\text{(M) }\frac{2+\sqrt{6}}{4}\qquad
 +
\text{(N) }\frac{4}{5}\qquad
 +
\text{(O) }2007\qquad</math>
 +
 
 +
==Solutions==
 +
 
 +
===Solution 1===
 +
 
 +
<asy>
 +
draw(circle((0,0),100));
 +
pair O=(0,0), A=(0,100), B=(-50,13.397), C=(50,13.397), D=(50,-86.603), E=(-50,-86.603);
 +
draw(B--E--D--C--A--B);
 +
dot(A);
 +
label("$A$",A,N);
 +
dot(B);
 +
label("$B$",B,NW);
 +
dot(C);
 +
label("$C$",C,NE);
 +
dot(E);
 +
label("$E$",E,SW);
 +
dot(D);
 +
label("$D$",D,SE);
 +
dot((0,0));
 +
label("$O$",(0,-5),S);
 +
 
 +
draw(O--A);
 +
draw(O--B);
 +
draw(O--C);
 +
draw(O--D);
 +
draw(O--E);
 +
 
 +
</asy>
 +
 
 +
Let <math>A,B,C</math> be points of the equilateral triangle, <math>B,C,D,E</math> be points of the square, and <math>O</math> be the center of the circle.
 +
 
 +
<br>
 +
By the Base Angle Theorem, <math>\angle OED = \angle ODE</math>, so <math>\angle BEO = \angle CDO</math>.  Since <math>OD = OE</math>, by SAS Congruency, <math>\triangle BEO \cong \triangle CDO</math>, so <math>OB = OC</math>.
 +
 
 +
<br>
 +
By SSS Congruency, <math>\triangle ABO \cong \triangle ACO</math>, so <math>\angle BAO = \angle CAO = 30^\circ</math>.
 +
 
 +
<br>
 +
Finally, by SSS Congruency, <math>\triangle ABO \cong \triangle EBO</math>, so <math>\angle BEO = 30^\circ</math>.  Thus, <math>\angle OED = 60^\circ</math>, making <math>\triangle OED</math> equilateral, so the radius of the circle is <math>\boxed{\textbf{(C) }1}</math>.
 +
 
 +
===Solution 2===
 +
 
 +
<asy>
 +
draw(circle((0,0),100));
 +
draw((-50,-86.603)--(50,-86.603)--(50,13.397)--(50,13.397)--(0,100)--(-50,13.397)--(-50,-86.603));
 +
draw((-50,-86.603)--(0,100)--(50,-86.603));
 +
</asy>
 +
 
 +
Draw lines connecting the top vertex of the equilateral triangle to the bottom two vertices of the square (as seen in the diagram).  This means that the circle is the [[circumcircle]] of the triangle shown above.
 +
 
 +
<br>
 +
From the [[Law of Cosines]], the distance of each of the remaining sides is <math>\sqrt{1 + 1 - 2\cdot \cos(150^\circ)} = \sqrt{2 + \sqrt{3}}</math>.
 +
 
 +
<br>
 +
Now we need to find the length of the circumradius.  It can be done in a number of ways, but we’re going to be using the area formula <math>A = \tfrac{abc}{4R}</math>.
 +
 
 +
<br>
 +
The area of the triangle is <math>(1 + \tfrac{\sqrt{3}}{4}) - (2 \cdot \tfrac 12 \cdot \sin{150^\circ}) = \tfrac{2 + \sqrt{3}}{4}</math>.  The product of the sides of the triangle is <math>1 \cdot (\sqrt{2 + \sqrt{3}})^2 = 2 + \sqrt{3}</math>.  Plugging the values in the area formula yields
 +
<cmath>\frac{2 + \sqrt{3}}{4} = \frac{2 + \sqrt{3}}{4R}</cmath>
 +
<cmath>R = 1</cmath>
 +
The length of the radius of the circle is <math>\boxed{\textbf{(C) }1}</math>.
 +
 
 +
==See Also==
 +
{{iTest box|year=2007|num-b=14|num-a=16}}
 +
 
 +
[[Category:Intermediate Geometry Problems]]

Latest revision as of 21:01, 29 July 2018

Problem

Form a pentagon by taking a square of side length 1 and an equilateral triangle of side length 1, and placing the triangle so that one of its sides coincides with a side of the square. Then "circumscribe" a circle around the pentagon, passing through three of its vertices, so that the circle passes through exactly one of the vertices of the equilateral triangle, and through exactly two vertices of the square. What is the radius of the circle?

$\text{(A) }\frac{2}{3}\qquad \text{(B) }\frac{3}{4}\qquad \text{(C) }1\qquad \text{(D) }\frac{5}{4}\qquad \text{(E) }\frac{4}{3}\qquad \text{(F) }\frac{\sqrt{2}}{2}\qquad \text{(G) }\frac{\sqrt{3}}{2}\qquad \text{(H) }\sqrt{2}\qquad$

$\text{(I) }\sqrt{3}\qquad \text{(J) }\frac{1+\sqrt{3}}{2}\qquad \text{(K) }\frac{2+\sqrt{6}}{2}\qquad \text{(L) }\frac{7}{6}\qquad \text{(M) }\frac{2+\sqrt{6}}{4}\qquad \text{(N) }\frac{4}{5}\qquad \text{(O) }2007\qquad$

Solutions

Solution 1

[asy] draw(circle((0,0),100)); pair O=(0,0), A=(0,100), B=(-50,13.397), C=(50,13.397), D=(50,-86.603), E=(-50,-86.603); draw(B--E--D--C--A--B); dot(A); label("$A$",A,N); dot(B); label("$B$",B,NW); dot(C); label("$C$",C,NE); dot(E); label("$E$",E,SW); dot(D); label("$D$",D,SE); dot((0,0)); label("$O$",(0,-5),S);  draw(O--A); draw(O--B); draw(O--C); draw(O--D); draw(O--E);  [/asy]

Let $A,B,C$ be points of the equilateral triangle, $B,C,D,E$ be points of the square, and $O$ be the center of the circle.


By the Base Angle Theorem, $\angle OED = \angle ODE$, so $\angle BEO = \angle CDO$. Since $OD = OE$, by SAS Congruency, $\triangle BEO \cong \triangle CDO$, so $OB = OC$.


By SSS Congruency, $\triangle ABO \cong \triangle ACO$, so $\angle BAO = \angle CAO = 30^\circ$.


Finally, by SSS Congruency, $\triangle ABO \cong \triangle EBO$, so $\angle BEO = 30^\circ$. Thus, $\angle OED = 60^\circ$, making $\triangle OED$ equilateral, so the radius of the circle is $\boxed{\textbf{(C) }1}$.

Solution 2

[asy] draw(circle((0,0),100)); draw((-50,-86.603)--(50,-86.603)--(50,13.397)--(50,13.397)--(0,100)--(-50,13.397)--(-50,-86.603)); draw((-50,-86.603)--(0,100)--(50,-86.603)); [/asy]

Draw lines connecting the top vertex of the equilateral triangle to the bottom two vertices of the square (as seen in the diagram). This means that the circle is the circumcircle of the triangle shown above.


From the Law of Cosines, the distance of each of the remaining sides is $\sqrt{1 + 1 - 2\cdot \cos(150^\circ)} = \sqrt{2 + \sqrt{3}}$.


Now we need to find the length of the circumradius. It can be done in a number of ways, but we’re going to be using the area formula $A = \tfrac{abc}{4R}$.


The area of the triangle is $(1 + \tfrac{\sqrt{3}}{4}) - (2 \cdot \tfrac 12 \cdot \sin{150^\circ}) = \tfrac{2 + \sqrt{3}}{4}$. The product of the sides of the triangle is $1 \cdot (\sqrt{2 + \sqrt{3}})^2 = 2 + \sqrt{3}$. Plugging the values in the area formula yields \[\frac{2 + \sqrt{3}}{4} = \frac{2 + \sqrt{3}}{4R}\] \[R = 1\] The length of the radius of the circle is $\boxed{\textbf{(C) }1}$.

See Also

2007 iTest (Problems, Answer Key)
Preceded by:
Problem 14
Followed by:
Problem 16
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 TB1 TB2 TB3 TB4