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...") |
Rockmanex3 (talk | contribs) (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 | + | 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>\ | + | <math>\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</math> | |
− | |||
− | \ | ||
− | |||
− | \ | ||
− | \ | ||
− | \ | ||
− | \ | ||
− | == 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 20: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?
Solutions
Solution 1
Let be points of the equilateral triangle, be points of the square, and be the center of the circle.
By the Base Angle Theorem, , so . Since , by SAS Congruency, , so .
By SSS Congruency, , so .
Finally, by SSS Congruency, , so . Thus, , making equilateral, so the radius of the circle is .
Solution 2
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 .
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 .
The area of the triangle is . The product of the sides of the triangle is . Plugging the values in the area formula yields
The length of the radius of the circle is .
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 |