2021 AMC 12B Problems/Problem 8: Difference between revisions
Martin wang (talk | contribs) |
|||
| (38 intermediate revisions by 21 users not shown) | |||
| Line 1: | Line 1: | ||
==Problem | {{duplicate|[[2021 AMC 10B Problems#Problem 14|2021 AMC 10B #14]] and [[2021 AMC 12B Problems#Problem 8|2021 AMC 12B #8]]}} | ||
==Problem== | |||
Three equally spaced parallel lines intersect a circle, creating three chords of lengths <math>38,38,</math> and <math>34</math>. What is the distance between two adjacent parallel lines? | Three equally spaced parallel lines intersect a circle, creating three chords of lengths <math>38,38,</math> and <math>34</math>. What is the distance between two adjacent parallel lines? | ||
<math>\textbf{(A) }5\frac12 \qquad \textbf{(B) }6 \qquad \textbf{(C) }6\frac12 \qquad \textbf{(D) }7 \qquad \textbf{(E) }7\frac12</math> | <math>\textbf{(A) }5\frac12 \qquad \textbf{(B) }6 \qquad \textbf{(C) }6\frac12 \qquad \textbf{(D) }7 \qquad \textbf{(E) }7\frac12</math> | ||
==Solution 1 (Pythagorean Theorem)== | |||
<asy> | |||
size(8cm); | |||
pair O = (0, 0), A = (0, 3), B = (0, 9), R = (19, 3), L = (17, 9); | |||
draw(O--A--B); | |||
draw(O--R); | |||
draw(O--L); | |||
label("$A$", A, NE); | |||
label("$B$", B, N); | |||
label("$R$", R, NE); | |||
label("$L$", L, NE); | |||
label("$O$", O, S); | |||
label("$d$", O--A, W); | |||
label("$2d$", A--B, W); | |||
label("$r$", O--R, S); | |||
label("$r$", O--L, NW); | |||
dot(O); | |||
dot(A); | |||
dot(B); | |||
dot(R); | |||
dot(L); | |||
draw(circle((0, 0), sqrt(370))); | |||
draw(-R -- (R.x, -R.y)); | |||
draw((-R.x, R.y) -- R); | |||
draw((-L.x, L.y) -- L); | |||
</asy> | |||
Since | Since two parallel chords have the same length (<math>38</math>), they must be equidistant from the center of the circle. Let the perpendicular distance of each chord from the center of the circle be <math>d</math>. Thus, the distance from the center of the circle to the chord of length <math>34</math> is | ||
<cmath>2d + d = 3d</cmath> | <cmath>2d + d = 3d</cmath> | ||
and the distance between each of the chords is just <math>2d</math>. Let the radius of the circle be <math>r</math>. Drawing radii to the points where the | and the distance between each of the chords is just <math>2d</math>. Let the radius of the circle be <math>r</math>. Drawing radii to the points where the lines intersect the circle, we create two different right triangles: | ||
- One with base <math>\frac{38}{2}= 19</math>, height <math>d</math>, and hypotenuse <math>r</math> | - One with base <math>\frac{38}{2}= 19</math>, height <math>d</math>, and hypotenuse <math>r</math> (<math>\triangle RAO</math> on the diagram) | ||
- Another with base <math>\frac{34}{2} = 17</math>, height <math>3d</math>, and hypotenuse <math>r</math> | - Another with base <math>\frac{34}{2} = 17</math>, height <math>3d</math>, and hypotenuse <math>r</math> (<math>\triangle LBO</math> on the diagram) | ||
By the Pythagorean theorem, we can create the following | By the Pythagorean theorem, we can create the following system of equations: | ||
<cmath>19^2 + d^2 = r^2</cmath> | |||
<cmath>17^2 + (2d + d)^2 = r^2</cmath> | |||
Solving, we find <math>d = 3</math>, so <math>2d = \boxed{\textbf{(B)}\ 6}</math>. | |||
~Joeya (Solution) | |||
~Jamess2022 (burntTacos) (Diagram) | |||
~lpieleanu (Minor Edits) | |||
==Solution 2 (Coordinates)== | |||
Because we know that the equation of a circle is <math>(x-a)^2 + (y-b)^2 = r^2</math> where the center of the circle is <math>(a, b)</math> and the radius is <math>r</math>, we can find the equation of this circle by centering it on the origin. Doing this, we get that the equation is <math>x^2 + y^2 = r^2</math>. Now, we can set the distance between the chords as <math>2d</math> so the distance from the chord with length <math>38</math> to the diameter is <math>d</math>. | |||
Therefore, the following points are on the circle as the y-axis splits the chord in half, that is where we get our <math>x</math> value: | |||
<math>(19, d)</math> | |||
<math>(19, -d)</math> | |||
<math>(17, -3d)</math> | |||
Now, we can plug one of the first two value in as well as the last one to get the following equations: | |||
<cmath>19^2 + d^2 = r^2</cmath> | <cmath>19^2 + d^2 = r^2</cmath> | ||
| Line 23: | Line 78: | ||
<cmath>17^2 + (3d)^2 = r^2</cmath> | <cmath>17^2 + (3d)^2 = r^2</cmath> | ||
Subtracting these two equations, we get <math>19^2 - 17^2 = 8d^2</math> - therefore, we get <math>72 = 8d^2 \rightarrow d^2 = 9 \rightarrow d = 3</math>. We want to find <math>2d = 6</math> because that's the distance between two chords. So, our answer is <math>\boxed{B}</math>. | |||
~Tony_Li2007 ~minor edits Marshall_Huang | |||
==Solution 3 (Stewart's Theorem)== | |||
<asy> | |||
real r=sqrt(370); | |||
draw(circle((0, 0), r)); | |||
pair A = (-19, 3); | |||
pair B = (19, 3); | |||
draw(A--B); | |||
pair C = (-19, -3); | |||
pair D = (19, -3); | |||
draw(C--D); | |||
pair E = (-17, -9); | |||
pair F = (17, -9); | |||
draw(E--F); | |||
pair O = (0, 0); | |||
pair P = (0, -3); | |||
pair Q = (0, -9); | |||
draw(O--Q); | |||
draw(O--C); | |||
draw(O--D); | |||
draw(O--E); | |||
draw(O--F); | |||
label("$O$", O, N); | |||
label("$C$", C, SW); | |||
label("$D$", D, SE); | |||
label("$E$", E, SW); | |||
label("$F$", F, SE); | |||
label("$P$", P, SW); | |||
label("$Q$", Q, S); | |||
</asy> | |||
If <math>d</math> is the requested distance, and <math>r</math> is the radius of the circle, Stewart's Theorem applied to <math>\triangle OCD</math> with cevian <math>\overleftrightarrow{OP}</math> gives <cmath>19\cdot 38\cdot 19 + \tfrac{1}{2}d\cdot 38\cdot\tfrac{1}{2}d=19r^{2}+19r^{2}.</cmath> This simplifies to <math>13718+\tfrac{19}{2}d^{2}=38r^{2}</math>. Similarly, another round of Stewart's Theorem applied to <math>\triangle OEF</math> with cevian <math>\overleftrightarrow{OQ}</math> gives <cmath>17\cdot 34\cdot 17 + \tfrac{3}{2}d\cdot 34\cdot\tfrac{3}{2}d=17r^{2}+17r^{2}.</cmath> This simplifies to <math>9826+\tfrac{153}{2}d^{2}=34r^{2}</math>. Dividing the top equation by <math>38</math> and the bottom equation by <math>34</math> results in the system of equations | |||
<cmath>\begin{align*} | |||
361+\tfrac{1}{4}d^{2} &= r^{2} \\ | |||
289+\tfrac{9}{4}d^{2} &= r^{2} \\ | |||
\end{align*}</cmath> | |||
By transitive, <math>361+\tfrac{1}{4}d^{2}=289+\tfrac{9}{4}d^{2}</math>. Therefore <math>(\tfrac{9}{4}-\tfrac{1}{4})d^{2}=361-289\rightarrow 2d^{2}=72\rightarrow d^{2}=36\rightarrow d=\boxed{\textbf{(B)} ~6}.</math> | |||
~Punxsutawney Phil | |||
==Video Solution (Super Fast. Just 1 min!)== | |||
https://youtu.be/145UJbG4aCQ | |||
~Education, the Study of Everything | |||
==Video Solution by Hawk Math== | |||
https://www.youtube.com/watch?v=VzwxbsuSQ80 | |||
==Video Solution by Punxsutawney Phil== | |||
https://youtu.be/yxt8-rUUosI | |||
This is a private video | |||
== Video Solution by OmegaLearn (Circular Geometry) == | |||
https://youtu.be/XNYq4ZMBtBU | |||
~pi_is_3.14 | |||
==Video Solution by TheBeautyofMath== | |||
https://youtu.be/L1iW94Ue3eI?t=1118 (for AMC 10B) | |||
https://youtu.be/kuZXQYHycdk?t=574 (for AMC 12B) | |||
~IceMatrix | |||
==Video Solution by Interstigation== | |||
https://youtu.be/lYxKkS252Og | |||
~Interstigation | |||
- | ==See Also== | ||
{{AMC12 box|year=2021|ab=B|num-b=7|num-a=9}} | |||
{{AMC10 box|year=2021|ab=B|num-b=13|num-a=15}} | |||
{{MAA Notice}} | |||
Latest revision as of 17:49, 3 August 2025
- The following problem is from both the 2021 AMC 10B #14 and 2021 AMC 12B #8, so both problems redirect to this page.
Problem
Three equally spaced parallel lines intersect a circle, creating three chords of lengths
and
. What is the distance between two adjacent parallel lines?
Solution 1 (Pythagorean Theorem)
Since two parallel chords have the same length (
), they must be equidistant from the center of the circle. Let the perpendicular distance of each chord from the center of the circle be
. Thus, the distance from the center of the circle to the chord of length
is
and the distance between each of the chords is just
. Let the radius of the circle be
. Drawing radii to the points where the lines intersect the circle, we create two different right triangles:
- One with base
, height
, and hypotenuse
(
on the diagram)
- Another with base
, height
, and hypotenuse
(
on the diagram)
By the Pythagorean theorem, we can create the following system of equations:
Solving, we find
, so
.
~Joeya (Solution) ~Jamess2022 (burntTacos) (Diagram) ~lpieleanu (Minor Edits)
Solution 2 (Coordinates)
Because we know that the equation of a circle is
where the center of the circle is
and the radius is
, we can find the equation of this circle by centering it on the origin. Doing this, we get that the equation is
. Now, we can set the distance between the chords as
so the distance from the chord with length
to the diameter is
.
Therefore, the following points are on the circle as the y-axis splits the chord in half, that is where we get our
value:
Now, we can plug one of the first two value in as well as the last one to get the following equations:
Subtracting these two equations, we get
- therefore, we get
. We want to find
because that's the distance between two chords. So, our answer is
.
~Tony_Li2007 ~minor edits Marshall_Huang
Solution 3 (Stewart's Theorem)
If
is the requested distance, and
is the radius of the circle, Stewart's Theorem applied to
with cevian
gives
This simplifies to
. Similarly, another round of Stewart's Theorem applied to
with cevian
gives
This simplifies to
. Dividing the top equation by
and the bottom equation by
results in the system of equations
By transitive,
. Therefore
~Punxsutawney Phil
Video Solution (Super Fast. Just 1 min!)
~Education, the Study of Everything
Video Solution by Hawk Math
https://www.youtube.com/watch?v=VzwxbsuSQ80
Video Solution by Punxsutawney Phil
This is a private video
Video Solution by OmegaLearn (Circular Geometry)
~pi_is_3.14
Video Solution by TheBeautyofMath
https://youtu.be/L1iW94Ue3eI?t=1118 (for AMC 10B)
https://youtu.be/kuZXQYHycdk?t=574 (for AMC 12B)
~IceMatrix
Video Solution by Interstigation
~Interstigation
See Also
| 2021 AMC 12B (Problems • Answer Key • Resources) | |
| Preceded by Problem 7 |
Followed by Problem 9 |
| 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 | |
| All AMC 12 Problems and Solutions | |
| 2021 AMC 10B (Problems • Answer Key • Resources) | ||
| Preceded by Problem 13 |
Followed by Problem 15 | |
| 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 | ||
| All AMC 10 Problems and Solutions | ||
These problems are copyrighted © by the Mathematical Association of America, as part of the American Mathematics Competitions. Error creating thumbnail: File missing