Difference between revisions of "2021 AMC 12B Problems/Problem 8"
Cellsecret (talk | contribs) (→Video Solution by Interstigation) |
Martin wang (talk | contribs) m (→Solution 2 (Coordinates)) |
||
| (12 intermediate revisions by 9 users not shown) | |||
| Line 6: | Line 6: | ||
<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== | + | ==Solution 1 (Pythagorean Theorem)== |
<asy> | <asy> | ||
| − | size( | + | size(8cm); |
| − | pair O = (0, | + | pair O = (0, 0), A = (0, 3), B = (0, 9), R = (19, 3), L = (17, 9); |
draw(O--A--B); | draw(O--A--B); | ||
draw(O--R); | draw(O--R); | ||
draw(O--L); | draw(O--L); | ||
| − | label("$A$", A, | + | label("$A$", A, NE); |
label("$B$", B, N); | label("$B$", B, N); | ||
label("$R$", R, NE); | label("$R$", R, NE); | ||
| − | label("$L$", L, | + | label("$L$", L, NE); |
label("$O$", O, S); | label("$O$", O, S); | ||
label("$d$", O--A, W); | label("$d$", O--A, W); | ||
| − | label("$2d$", A--B, W | + | label("$2d$", A--B, W); |
label("$r$", O--R, S); | label("$r$", O--R, S); | ||
| − | label("$r$", O--L, | + | label("$r$", O--L, NW); |
dot(O); | dot(O); | ||
dot(A); | dot(A); | ||
| Line 29: | Line 29: | ||
dot(L); | dot(L); | ||
| − | draw(circle((0, | + | draw(circle((0, 0), sqrt(370))); |
| − | draw | + | draw(-R -- (R.x, -R.y)); |
| − | draw((- | + | draw((-R.x, R.y) -- R); |
| − | draw((- | + | draw((-L.x, L.y) -- L); |
</asy> | </asy> | ||
| Line 45: | Line 45: | ||
- 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) | - 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> | + | - 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 system of equations: | By the Pythagorean theorem, we can create the following system of equations: | ||
| Line 55: | Line 55: | ||
Solving, we find <math>d = 3</math>, so <math>2d = \boxed{\textbf{(B)}\ 6}</math>. | 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)== | ==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 38 to the diameter is <math>d</math>. | + | 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 x value: | + | 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> | ||
| Line 79: | Line 80: | ||
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>. | 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 | + | ~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== | ==Video Solution by Hawk Math== | ||
| Line 86: | Line 130: | ||
==Video Solution by Punxsutawney Phil== | ==Video Solution by Punxsutawney Phil== | ||
https://youtu.be/yxt8-rUUosI | https://youtu.be/yxt8-rUUosI | ||
| + | |||
| + | This is a private video | ||
== Video Solution by OmegaLearn (Circular Geometry) == | == Video Solution by OmegaLearn (Circular Geometry) == | ||
https://youtu.be/XNYq4ZMBtBU | https://youtu.be/XNYq4ZMBtBU | ||
| + | |||
| + | ~pi_is_3.14 | ||
==Video Solution by TheBeautyofMath== | ==Video Solution by TheBeautyofMath== | ||
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.
Contents
- 1 Problem
- 2 Solution 1 (Pythagorean Theorem)
- 3 Solution 2 (Coordinates)
- 4 Solution 3 (Stewart's Theorem)
- 5 Video Solution (Super Fast. Just 1 min!)
- 6 Video Solution by Hawk Math
- 7 Video Solution by Punxsutawney Phil
- 8 Video Solution by OmegaLearn (Circular Geometry)
- 9 Video Solution by TheBeautyofMath
- 10 Video Solution by Interstigation
- 11 See Also
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.