2024 AMC 12A Problems/Problem 19: Difference between revisions
Cheltstudent (talk | contribs) No edit summary |
|||
| (16 intermediate revisions by 6 users not shown) | |||
| Line 11: | Line 11: | ||
size(200); | size(200); | ||
pair A = (-1.66, 0.33); | pair A = (-1.66, 0.33); | ||
pair B = (-9.61277, 1.19799); | pair B = (-9.61277, 1.19799); | ||
| Line 60: | Line 59: | ||
~lptoggled, | ~lptoggled,eevee9406, meh494 | ||
==Solution 2 (Law of Cosines + Law of Sines)== | ==Solution 2 (Law of Cosines + Law of Sines)== | ||
| Line 74: | Line 73: | ||
~evanhliu2009 | ~evanhliu2009 | ||
==Video Solution by SpreadTheMathLove== | ==Solution 3 (Law of Cosines + Cyclic Quadrilateral Property)== | ||
Draw diagonals <math>AC</math> and <math>BD</math>. First, use Law of Cosines to get that | |||
\begin{align*} | |||
AC^2&=3^2 + 5^2 - 2(3)(5)\cos(120^{\circ}) \\ | |||
&= 9+25+15 \\ | |||
&=49. | |||
\end{align*} | |||
Thus, <math>AC=7</math>. Since <math>ABCD</math> is cyclic, <math>\angle CAD = \angle CBD</math>, so Law of Cosines once again with respect to <math>\angle CAD</math> on triangle <math>ACD</math> leads to | |||
\begin{align*} | |||
9&=5^2+7^2-2(7)(5)\cos\theta \\ | |||
&= 74-70\cos\theta. \\ | |||
\end{align*} | |||
Solving yields <math>\cos\theta=\frac{13}{14}</math>. Finally, in <math>\triangle CBD</math>, we have <math>BD=6\cos\theta \implies \boxed{\textbf{(D) }\frac{39}{7}}</math>. | |||
~SirAppel | |||
==Solution 4 (Law of Cosines+Law of Sines+Trig Identities)== | |||
Let <math>\angle BCA = x, \angle DCA = y</math>. If we know <math>\cos(x+y)</math> we can compute <math>BD</math>. Notice that <cmath>\cos(x+y)=\cos(x)\cos(y)-\sin(x)\sin(y)</cmath>. Now it remains to find all 4 terms in this equation. Applying Law of Cosines on triangle <math>ABC</math> to find <math>\cos(x)</math>, we find that <math>\cos(x)=-\frac{6}{42}=-\frac{1}{7}</math>. Similarly we find that <math>\cos(y)=\frac{11}{14}</math>. Now we compute <math>\sin(x)</math> and <math>\sin(y)</math>. Applying Law of Sines on triangle <math>ABC</math> we see that <math>\frac{\sin(x)}{8}=\frac{\sin(\frac{\pi}{3})}{7}</math>, or <math>\sin(x)=\frac{4\sqrt{3}}{7}</math>. Similarly <math>\sin(y)=\frac{5\sqrt{3}}{14}</math>. Now <math>\cos(x+y)=-\frac{71}{98}</math>. Let <math>BD=k</math>, we see that <math>k^2=3^2+3^2+2*3*3(\frac{71}{98})</math>. Solving for <math>k</math> yields <math>k=\frac{39}{7}</math>. | |||
~CreamyCream | |||
==Video Solution, Fast, Quick, Easy!== | |||
https://youtu.be/g4xdfcFgwGo | |||
https://youtu.be/RQucKqjdNv8 | |||
~MC | |||
==Video Solution 1 by SpreadTheMathLove== | |||
https://www.youtube.com/watch?v=f32mBtYTZp8 | https://www.youtube.com/watch?v=f32mBtYTZp8 | ||
==See | == See Also == | ||
{{AMC12 box|year=2024|ab=A|num-b=18|num-a=20}} | {{AMC12 box|year=2024|ab=A|num-b=18|num-a=20}} | ||
{{MAA Notice}} | {{MAA Notice}} | ||
==Solution 5 (Law of Cosines+Law of Sines+Trig Identities+Ptolemy's)== | |||
First of all, we see that this is a cyclic quadrilateral problem. This makes us happy, as there are literally 2 things in a cyclic quadrilateral problem: Ptolemy's and the opposite angles sum to 180 degrees. These are useful theorems so we write them down beside our nicely drawn diagram. We now proceed to trig bash. LoC on triangle ABC yields: | |||
<math>AC^2 = 5^2 + 3^2 - 2(3)(5)(\cos 120^\circ)</math> | |||
<math>AC = 7</math> | |||
Now, our idea is to find side <math>AB</math> and then use Ptolemy's to find the other diagonal. | |||
LoS on <math>\triangle{ABC}</math> yields: | |||
<math>\frac{7}{\sin 60}</math> = <math>\frac{3}{\sin\angle{BAC}}</math> -> Note that <math>\angle{ABC} = 60^\circ</math>, due to opposite angles in a cyclic quadrilateral summing to <math>180^\circ</math>. | |||
<math>\sin\angle{BAC} = \frac{3\sqrt{3}}{14}</math> | |||
Now note that <math>\sin^2\theta + \cos^2\theta = 1</math> | |||
This allows us to find <math>\cos\angle{BAC} = \sqrt{1- (\frac{3\sqrt{3}}{14})^2} = \frac{13}{14}</math> | |||
Now, LoC again on <math>\triangle{ABC}</math> gives us <math>AB</math>: | |||
Let <math>AB = x</math>: | |||
<math>x^2 + 7^2 - 2(7)(x)(\cos\angle{BAC} = 3^2</math> | |||
<math>x^2 -13x +40 = 0</math> | |||
<math>x = 5</math> and <math>x = 8</math> | |||
Note that at this stage we can deduce that if we would have taken <math>\cos\angle{BAC} = -\frac{13}{14}</math>, then <math>AB</math> would have negative values. | |||
Applying Ptolemy's: | |||
<math>15 + 15 = 7(BD)</math> -> <math>BD = \frac{30}{7}</math> | |||
<math>24 + 15 = 7(BD)</math> -> <math>BD = \frac{39}{7}</math> | |||
However, <math>\frac{30}{7}</math> isn't in the options, so we conclude <math>\boxed{D}</math>. | |||
~ cheltstudent | |||
I'm norz | |||
Latest revision as of 09:26, 28 October 2025
Problem
Cyclic quadrilateral
has lengths
and
with
. What is the length of the shorter diagonal of
?
Solution 1
~diagram by erics118
First,
by properties of cyclic quadrilaterals.
Let
. Apply the Law of Cosines on
:
Let
. Apply the Law of Cosines on
:
By Ptolemy’s Theorem,
Since
,
The answer is
.
~lptoggled,eevee9406, meh494
Solution 2 (Law of Cosines + Law of Sines)
Draw diagonals
and
. By Law of Cosines,
\begin{align*}
AC^2&=3^2 + 5^2 - 2(3)(5)\cos \left(\frac{2\pi}{3} \right) \\
&= 9+25 +15 \\
&=49.
\end{align*}
Since
is positive, taking the square root gives
Let
. Since
is isosceles, we have
. Notice we can eventually solve
using the Extended Law of Sines:
where
is the radius of the circumcircle
. Since
, we simply our equation:
Now we just have to find
and
. Since
is cyclic, we have
. By Law of Cosines on
, we have
Thus,
Similarly, by Law of Sines on
, we have
Hence,
. Now, using Law of Sines on
, we have
so
Therefore,
Solving,
so the answer is
.
~evanhliu2009
Solution 3 (Law of Cosines + Cyclic Quadrilateral Property)
Draw diagonals
and
. First, use Law of Cosines to get that
\begin{align*}
AC^2&=3^2 + 5^2 - 2(3)(5)\cos(120^{\circ}) \\
&= 9+25+15 \\
&=49.
\end{align*}
Thus,
. Since
is cyclic,
, so Law of Cosines once again with respect to
on triangle
leads to
\begin{align*}
9&=5^2+7^2-2(7)(5)\cos\theta \\
&= 74-70\cos\theta. \\
\end{align*}
Solving yields
. Finally, in
, we have
.
~SirAppel
Solution 4 (Law of Cosines+Law of Sines+Trig Identities)
Let
. If we know
we can compute
. Notice that
. Now it remains to find all 4 terms in this equation. Applying Law of Cosines on triangle
to find
, we find that
. Similarly we find that
. Now we compute
and
. Applying Law of Sines on triangle
we see that
, or
. Similarly
. Now
. Let
, we see that
. Solving for
yields
.
~CreamyCream
Video Solution, Fast, Quick, Easy!
~MC
Video Solution 1 by SpreadTheMathLove
https://www.youtube.com/watch?v=f32mBtYTZp8
See Also
| 2024 AMC 12A (Problems • Answer Key • Resources) | |
| Preceded by Problem 18 |
Followed by Problem 20 |
| 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 | |
These problems are copyrighted © by the Mathematical Association of America, as part of the American Mathematics Competitions. Error creating thumbnail: File missing
Solution 5 (Law of Cosines+Law of Sines+Trig Identities+Ptolemy's)
First of all, we see that this is a cyclic quadrilateral problem. This makes us happy, as there are literally 2 things in a cyclic quadrilateral problem: Ptolemy's and the opposite angles sum to 180 degrees. These are useful theorems so we write them down beside our nicely drawn diagram. We now proceed to trig bash. LoC on triangle ABC yields:
Now, our idea is to find side
and then use Ptolemy's to find the other diagonal.
LoS on
yields:
=
-> Note that
, due to opposite angles in a cyclic quadrilateral summing to
.
Now note that
This allows us to find
Now, LoC again on
gives us
:
Let
:
and
Note that at this stage we can deduce that if we would have taken
, then
would have negative values.
Applying Ptolemy's:
->
->
However,
isn't in the options, so we conclude
.
~ cheltstudent
I'm norz