Difference between revisions of "2022 AMC 10A Problems/Problem 15"
Eashanshetty (talk | contribs) (→Solution 2 (Brahmagupta Formula)) |
(→Solution 3 (Circumradius's Formula)) |
||
(35 intermediate revisions by 10 users not shown) | |||
Line 5: | Line 5: | ||
<math>\textbf{(A) } 260 \qquad \textbf{(B) } 855 \qquad \textbf{(C) } 1235 \qquad \textbf{(D) } 1565 \qquad \textbf{(E) } 1997</math> | <math>\textbf{(A) } 260 \qquad \textbf{(B) } 855 \qquad \textbf{(C) } 1235 \qquad \textbf{(D) } 1565 \qquad \textbf{(E) } 1997</math> | ||
− | == | + | ==Diagram== |
− | < | + | <asy> |
+ | /* Made by MRENTHUSIASM */ | ||
+ | size(200); | ||
+ | pair O, A, B, C, D; | ||
+ | O = origin; | ||
+ | A = (-25/2,0); | ||
+ | C = (25/2,0); | ||
+ | B = intersectionpoints(Circle(A,7),Circle(C,24))[0]; | ||
+ | D = intersectionpoints(Circle(A,15),Circle(C,20))[1]; | ||
+ | fill(Circle(O,25/2),yellow); | ||
+ | fill(A--B--C--D--cycle,white); | ||
+ | dot("$A$",A,1.5*W,linewidth(4)); | ||
+ | dot("$B$",B,1.5*dir(B),linewidth(4)); | ||
+ | dot("$C$",C,1.5*E,linewidth(4)); | ||
+ | dot("$D$",D,1.5*dir(D),linewidth(4)); | ||
+ | dot(O,linewidth(4)); | ||
+ | draw(Circle(O,25/2)); | ||
+ | draw(A--B--C--D--cycle); | ||
+ | label("$7$",midpoint(A--B),rotate(90)*dir(midpoint(A--B)--A)); | ||
+ | label("$24$",midpoint(B--C),rotate(-90)*dir(midpoint(B--C)--B)); | ||
+ | label("$20$",midpoint(C--D),rotate(-90)*dir(midpoint(C--D)--C)); | ||
+ | label("$15$",midpoint(D--A),rotate(90)*dir(midpoint(D--A)--D)); | ||
+ | </asy> | ||
+ | ~MRENTHUSIASM | ||
− | + | ==Solution 1 (Inscribed Angle Theorem)== | |
Opposite angles of every cyclic quadrilateral are supplementary, so <cmath>\angle B + \angle D = 180^{\circ}.</cmath> | Opposite angles of every cyclic quadrilateral are supplementary, so <cmath>\angle B + \angle D = 180^{\circ}.</cmath> | ||
Line 24: | Line 47: | ||
~MRENTHUSIASM | ~MRENTHUSIASM | ||
− | == Solution 2 (Brahmagupta Formula)== | + | == Solution 2 (Brahmagupta‘s Formula)== |
+ | |||
+ | When we look at the side lengths of the quadrilateral we see <math>7</math> and <math>24,</math> which screams out <math>25</math> because of Pythagorean triplets. As a result, we can draw a line through points <math>A</math> and <math>C</math> to make a diameter of <math>25.</math> See Solution 1 for a rigorous proof. | ||
+ | |||
+ | This can also be shown using the Law of Cosines: Since <math>7^2+24^2-2\cdot7\cdot24\cdot\cos B=15^2+20^2-2\cdot15\cdot20\cdot\cos D</math> and <math>\cos B + \cos D = 0,</math> it follows that <math>\cos B = \cos D = 0.</math> | ||
+ | |||
+ | Since the diameter is <math>25,</math> we can see the area of the circle is just <math>\frac{625\pi}{4}</math> from the formula of the area of the circle with just a diameter. | ||
+ | |||
+ | Then we can use Brahmagupta Formula <math>\sqrt{(s - a)(s - b)(s - c)(s - d)}</math> where <math>a,b,c,d</math> are side lengths, and <math>s</math> is semi-perimeter to find the area of the quadrilateral. | ||
+ | |||
+ | You can find the answer to this quickly by noting that <math>\sqrt{(33-7)(33-24)(33-20)(33-15)} = \sqrt{(26)(9)(13)(18)} = \sqrt{2^2 \cdot 3^4 \cdot 13^2} = 2 \cdot 9 \cdot 13 = 234</math>. So now the area of the region we are trying to find is <math>\frac{625\pi}{4} - 234 = \frac{625\pi-936}{4}.</math> | ||
− | |||
Therefore, the answer is <math>a+b+c=\boxed{\textbf{(D) } 1565}.</math> | Therefore, the answer is <math>a+b+c=\boxed{\textbf{(D) } 1565}.</math> | ||
− | ~Gdking | + | ~Gdking ~Oinava ~[https://artofproblemsolving.com/wiki/index.php/User:South South] |
+ | |||
+ | == Solution 3 (Circumradius's Formula) == | ||
+ | |||
+ | We can guess that this quadrilateral is actually made of two right triangles: <math>\triangle CDA</math> has a <math>3 \text{-} 4 \text{-} 5</math> ratio in the side lengths, and <math>\triangle ABC</math> is a <math>7 \text{-} 24 \text{-} 25</math> triangle. | ||
+ | (See Solution 1 for a proof.) | ||
+ | |||
+ | Next, we can choose one of these triangles and use the circumradius formula to find the radius. Let's choose the <math>15-20-25</math> triangle. The area of the triangle is equal to the product of the side lengths divided by <math>4</math> times the circumradius. Therefore, <math>150 = \frac{15\cdot20\cdot25}{4r}</math>. Solving this simple algebraic equation gives us <math>r = \frac{25}{2}</math>. | ||
+ | |||
+ | Plugging in the values, we have <math>\frac{25}{2}^2\cdot\pi - \left(\frac{15\cdot20}{2}+\frac{7\cdot24}{2}\right) = \frac{625\cdot\pi}{4} - 234</math>. Rewriting this gives us <math>\frac{625\pi-936}{4}</math>. | ||
+ | |||
+ | Therefore, adding these values gets us <math>\boxed{\textbf{(D) } 1565}.</math> | ||
+ | |||
+ | ~[[OrenSH|orenbad]] | ||
+ | |||
+ | ==Solution 4 (Complete Bash mix of Brahmagupta's and some other random formulas that you probably don't know)== | ||
+ | |||
+ | To start, we can apply a couple formulas to find the circumradius and the area of the cyclic quadrilateral, and then just subtract the area of the quadrilateral from the area of the circle, and that is our final answer. This formula is really tedious with many calculations so don't do this in a contest. To find the circumradius we have: <cmath>\text{Circumradius} = \frac{1}{4} \sqrt{\frac{(ab + cd)(ac + bd)(ad + bc)}{(s-a)(s-b)(s-c)(s-d)}}</cmath> | ||
+ | If we let <math>a = 7, b = 24, c = 20, \text{and}, d = 15</math>, that means that the semi-perimeter is just <cmath>\dfrac{7+24+20+15}{2} = 33</cmath>. Note that <math>s</math> stands for the semi-perimeter. The calculations will take very long so Im just going to skip to the answer of <math>\dfrac{25}{2}</math> as our circumradius. This means that the area of the circle is <math>\dfrac{625}{4}\pi</math>. Now applying Brahmagupta's formula to find the area of a cyclic quadrilateral which is just: <cmath>\sqrt{(s-a)(s-b)(s-c)(s-d)}</cmath>. Again we will use the same representations as these letters from before, so <math>a = 7, b = 24, c = 20, \text{and}, d = 15</math>. Plugging in the numbers we have that the area is <math>234</math>. To express our answer in the form that was asked at the top we have: <cmath>\dfrac{625\pi-936}{4}</cmath>, so our final answer is <cmath>625+936+4 = \boxed{\textbf{(D) } 1565}.</cmath> | ||
+ | |||
+ | -jb2015007 | ||
+ | |||
+ | ==Video Solution 1== | ||
+ | https://youtu.be/ZHuInvG82PY | ||
+ | |||
+ | ~Education, the Study of Everything | ||
+ | |||
+ | == Video Solution 2== | ||
+ | |||
+ | https://youtu.be/Ov9AA7veKKk | ||
+ | |||
+ | == Video Solution 3== | ||
+ | |||
+ | https://youtu.be/x3DrtvR3sQ8 | ||
+ | ==Video Solution by TheBeautyofMath== | ||
+ | https://youtu.be/0kkc4-y8TkU?t=1632 | ||
+ | ~IceMatrix | ||
== See Also == | == See Also == | ||
{{AMC10 box|year=2022|ab=A|num-b=14|num-a=16}} | {{AMC10 box|year=2022|ab=A|num-b=14|num-a=16}} | ||
{{MAA Notice}} | {{MAA Notice}} |
Latest revision as of 11:11, 13 January 2025
Contents
- 1 Problem
- 2 Diagram
- 3 Solution 1 (Inscribed Angle Theorem)
- 4 Solution 2 (Brahmagupta‘s Formula)
- 5 Solution 3 (Circumradius's Formula)
- 6 Solution 4 (Complete Bash mix of Brahmagupta's and some other random formulas that you probably don't know)
- 7 Video Solution 1
- 8 Video Solution 2
- 9 Video Solution 3
- 10 Video Solution by TheBeautyofMath
- 11 See Also
Problem
Quadrilateral with side lengths
is inscribed in a circle. The area interior to the circle but exterior to the quadrilateral can be written in the form
where
and
are positive integers such that
and
have no common prime factor. What is
Diagram
~MRENTHUSIASM
Solution 1 (Inscribed Angle Theorem)
Opposite angles of every cyclic quadrilateral are supplementary, so
We claim that
We can prove it by contradiction:
- If
then
and
are both acute angles. This arrives at a contradiction.
- If
then
and
are both obtuse angles. This arrives at a contradiction.
By the Inscribed Angle Theorem, we conclude that is the diameter of the circle. So, the radius of the circle is
The area of the requested region is
Therefore, the answer is
~MRENTHUSIASM
Solution 2 (Brahmagupta‘s Formula)
When we look at the side lengths of the quadrilateral we see and
which screams out
because of Pythagorean triplets. As a result, we can draw a line through points
and
to make a diameter of
See Solution 1 for a rigorous proof.
This can also be shown using the Law of Cosines: Since and
it follows that
Since the diameter is we can see the area of the circle is just
from the formula of the area of the circle with just a diameter.
Then we can use Brahmagupta Formula where
are side lengths, and
is semi-perimeter to find the area of the quadrilateral.
You can find the answer to this quickly by noting that . So now the area of the region we are trying to find is
Therefore, the answer is
~Gdking ~Oinava ~South
Solution 3 (Circumradius's Formula)
We can guess that this quadrilateral is actually made of two right triangles: has a
ratio in the side lengths, and
is a
triangle.
(See Solution 1 for a proof.)
Next, we can choose one of these triangles and use the circumradius formula to find the radius. Let's choose the triangle. The area of the triangle is equal to the product of the side lengths divided by
times the circumradius. Therefore,
. Solving this simple algebraic equation gives us
.
Plugging in the values, we have . Rewriting this gives us
.
Therefore, adding these values gets us
Solution 4 (Complete Bash mix of Brahmagupta's and some other random formulas that you probably don't know)
To start, we can apply a couple formulas to find the circumradius and the area of the cyclic quadrilateral, and then just subtract the area of the quadrilateral from the area of the circle, and that is our final answer. This formula is really tedious with many calculations so don't do this in a contest. To find the circumradius we have:
If we let
, that means that the semi-perimeter is just
. Note that
stands for the semi-perimeter. The calculations will take very long so Im just going to skip to the answer of
as our circumradius. This means that the area of the circle is
. Now applying Brahmagupta's formula to find the area of a cyclic quadrilateral which is just:
. Again we will use the same representations as these letters from before, so
. Plugging in the numbers we have that the area is
. To express our answer in the form that was asked at the top we have:
, so our final answer is
-jb2015007
Video Solution 1
~Education, the Study of Everything
Video Solution 2
Video Solution 3
Video Solution by TheBeautyofMath
https://youtu.be/0kkc4-y8TkU?t=1632
~IceMatrix
See Also
2022 AMC 10A (Problems • Answer Key • Resources) | ||
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 | ||
All AMC 10 Problems and Solutions |
The problems on this page are copyrighted by the Mathematical Association of America's American Mathematics Competitions.