problem_id
stringlengths 32
32
| link
stringlengths 75
84
| problem
stringlengths 14
5.33k
| solution
stringlengths 15
6.63k
| letter
stringclasses 5
values | answer
stringclasses 957
values |
---|---|---|---|---|---|
3f1557bfb02dd983288cd405dfb9cce7 | https://artofproblemsolving.com/wiki/index.php/1983_AIME_Problems/Problem_13 | For $\{1, 2, 3, \ldots, n\}$ and each of its non-empty subsets a unique alternating sum is defined as follows. Arrange the numbers in the subset in decreasing order and then, beginning with the largest, alternately add and subtract successive numbers. For example, the alternating sum for $\{1, 2, 3, 6,9\}$ is $9-6+3-2+1=5$ and for $\{5\}$ it is simply $5$ . Find the sum of all such alternating sums for $n=7$ | Consider a given subset $T$ of $S$ that contains $7$ ; then there is a subset $T'$ which contains all the elements of $T$ except for $7$ , and only those elements . Since each element of $T'$ has one fewer element preceding it than it does in $T$ , their signs are opposite. Thus the sum of the alternating sums of $T$ and $T'$ is equal to 7. There are $2^6$ subsets containing 7, so our answer is $7 \cdot 2^6 = \boxed{448}$ | null | 448 |
3f1557bfb02dd983288cd405dfb9cce7 | https://artofproblemsolving.com/wiki/index.php/1983_AIME_Problems/Problem_13 | For $\{1, 2, 3, \ldots, n\}$ and each of its non-empty subsets a unique alternating sum is defined as follows. Arrange the numbers in the subset in decreasing order and then, beginning with the largest, alternately add and subtract successive numbers. For example, the alternating sum for $\{1, 2, 3, 6,9\}$ is $9-6+3-2+1=5$ and for $\{5\}$ it is simply $5$ . Find the sum of all such alternating sums for $n=7$ | Denote the desired total of all alternating sums of an $n$ -element set as $S_n$ . We are looking for $S_7$ . Notice that all alternating sums of an $n$ -element set are also alternating sums of an $n+1$ -element set. However, when we go from an $n$ to $n+1$ element set, for each subset with the new element, we are adding the new element and subtracting one of the alternating sums of the $n$ -element set. There are $2^n$ subsets of an $n+1$ -element set that includes the new element, giving us the relationship $S_{n+1} = S_n + 2^n(n+1) - S_n = 2^n(n+1)$ . When $n = 6$ , we therefore get $S_ 7 = 2^6(7) = \boxed{448}$ | null | 448 |
3f1557bfb02dd983288cd405dfb9cce7 | https://artofproblemsolving.com/wiki/index.php/1983_AIME_Problems/Problem_13 | For $\{1, 2, 3, \ldots, n\}$ and each of its non-empty subsets a unique alternating sum is defined as follows. Arrange the numbers in the subset in decreasing order and then, beginning with the largest, alternately add and subtract successive numbers. For example, the alternating sum for $\{1, 2, 3, 6,9\}$ is $9-6+3-2+1=5$ and for $\{5\}$ it is simply $5$ . Find the sum of all such alternating sums for $n=7$ | We analyze all the numbers from 1 to 7 separately to see where the number contributes its positive or negative to the sum of the alternating sums. Whenever 7 appears, which it does 64 times, it contributes a positive because it is always first. This gives a net gain of $7 \cdot 64=448$
If we look at when 6 appears, which it also does 64 times, whether it comes as positive or negative depends on the presence of 7. Half of the subsets with 6 have 7 resulting in subtracting 6 each time, while the other half does not have 7 adding 6 each time, so these contributions of sixes cancel each other out giving a net gain of 0.
The same thing happens to any positive integer less than 7. This is because the determination of a positive or negative contribution is dependent on the number of larger numbers in front of it(For example, the sign of 3 is dependent on the presence of 4, 5, 6, and 7 in the subset). If the number of larger numbers is even, it gives in a positive copy while odd produces its negative. We know that the frequencies of these two cases occurring are the same because $0=(1-1)^{n}=\binom{n}{0}-\binom{n}{1}+\binom{n}{2}-...\binom{n}{n}$ via the Binomial Theorem. Therefore, all positive integers less than 7 will not have any effect and our sum will be $\boxed{448}$ | null | 448 |
3f1557bfb02dd983288cd405dfb9cce7 | https://artofproblemsolving.com/wiki/index.php/1983_AIME_Problems/Problem_13 | For $\{1, 2, 3, \ldots, n\}$ and each of its non-empty subsets a unique alternating sum is defined as follows. Arrange the numbers in the subset in decreasing order and then, beginning with the largest, alternately add and subtract successive numbers. For example, the alternating sum for $\{1, 2, 3, 6,9\}$ is $9-6+3-2+1=5$ and for $\{5\}$ it is simply $5$ . Find the sum of all such alternating sums for $n=7$ | Let $\mathbb{N}_n := \{1, 2, 3, \dots n\}$ . Let the alternating sum of a certain subset of $S$ of $\mathbb{N}_n$ be $\xi(S),$ and let \[\mathcal{A}(\mathbb{N}_n) := \sum_{S \subseteq \mathbb{N}_n} \xi(S).\] We see that \[\mathcal{A}(\mathbb{N}_n) = \sum_{S \subseteq \mathbb{N}_n} \xi(S) = \sum_{n \in S, S \subseteq \mathbb{N}_n} \xi(S) + \sum_{S \subseteq \mathbb{N}_{n-1}} \xi(S) = \mathcal{A}(\mathbb{N}_{n-1}) + \sum_{n \in S, S \subseteq \mathbb{N}_n} \left( n - \xi(S - \{n\}) \right),\] as if $n \in S,$ $n$ is the largest element in $S.$ Now, we know that \[\sum_{n \in S, S \subseteq \mathbb{N}_n} n - \xi(S - \{n\}) = \sum_{S \subseteq \mathbb{N}_{n-1}} n - \xi(S) = n \cdot 2^{n-1} - \sum_{S \subseteq \mathbb{N}_{n-1}} \xi(S) = n \cdot 2^{n-1} - \mathcal{A}(\mathbb{N}_{n-1}),\] so \[\mathcal{A}(\mathbb{N}_{n}) = n \cdot 2^{n-1}.\] Thus, our answer (which is the $n = 7$ case) is $\mathcal{A}(\mathbb{N}_{7}) = 7 \cdot 2^6 = \boxed{448}.$ | null | 448 |
f92f27a02f4888f14d9e66e599de31e8 | https://artofproblemsolving.com/wiki/index.php/1983_AIME_Problems/Problem_14 | In the adjoining figure, two circles with radii $8$ and $6$ are drawn with their centers $12$ units apart. At $P$ , one of the points of intersection, a line is drawn in such a way that the chords $QP$ and $PR$ have equal length. Find the square of the length of $QP$
[asy]size(160); defaultpen(linewidth(.8pt)+fontsize(11pt)); dotfactor=3; pair O1=(0,0), O2=(12,0); path C1=Circle(O1,8), C2=Circle(O2,6); pair P=intersectionpoints(C1,C2)[0]; path C3=Circle(P,sqrt(130)); pair Q=intersectionpoints(C3,C1)[0]; pair R=intersectionpoints(C3,C2)[1]; draw(C1); draw(C2); draw(O2--O1); dot(O1); dot(O2); draw(Q--R); label("$Q$",Q,NW); label("$P$",P,1.5*dir(80)); label("$R$",R,NE); label("12",waypoint(O1--O2,0.4),S);[/asy] | Firstly, notice that if we reflect $R$ over $P$ , we get $Q$ . Since we know that $R$ is on circle $B$ and $Q$ is on circle $A$ , we can reflect circle $B$ over $P$ to get another circle (centered at a new point $C$ , and with radius $6$ ) that intersects circle $A$ at $Q$ . The rest is just finding lengths, as follows.
Since $P$ is the midpoint of segment $BC$ $AP$ is a median of $\triangle ABC$ . Because we know $AB=12$ $BP=PC=6$ , and $AP=8$ , we can find the third side of the triangle using Stewart's Theorem or similar approaches. We get $AC = \sqrt{56}$ . Now we have a kite $AQCP$ with $AQ=AP=8$ $CQ=CP=6$ , and $AC=\sqrt{56}$ , and all we need is the length of the other diagonal $PQ$ . The easiest way it can be found is with the Pythagorean Theorem. Let $2x$ be the length of $PQ$ . Then
Solving this equation, we find that $x^2=\frac{65}{2}$ , so $PQ^2 = 4x^2 = \boxed{130}.$ | null | 130 |
f92f27a02f4888f14d9e66e599de31e8 | https://artofproblemsolving.com/wiki/index.php/1983_AIME_Problems/Problem_14 | In the adjoining figure, two circles with radii $8$ and $6$ are drawn with their centers $12$ units apart. At $P$ , one of the points of intersection, a line is drawn in such a way that the chords $QP$ and $PR$ have equal length. Find the square of the length of $QP$
[asy]size(160); defaultpen(linewidth(.8pt)+fontsize(11pt)); dotfactor=3; pair O1=(0,0), O2=(12,0); path C1=Circle(O1,8), C2=Circle(O2,6); pair P=intersectionpoints(C1,C2)[0]; path C3=Circle(P,sqrt(130)); pair Q=intersectionpoints(C3,C1)[0]; pair R=intersectionpoints(C3,C2)[1]; draw(C1); draw(C2); draw(O2--O1); dot(O1); dot(O2); draw(Q--R); label("$Q$",Q,NW); label("$P$",P,1.5*dir(80)); label("$R$",R,NE); label("12",waypoint(O1--O2,0.4),S);[/asy] | [asy] size(0,5cm); pair a=(8,0),b=(20,0),m=(9.72456,5.31401),n=(20.58055,1.77134),p=(15.15255,3.54268),q=(4.29657,7.08535),r=(26,0); draw(b--r--n--b--a--m--n); draw(a--q--m); draw(circumcircle(origin,q,p)); draw(circumcircle((14,0),p,r)); draw(rightanglemark(a,m,n,24)); draw(rightanglemark(b,n,r,24)); label("$A$",a,S); label("$B$",b,S); label("$M$",m,NE); label("$N$",n,NE); label("$P$",p,N); label("$Q$",q,NW); label("$R$",r,E); label("$12$",(14,0),SW); label("$6$",(23,0),S); [/asy]
Draw additional lines as indicated. Note that since triangles $AQP$ and $BPR$ are isosceles, the altitudes are also bisectors, so let $QM=MP=PN=NR=x$
Since $\frac{AR}{MR}=\frac{BR}{NR},$ triangles $BNR$ and $AMR$ are similar. If we let $y=BN$ , we have $AM=3BN=3y$
Applying the Pythagorean Theorem on triangle $BNR$ , we have $x^2+y^2=36$ . Similarly, for triangle $QMA$ , we have $x^2+9y^2=64$
Subtracting, $8y^2=28\Rightarrow y^2=\frac72\Rightarrow x^2=\frac{65}2\Rightarrow QP^2=4x^2=\boxed{130}$ | null | 130 |
f92f27a02f4888f14d9e66e599de31e8 | https://artofproblemsolving.com/wiki/index.php/1983_AIME_Problems/Problem_14 | In the adjoining figure, two circles with radii $8$ and $6$ are drawn with their centers $12$ units apart. At $P$ , one of the points of intersection, a line is drawn in such a way that the chords $QP$ and $PR$ have equal length. Find the square of the length of $QP$
[asy]size(160); defaultpen(linewidth(.8pt)+fontsize(11pt)); dotfactor=3; pair O1=(0,0), O2=(12,0); path C1=Circle(O1,8), C2=Circle(O2,6); pair P=intersectionpoints(C1,C2)[0]; path C3=Circle(P,sqrt(130)); pair Q=intersectionpoints(C3,C1)[0]; pair R=intersectionpoints(C3,C2)[1]; draw(C1); draw(C2); draw(O2--O1); dot(O1); dot(O2); draw(Q--R); label("$Q$",Q,NW); label("$P$",P,1.5*dir(80)); label("$R$",R,NE); label("12",waypoint(O1--O2,0.4),S);[/asy] | Let $QP=PR=x$ . Angles $QPA$ $APB$ , and $BPR$ must add up to $180^{\circ}$ . By the Law of Cosines $\angle APB=\cos^{-1}\left(\frac{{-11}}{24}\right)$ . Also, angles $QPA$ and $BPR$ equal $\cos^{-1}\left(\frac{x}{16}\right)$ and $\cos^{-1}\left(\frac{x}{12}\right)$ . So we have
Taking the cosine of both sides, and simplifying using the addition formula for $\cos$ as well as the identity $\sin^{2}{x} + \cos^{2}{x} = 1$ , gives $x^2=\boxed{130}$ | null | 130 |
f92f27a02f4888f14d9e66e599de31e8 | https://artofproblemsolving.com/wiki/index.php/1983_AIME_Problems/Problem_14 | In the adjoining figure, two circles with radii $8$ and $6$ are drawn with their centers $12$ units apart. At $P$ , one of the points of intersection, a line is drawn in such a way that the chords $QP$ and $PR$ have equal length. Find the square of the length of $QP$
[asy]size(160); defaultpen(linewidth(.8pt)+fontsize(11pt)); dotfactor=3; pair O1=(0,0), O2=(12,0); path C1=Circle(O1,8), C2=Circle(O2,6); pair P=intersectionpoints(C1,C2)[0]; path C3=Circle(P,sqrt(130)); pair Q=intersectionpoints(C3,C1)[0]; pair R=intersectionpoints(C3,C2)[1]; draw(C1); draw(C2); draw(O2--O1); dot(O1); dot(O2); draw(Q--R); label("$Q$",Q,NW); label("$P$",P,1.5*dir(80)); label("$R$",R,NE); label("12",waypoint(O1--O2,0.4),S);[/asy] | Let $QP = PR = x$ . Extend the line containing the centers of the two circles to meet $R$ , and to meet the other side of the large circle at a point $S$
The part of this line from $R$ to the point nearest to $R$ where it intersects the larger circle has length $6+(12-8)=10$ .
The length of the diameter of the larger circle is $16$
Thus by Power of a Point in the circle passing through $Q$ $R$ , and $S$ , we have $x \cdot 2x = 10 \cdot (10+16) = 260$ , so $x^2 = \boxed{130}$ | null | 130 |
f92f27a02f4888f14d9e66e599de31e8 | https://artofproblemsolving.com/wiki/index.php/1983_AIME_Problems/Problem_14 | In the adjoining figure, two circles with radii $8$ and $6$ are drawn with their centers $12$ units apart. At $P$ , one of the points of intersection, a line is drawn in such a way that the chords $QP$ and $PR$ have equal length. Find the square of the length of $QP$
[asy]size(160); defaultpen(linewidth(.8pt)+fontsize(11pt)); dotfactor=3; pair O1=(0,0), O2=(12,0); path C1=Circle(O1,8), C2=Circle(O2,6); pair P=intersectionpoints(C1,C2)[0]; path C3=Circle(P,sqrt(130)); pair Q=intersectionpoints(C3,C1)[0]; pair R=intersectionpoints(C3,C2)[1]; draw(C1); draw(C2); draw(O2--O1); dot(O1); dot(O2); draw(Q--R); label("$Q$",Q,NW); label("$P$",P,1.5*dir(80)); label("$R$",R,NE); label("12",waypoint(O1--O2,0.4),S);[/asy] | [asy] size(0,5cm); pair a=(8,0),b=(20,0),t=(14,0),m=(9.72456,5.31401),n=(20.58055,1.77134),p=(15.15255,3.54268),q=(4.29657,7.08535),r=(26,0); draw(b--a--m--n--cycle); draw(p--t); draw(q--m); draw(n--r); draw(circumcircle(origin,q,p)); draw(circumcircle((14,0),p,r)); draw(rightanglemark(a,m,n,24)); label("$A$",a,S); label("$B$",b,S); label("$M$",m,NE); label("$N$",n,NE); label("$P$",p,N); label("$Q$",q,NW); label("$R$",r,E); label("$12$",(14,0),SW); label("$T$", t , NW); [/asy] Note that the midpoint of $AB$ is $T.$ Also, since $AM,NB$ bisect $QP$ and $PR,$ respectively, $P$ is the midpoint of $MN.$ Thus, $AM+NB=2PT.$ let $AM=a,BN=b.$ This means that $a+b=2PT.$ From the median formula, $PT=\sqrt{14}.$ Thus, $a+b=2\sqrt{14}.$ Also, since $MP=PN$ , from the Pythagorean Theorem, $8^2-a^2=6^2-b^2\implies a^2-b^2=28.$ Thus, $a-b=\frac{28}{2\sqrt{14}}=\sqrt{14}.$ We conclude that $QP=MN=\sqrt{12^2-(a-b)^2}=\sqrt{130}\implies\boxed{130}.$ ~pinkpig | null | 130 |
f92f27a02f4888f14d9e66e599de31e8 | https://artofproblemsolving.com/wiki/index.php/1983_AIME_Problems/Problem_14 | In the adjoining figure, two circles with radii $8$ and $6$ are drawn with their centers $12$ units apart. At $P$ , one of the points of intersection, a line is drawn in such a way that the chords $QP$ and $PR$ have equal length. Find the square of the length of $QP$
[asy]size(160); defaultpen(linewidth(.8pt)+fontsize(11pt)); dotfactor=3; pair O1=(0,0), O2=(12,0); path C1=Circle(O1,8), C2=Circle(O2,6); pair P=intersectionpoints(C1,C2)[0]; path C3=Circle(P,sqrt(130)); pair Q=intersectionpoints(C3,C1)[0]; pair R=intersectionpoints(C3,C2)[1]; draw(C1); draw(C2); draw(O2--O1); dot(O1); dot(O2); draw(Q--R); label("$Q$",Q,NW); label("$P$",P,1.5*dir(80)); label("$R$",R,NE); label("12",waypoint(O1--O2,0.4),S);[/asy] | Looking at Drawing 2 (by the way, we don't need point $R$ ), we set $AM=a$ and $BN=b$ , and the desired length $QP=x=PR$ . We know that a radius perpendicular to a chord bisects the chord, so $MP=\frac{x}{2}$ and $PN=\frac{x}{2}$ . Draw line $AP$ and $PB$ , and we see that they are radii of Circles $A$ and $B$ , respectively. We can write the Pythagorean relationships $a^2+(\frac{x}{2})^2=8^2$ for triangle $AMP$ and $b^2+(\frac{x}{2})^2=6^2$ for triangle $BNP$ . We also translate segment $MN$ down so that $N$ coincides with $B$ , and form another right traingle. From that triangle, you can see that the shorter leg is on the left side, having length $a-b$ , the longer leg is the same as $MN=x$ , and the hypotenuse is $AB=12$ . We can write the Pythagorean relationship $(a-b)^2+x^2=12^2$ . Solving the system of 3 unknowns and 3 equations (One of the best ways to do it is to solve for $a$ in the first equation and $b$ in the second equation, and substitute into the third equation, get an equation only in terms of $x$ , and solve), you find that $x=\sqrt{130}$ , so $x^2 = \boxed{130}$ | null | 130 |
f92f27a02f4888f14d9e66e599de31e8 | https://artofproblemsolving.com/wiki/index.php/1983_AIME_Problems/Problem_14 | In the adjoining figure, two circles with radii $8$ and $6$ are drawn with their centers $12$ units apart. At $P$ , one of the points of intersection, a line is drawn in such a way that the chords $QP$ and $PR$ have equal length. Find the square of the length of $QP$
[asy]size(160); defaultpen(linewidth(.8pt)+fontsize(11pt)); dotfactor=3; pair O1=(0,0), O2=(12,0); path C1=Circle(O1,8), C2=Circle(O2,6); pair P=intersectionpoints(C1,C2)[0]; path C3=Circle(P,sqrt(130)); pair Q=intersectionpoints(C3,C1)[0]; pair R=intersectionpoints(C3,C2)[1]; draw(C1); draw(C2); draw(O2--O1); dot(O1); dot(O2); draw(Q--R); label("$Q$",Q,NW); label("$P$",P,1.5*dir(80)); label("$R$",R,NE); label("12",waypoint(O1--O2,0.4),S);[/asy] | The centers are collinear, you can prove it (but that is already given in the later section [Proof that R,A, and B are collinear]). Drop a perpendicular from $P$ to the lines that the centers are on. You then have 2 separate segments, separated by the foot of the altitude of $P$ . Call them $a$ and $b$ respectively. Call the measure of the foot of the altitude of $P$ $h$ . You then have 3 equations:
\[(1)a+b=12\] (this is given by the fact that the distance between the centers is 12.
\[(2)a^2+h^2=64\] . This is given by the fact that P is on the circle with radius 8.
\[(3)b^2+h^2=36\] . This is given by the fact that P is on the circle with radius 6.
Subtract (3) from (2) to get that $a^2-b^2=28$ . As per (1), then you have $a-b=\frac{7}{3}$ (4). Add (1) and (4) to get that $2a=\frac{43}{3}$ . Then substitute into (1) to get $b=\frac{29}{6}$ . Substitute either a or b into (2) or (3) to get $h=\sqrt{455}{6}$ . Then to get $PQ=PR$ it is just $\sqrt{(b+6)^2+h^2}=\sqrt{\frac{65^2}{6^2}+\frac{455}{6^2}}=\sqrt{\frac{4680}{36}}=\sqrt{130}$
$PQ^2=\boxed{130}$ | null | 130 |
f92f27a02f4888f14d9e66e599de31e8 | https://artofproblemsolving.com/wiki/index.php/1983_AIME_Problems/Problem_14 | In the adjoining figure, two circles with radii $8$ and $6$ are drawn with their centers $12$ units apart. At $P$ , one of the points of intersection, a line is drawn in such a way that the chords $QP$ and $PR$ have equal length. Find the square of the length of $QP$
[asy]size(160); defaultpen(linewidth(.8pt)+fontsize(11pt)); dotfactor=3; pair O1=(0,0), O2=(12,0); path C1=Circle(O1,8), C2=Circle(O2,6); pair P=intersectionpoints(C1,C2)[0]; path C3=Circle(P,sqrt(130)); pair Q=intersectionpoints(C3,C1)[0]; pair R=intersectionpoints(C3,C2)[1]; draw(C1); draw(C2); draw(O2--O1); dot(O1); dot(O2); draw(Q--R); label("$Q$",Q,NW); label("$P$",P,1.5*dir(80)); label("$R$",R,NE); label("12",waypoint(O1--O2,0.4),S);[/asy] | We use coordinate geometry to approach this problem. Let the center of larger circle be the origin $O_1$ , the smaller circle be $O_2$ , and the x-axis be $O_1O_2$ . Hence, we can get the two circle equations: $x^2+y^2 = 64$ and $(x-12)^2+y^2=36$
Let point $P$ be $(a, b)$ . Noting that it lies on both circles, we can plug the coordinates into both equations:
Substituting $a^2+b^2 = 64$ into equation 2 and solving for $a$ , we get $a = \frac{43}{6}$ .
The problem asks us to find $QP^2$ , which is congruent to $PR^2$ . Using the distance formula for $P(a, b)$ and $R(18, 0)$ (by Solution 7's collinear proof), we get $PR^2 = (18-a)^2 +b^2$ . Using $a^2+b^2 = 64$ , we find that $b^2 = \frac{455}{36}$ . Plugging the variables $a$ and $b^2$ in, we get $PR^2 = QP^2 = \boxed{130}$ ~SoilMilk | null | 130 |
f92f27a02f4888f14d9e66e599de31e8 | https://artofproblemsolving.com/wiki/index.php/1983_AIME_Problems/Problem_14 | In the adjoining figure, two circles with radii $8$ and $6$ are drawn with their centers $12$ units apart. At $P$ , one of the points of intersection, a line is drawn in such a way that the chords $QP$ and $PR$ have equal length. Find the square of the length of $QP$
[asy]size(160); defaultpen(linewidth(.8pt)+fontsize(11pt)); dotfactor=3; pair O1=(0,0), O2=(12,0); path C1=Circle(O1,8), C2=Circle(O2,6); pair P=intersectionpoints(C1,C2)[0]; path C3=Circle(P,sqrt(130)); pair Q=intersectionpoints(C3,C1)[0]; pair R=intersectionpoints(C3,C2)[1]; draw(C1); draw(C2); draw(O2--O1); dot(O1); dot(O2); draw(Q--R); label("$Q$",Q,NW); label("$P$",P,1.5*dir(80)); label("$R$",R,NE); label("12",waypoint(O1--O2,0.4),S);[/asy] | Let the center of the circle with radius $8$ be $A,$ and let the center of the one with radius $6$ be $B.$ Also, let $QP = PR = x.$ Using law of cosines on triangle $APB,$ we have that $\cos {APB} = \left(-\frac{{11}}{24}\right).$ Angle chasing gives that $\angle{QAR} = \angle{APB},$ so its cosines must be the same. Applying law of cosines again on triangle $QAR,$ we have $\left(2x^2\right)=64+324-2(8)(18)\left(-\frac{11}{24}\right),$ which gives that $x^2 = \boxed{130}$ | null | 130 |
f3de69d8561599d36cbe34c94c55a6ad | https://artofproblemsolving.com/wiki/index.php/1983_AIME_Problems/Problem_15 | The adjoining figure shows two intersecting chords in a circle, with $B$ on minor arc $AD$ . Suppose that the radius of the circle is $5$ , that $BC=6$ , and that $AD$ is bisected by $BC$ . Suppose further that $AD$ is the only chord starting at $A$ which is bisected by $BC$ . It follows that the sine of the central angle of minor arc $AB$ is a rational number. If this number is expressed as a fraction $\frac{m}{n}$ in lowest terms, what is the product $mn$
[asy]size(100); defaultpen(linewidth(.8pt)+fontsize(11pt)); dotfactor=1; pair O1=(0,0); pair A=(-0.91,-0.41); pair B=(-0.99,0.13); pair C=(0.688,0.728); pair D=(-0.25,0.97); path C1=Circle(O1,1); draw(C1); label("$A$",A,W); label("$B$",B,W); label("$C$",C,NE); label("$D$",D,N); draw(A--D); draw(B--C); pair F=intersectionpoint(A--D,B--C); add(pathticks(A--F,1,0.5,0,3.5)); add(pathticks(F--D,1,0.5,0,3.5)); [/asy] | Let $M$ be the midpoint of the chord $BC$ . From right triangle $OMB$ , we have $OM = \sqrt{OB^2 - BM^2} =4$ . This gives $\tan \angle BOM = \frac{BM}{OM} = \frac 3 4$
Notice that the distance $OM$ equals $PN + PO \cos \angle AOM = r(1 + \cos \angle AOM)$ , where $r$ is the radius of circle $P$
Hence \[\cos \angle AOM = \frac{OM}{r} - 1 = \frac{2OM}{R} - 1 = \frac 8 5 - 1 = \frac 3 5\] (where $R$ represents the radius, $5$ , of the large circle given in the question). Therefore, since $\angle AOM$ is clearly acute, we see that \[\tan \angle AOM =\frac{\sqrt{1 - \cos^2 \angle AOM}}{\cos \angle AOM} = \frac{\sqrt{5^2 - 3^2}}{3} = \frac 4 3\]
Next, notice that $\angle AOB = \angle AOM - \angle BOM$ . We can therefore apply the subtraction formula for $\tan$ to obtain \[\tan \angle AOB =\frac{\tan \angle AOM - \tan \angle BOM}{1 + \tan \angle AOM \cdot \tan \angle BOM} =\frac{\frac 4 3 - \frac 3 4}{1 + \frac 4 3 \cdot \frac 3 4} = \frac{7}{24}\] It follows that $\sin \angle AOB =\frac{7}{\sqrt{7^2+24^2}} = \frac{7}{25}$ , such that the answer is $7 \cdot 25=\boxed{175}$ | null | 175 |
f3de69d8561599d36cbe34c94c55a6ad | https://artofproblemsolving.com/wiki/index.php/1983_AIME_Problems/Problem_15 | The adjoining figure shows two intersecting chords in a circle, with $B$ on minor arc $AD$ . Suppose that the radius of the circle is $5$ , that $BC=6$ , and that $AD$ is bisected by $BC$ . Suppose further that $AD$ is the only chord starting at $A$ which is bisected by $BC$ . It follows that the sine of the central angle of minor arc $AB$ is a rational number. If this number is expressed as a fraction $\frac{m}{n}$ in lowest terms, what is the product $mn$
[asy]size(100); defaultpen(linewidth(.8pt)+fontsize(11pt)); dotfactor=1; pair O1=(0,0); pair A=(-0.91,-0.41); pair B=(-0.99,0.13); pair C=(0.688,0.728); pair D=(-0.25,0.97); path C1=Circle(O1,1); draw(C1); label("$A$",A,W); label("$B$",B,W); label("$C$",C,NE); label("$D$",D,N); draw(A--D); draw(B--C); pair F=intersectionpoint(A--D,B--C); add(pathticks(A--F,1,0.5,0,3.5)); add(pathticks(F--D,1,0.5,0,3.5)); [/asy] | This solution, while similar to Solution 2, is arguably more motivated and less contrived.
Firstly, we note the statement in the problem that " $AD$ is the only chord starting at $A$ and bisected by $BC$ " – what is its significance? What is the criterion for this statement to be true?
We consider the locus of midpoints of the chords from $A$ . It is well-known that this is the circle with diameter $AO$ , where $O$ is the center of the circle. The proof is simple: every midpoint of a chord is a dilation of the endpoint with scale factor $\frac{1}{2}$ and center $A$ . Thus, the locus is the result of the dilation with scale factor $\frac{1}{2}$ and centre $A$ of circle $O$ . Let the center of this circle be $P$
Now, $AD$ is bisected by $BC$ if they cross at some point $N$ on the circle. Moreover, since $AD$ is the only chord, $BC$ must be tangent to the circle $P$
The rest of this problem is straightforward.
Our goal is to find $\sin \angle AOB = \sin{\left(\angle AOM - \angle BOM\right)}$ , where $M$ is the midpoint of $BC$ . We have $BM=3$ and $OM=4$ .
Let $R$ be the projection of $A$ onto $OM$ , and similarly let $Q$ be the projection of $P$ onto $OM$ . Then it remains to find $AR$ so that we can use the addition formula for $\sin$
As $PN$ is a radius of circle $P$ $PN=2.5$ , and similarly, $PO=2.5$ . Since $OM=4$ , we have $OQ=OM-QM=OM-PN=4-2.5=1.5$ . Thus $PQ=\sqrt{2.5^2-1.5^2}=2$
Further, we see that $\triangle OAR$ is a dilation of $\triangle OPQ$ about center $O$ with scale factor $2$ , so $AR=2PQ=4$
Lastly, we apply the formula: \[\sin{\left(\angle AOM - \angle BOM\right)} = \sin \angle AOM \cos \angle BOM - \sin \angle BOM \cos \angle AOM = \left(\frac{4}{5}\right)\left(\frac{4}{5}\right)-\left(\frac{3}{5}\right)\left(\frac{3}{5}\right)=\frac{7}{25}\] Thus the answer is $7\cdot25=\boxed{175}$ | null | 175 |
f3de69d8561599d36cbe34c94c55a6ad | https://artofproblemsolving.com/wiki/index.php/1983_AIME_Problems/Problem_15 | The adjoining figure shows two intersecting chords in a circle, with $B$ on minor arc $AD$ . Suppose that the radius of the circle is $5$ , that $BC=6$ , and that $AD$ is bisected by $BC$ . Suppose further that $AD$ is the only chord starting at $A$ which is bisected by $BC$ . It follows that the sine of the central angle of minor arc $AB$ is a rational number. If this number is expressed as a fraction $\frac{m}{n}$ in lowest terms, what is the product $mn$
[asy]size(100); defaultpen(linewidth(.8pt)+fontsize(11pt)); dotfactor=1; pair O1=(0,0); pair A=(-0.91,-0.41); pair B=(-0.99,0.13); pair C=(0.688,0.728); pair D=(-0.25,0.97); path C1=Circle(O1,1); draw(C1); label("$A$",A,W); label("$B$",B,W); label("$C$",C,NE); label("$D$",D,N); draw(A--D); draw(B--C); pair F=intersectionpoint(A--D,B--C); add(pathticks(A--F,1,0.5,0,3.5)); add(pathticks(F--D,1,0.5,0,3.5)); [/asy] | Let the center of the circle be $O$ . Fix $B,C,$ and $A$ . Then, as $D$ moves around the circle, the locus of the midpoints of $AD$ is clearly a circle. Since the problems gives that $AD$ is the only chord starting at $A$ bisected by $BC$ , it follows that the circle with diameter $DO$ and $AO$ is tangent to $BC$
Now, let the intersection of $BC$ and $AD$ be $E$ and let the midpoint of $AO$ (the center of the circle tangent to $BC$ that we described beforehand) be $F$ . Drop the altitude from $O$ to $BC$ and call its intersection with $BC$ $K$ . Drop the perpendicular from $F$ to $KO$ and call its intersection with $KO$ $L$ . Clearly, $KO = \sqrt{OC^2-KC^2} = \sqrt{5^2-3^2} = 4$ and since $EF$ is radius, it equals $\frac{5}{2}$ . The same applies for $FO$ , which also equals $\frac{5}{2}$ . By the Pythagorean theorem, we deduce that $FL = 2$ , so $EK = 2$ . This is very important information! Now we know that $BE = 1$ , so by Power of a Point, $AE = ED = \sqrt{5}$
We’re almost there! Since by the Pythagorean theorem, $ED^2 + EO^2 = 25$ , we deduce that $EO = 2\sqrt{5}$ $EC=OC=5$ , so $\sin (CEO) = \frac{2\sqrt{5}}{5}$ . Furthermore, since $\sin (CEO) = \cos(DEC)$ , we know that $\cos (DEC) = \frac{2\sqrt{5}}{5}$ . By the law of cosines, \[DC^2 = (\sqrt{5})^2 + 5^2 -10\sqrt{5} \cdot \frac{2\sqrt{5}}{5} = 10\] Therefore, $DC = \sqrt{10} \Longleftrightarrow BA = \sqrt{2}$ . Now, drop the altitude from $O$ to $BA$ and call its intersection with $BA$ $Z$ . Then, by the Pythagorean theorem, $OZ = \frac{7\sqrt{2}}{2}$ . Thus, $\sin (BOZ) = \frac{\sqrt{2}}{10}$ and $\cos (BOZ) = \frac{7\sqrt{2}}{10}$ . As a result, $\sin (BOA) = \sin (2 BOZ) = 2\sin(BOZ)\cos(BOZ) = \frac{7}{25}$ $7 \cdot 25 = \boxed{175}$ | null | 175 |
f3de69d8561599d36cbe34c94c55a6ad | https://artofproblemsolving.com/wiki/index.php/1983_AIME_Problems/Problem_15 | The adjoining figure shows two intersecting chords in a circle, with $B$ on minor arc $AD$ . Suppose that the radius of the circle is $5$ , that $BC=6$ , and that $AD$ is bisected by $BC$ . Suppose further that $AD$ is the only chord starting at $A$ which is bisected by $BC$ . It follows that the sine of the central angle of minor arc $AB$ is a rational number. If this number is expressed as a fraction $\frac{m}{n}$ in lowest terms, what is the product $mn$
[asy]size(100); defaultpen(linewidth(.8pt)+fontsize(11pt)); dotfactor=1; pair O1=(0,0); pair A=(-0.91,-0.41); pair B=(-0.99,0.13); pair C=(0.688,0.728); pair D=(-0.25,0.97); path C1=Circle(O1,1); draw(C1); label("$A$",A,W); label("$B$",B,W); label("$C$",C,NE); label("$D$",D,N); draw(A--D); draw(B--C); pair F=intersectionpoint(A--D,B--C); add(pathticks(A--F,1,0.5,0,3.5)); add(pathticks(F--D,1,0.5,0,3.5)); [/asy] | Let I be the intersection of AD and BC.
Lemma: $AI = ID$ if and only if $\angle AIO = 90$
Proof: If AI = ID, we get AO = OD, and thus IO is a perpendicular bisector of AD. If $\angle AIO = 90$ , We can get $\triangle AIO \cong \triangle OID$
Let be this the circle with diameter AO.
Thus, we get $\angle AIO = 90$ , implying I must lie on $\omega$ . I also must lie on BC. If both of these conditions are satisfied, The extension of AI intersecting with circle O will create a point D such that AI = ID. Thus, since AD is the only chord starting at A, there must be only 1 possible I, implying the circle with diameter AO is tangent to BC.
Now, create a coordinate system such that the origin is O and the y-axis is perpendicular to BC. The positive x direction is from B to C.
Let Z be (0,5).
Let Y be (-5,0).
Let X be the center of $\omega$ . Since $\omega$ 's radius is $\frac{5}{2}$ , the altitude from X to OY is 1.5, since the altitude from I to OY is 4. XO is 2.5, so $sin(XOY) = sin(AOY) = \frac{3}{5}$ $sin(BOZ) = \frac{3}{5}$ . If we let $sin(\theta) = \frac{3}{5}$ , we can find that what we are looking for is $sin(90 - 2\theta)$ , which we can evaluate and get $\frac{7}{25} \implies \boxed{175}$ | null | 175 |
f3de69d8561599d36cbe34c94c55a6ad | https://artofproblemsolving.com/wiki/index.php/1983_AIME_Problems/Problem_15 | The adjoining figure shows two intersecting chords in a circle, with $B$ on minor arc $AD$ . Suppose that the radius of the circle is $5$ , that $BC=6$ , and that $AD$ is bisected by $BC$ . Suppose further that $AD$ is the only chord starting at $A$ which is bisected by $BC$ . It follows that the sine of the central angle of minor arc $AB$ is a rational number. If this number is expressed as a fraction $\frac{m}{n}$ in lowest terms, what is the product $mn$
[asy]size(100); defaultpen(linewidth(.8pt)+fontsize(11pt)); dotfactor=1; pair O1=(0,0); pair A=(-0.91,-0.41); pair B=(-0.99,0.13); pair C=(0.688,0.728); pair D=(-0.25,0.97); path C1=Circle(O1,1); draw(C1); label("$A$",A,W); label("$B$",B,W); label("$C$",C,NE); label("$D$",D,N); draw(A--D); draw(B--C); pair F=intersectionpoint(A--D,B--C); add(pathticks(A--F,1,0.5,0,3.5)); add(pathticks(F--D,1,0.5,0,3.5)); [/asy] | Let $O$ be the center of the circle. The locus of midpoints of chords with $A$ as a endpoint is a circle with diameter $\overline{AO}$ . Additionally, this circle must be tangent to $\overline{BC}$ . Let the center of this circle be $P$ . Let $M$ be the midpoint of $BC$ $N$ be the foot of the perpendicular from $P$ to $\overline{BM}$ , and $K$ be the foot of the perpendicular from $B$ to $\overline{AP}$ . Let $x=BK$
From right triangle $BKO$ , we get $KO = \sqrt{25-x^2}$ . Thus, $KP = \sqrt{25-x^2}-\frac52$
Since $BO = 5$ $BM = 3$ , and $\angle BMO$ is right, $MO=4$ . From quadrilateral $MNPO$ , we get $MN = \sqrt{PO^2 - (MO - NP)^2} = \sqrt{(5/2)^2 - (4 - 5/2)^2} = \sqrt{(5/2)^2 - (3/2)^2} = 2$ . Thus, $BN = 1$
Since angles $BNP$ and $BKP$ are right, we get \[BK^2+KP^2 = BN^2 + NP^2 \implies x^2 + \left(\sqrt{25-x^2}-\frac52\right)^2 = \left(\frac52\right)^2 + 1\] \[25 - 5\sqrt{25-x^2} = 1\] \[5\sqrt{25-x^2} = 24\] \[25(25-x^2) = 24^2\] \[25x^2 = 25^2 - 24^2 = 49\] \[x = \frac75\] Thus, $\sin \angle AOB = \frac{x}{5} = \frac{7}{25}\implies \boxed{175}$ | null | 175 |