problem
stringlengths 14
7.96k
| solution
stringlengths 3
10k
| answer
stringlengths 1
91
| problem_is_valid
stringclasses 1
value | solution_is_valid
stringclasses 1
value | question_type
stringclasses 1
value | problem_type
stringclasses 8
values | problem_raw
stringlengths 14
7.96k
| solution_raw
stringlengths 3
10k
| metadata
dict | uuid
stringlengths 36
36
| id
int64 22.6k
612k
|
|---|---|---|---|---|---|---|---|---|---|---|---|
Define $\phi^{!}(n)$ as the product of all positive integers less than or equal to $n$ and relatively prime to $n$. Compute the remainder when
$$
\sum_{\substack{2 \leq n \leq 50 \\ \operatorname{gcd}(n, 50)=1}} \phi^{!}(n)
$$
is divided by 50 .
|
Answer: 12
First, $\phi^{!}(n)$ is even for all odd $n$, so it vanishes modulo 2 .
To compute the remainder modulo 25 , we first evaluate $\phi^{!}(3)+\phi^{!}(7)+\phi^{!}(9) \equiv 2+5 \cdot 4+5 \cdot 3 \equiv 12$ $(\bmod 25)$. Now, for $n \geq 11$ the contribution modulo 25 vanishes as long as $5 \nmid n$.
We conclude the answer is 12 .
|
12
|
Yes
|
Yes
|
math-word-problem
|
Number Theory
|
Define $\phi^{!}(n)$ as the product of all positive integers less than or equal to $n$ and relatively prime to $n$. Compute the remainder when
$$
\sum_{\substack{2 \leq n \leq 50 \\ \operatorname{gcd}(n, 50)=1}} \phi^{!}(n)
$$
is divided by 50 .
|
Answer: 12
First, $\phi^{!}(n)$ is even for all odd $n$, so it vanishes modulo 2 .
To compute the remainder modulo 25 , we first evaluate $\phi^{!}(3)+\phi^{!}(7)+\phi^{!}(9) \equiv 2+5 \cdot 4+5 \cdot 3 \equiv 12$ $(\bmod 25)$. Now, for $n \geq 11$ the contribution modulo 25 vanishes as long as $5 \nmid n$.
We conclude the answer is 12 .
|
{
"resource_path": "HarvardMIT/segmented/en-192-2016-feb-guts-solutions.jsonl",
"problem_match": "\n11. [7]",
"solution_match": "\nProposed by: Evan Chen\n"
}
|
46ad9487-ce13-5719-9bd1-dd54dea849f9
| 609,535
|
A right triangle has side lengths $a, b$, and $\sqrt{2016}$ in some order, where $a$ and $b$ are positive integers. Determine the smallest possible perimeter of the triangle.
|
Answer: $48+\sqrt{2016}$
There are no integer solutions to $a^{2}+b^{2}=2016$ due to the presence of the prime 7 on the right-hand side (by Fermat's Christmas Theorem). Assuming $a<b$, the minimal solution $(a, b)=(3,45)$ which gives the answer above.
|
48+\sqrt{2016}
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
A right triangle has side lengths $a, b$, and $\sqrt{2016}$ in some order, where $a$ and $b$ are positive integers. Determine the smallest possible perimeter of the triangle.
|
Answer: $48+\sqrt{2016}$
There are no integer solutions to $a^{2}+b^{2}=2016$ due to the presence of the prime 7 on the right-hand side (by Fermat's Christmas Theorem). Assuming $a<b$, the minimal solution $(a, b)=(3,45)$ which gives the answer above.
|
{
"resource_path": "HarvardMIT/segmented/en-192-2016-feb-guts-solutions.jsonl",
"problem_match": "\n13. [9]",
"solution_match": "\nProposed by: Evan Chen\n"
}
|
6357a300-1116-5286-b3a0-39df8610dc95
| 609,537
|
Let $A B C$ be a triangle such that $A B=13, B C=14, C A=15$ and let $E, F$ be the feet of the altitudes from $B$ and $C$, respectively. Let the circumcircle of triangle $A E F$ be $\omega$. We draw three lines, tangent to the circumcircle of triangle $A E F$ at $A, E$, and $F$. Compute the area of the triangle these three lines determine.
|
Answer: $\square$
Note that $A E F \sim A B C$. Let the vertices of the triangle whose area we wish to compute be $P, Q, R$, opposite $A, E, F$ respectively. Since $H, O$ are isogonal conjugates, line $A H$ passes through the circumcenter of $A E F$, so $Q R \| B C$.
Let $M$ be the midpoint of $B C$. We claim that $M=P$. This can be seen by angle chasing at $E, F$ to find that $\angle P F B=\angle A B C, \angle P E C=\angle A C B$, and noting that $M$ is the circumcenter of $B F E C$. So, the height from $P$ to $Q R$ is the height from $A$ to $B C$, and thus if $K$ is the area of $A B C$, the area we want is $\frac{Q R}{B C} K$.
Heron's formula gives $K=84$, and similar triangles $Q A F, M B F$ and $R A E, M C E$ give $Q A=\frac{B C}{2} \frac{\tan B}{\tan A}$, $R A=\frac{B C}{2} \frac{\tan C}{\tan A}$, so that $\frac{Q R}{B C}=\frac{\tan B+\tan C}{2 \tan A}=\frac{\tan B \tan C-1}{2}=\frac{11}{10}$,
since the height from $A$ to $B C$ is 12 . So our answer is $\frac{462}{5}$.
|
\frac{462}{5}
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
Let $A B C$ be a triangle such that $A B=13, B C=14, C A=15$ and let $E, F$ be the feet of the altitudes from $B$ and $C$, respectively. Let the circumcircle of triangle $A E F$ be $\omega$. We draw three lines, tangent to the circumcircle of triangle $A E F$ at $A, E$, and $F$. Compute the area of the triangle these three lines determine.
|
Answer: $\square$
Note that $A E F \sim A B C$. Let the vertices of the triangle whose area we wish to compute be $P, Q, R$, opposite $A, E, F$ respectively. Since $H, O$ are isogonal conjugates, line $A H$ passes through the circumcenter of $A E F$, so $Q R \| B C$.
Let $M$ be the midpoint of $B C$. We claim that $M=P$. This can be seen by angle chasing at $E, F$ to find that $\angle P F B=\angle A B C, \angle P E C=\angle A C B$, and noting that $M$ is the circumcenter of $B F E C$. So, the height from $P$ to $Q R$ is the height from $A$ to $B C$, and thus if $K$ is the area of $A B C$, the area we want is $\frac{Q R}{B C} K$.
Heron's formula gives $K=84$, and similar triangles $Q A F, M B F$ and $R A E, M C E$ give $Q A=\frac{B C}{2} \frac{\tan B}{\tan A}$, $R A=\frac{B C}{2} \frac{\tan C}{\tan A}$, so that $\frac{Q R}{B C}=\frac{\tan B+\tan C}{2 \tan A}=\frac{\tan B \tan C-1}{2}=\frac{11}{10}$,
since the height from $A$ to $B C$ is 12 . So our answer is $\frac{462}{5}$.
|
{
"resource_path": "HarvardMIT/segmented/en-192-2016-feb-guts-solutions.jsonl",
"problem_match": "\n14. [9]",
"solution_match": "\nProposed by: Christopher Shao\n"
}
|
5b60443f-7771-5acf-923b-9554f6b2ec1a
| 609,538
|
Compute $\tan \left(\frac{\pi}{7}\right) \tan \left(\frac{2 \pi}{7}\right) \tan \left(\frac{3 \pi}{7}\right)$.
|
Answer: $\sqrt{7}$
Consider the polynomial $P(z)=z^{7}-1$. Let $z=e^{i x}=\cos x+i \sin x$. Then
$$
\begin{aligned}
z^{7}-1= & \left(\cos ^{7} x-\binom{7}{2} \cos ^{5} x \sin ^{2} x+\binom{7}{4} \cos ^{3} x \sin ^{4} x-\binom{7}{6} \cos x \sin ^{6} x-1\right) \\
& +i\left(-\sin ^{7} x+\binom{7}{2} \sin ^{5} x \cos ^{2} x-\binom{7}{4} \sin ^{3} x \cos ^{4} x+\binom{7}{6} \sin x \cos 6 x\right)
\end{aligned}
$$
Consider the real part of this equation. We may simplify it to $64 \cos ^{7} x-\ldots-1$, where the middle terms are irrelevant. The roots of $P$ are $x=\frac{2 \pi}{7}, \frac{4 \pi}{7}, \ldots$, so $\prod_{k=1}^{7} \cos \left(\frac{2 \pi k}{7}\right)=\frac{1}{64}$. But
$$
\prod_{k=1}^{7} \cos \left(\frac{2 \pi k}{7}\right)=\left(\prod_{k=1}^{3} \cos \left(\frac{k \pi}{7}\right)\right)^{2}
$$
so $\prod_{k=1}^{3} \cos \left(\frac{k \pi}{7}\right)=\frac{1}{8}$.
Now consider the imaginary part of this equation. We may simplify it to $-64 \sin ^{11} x+\ldots+7 \sin x$, where again the middle terms are irrelevant. We can factor out $\sin x$ to get $-64 \sin ^{10} x+\ldots+7$, and this polynomial has roots $x=\frac{2 \pi}{7}, \ldots, \frac{12 \pi}{7}$ (but not 0 ). Hence $\prod_{k=1}^{6} \sin \left(\frac{2 \pi k}{7}\right)=-\frac{7}{64}$. But, like before, we have
$$
\prod_{k=1}^{6} \sin \left(\frac{2 \pi k}{7}\right)=-\left(\prod_{k=1}^{3} \sin \left(\frac{2 \pi k}{7}\right)\right)^{2}
$$
hence $\prod_{k=1}^{3} \sin \left(\frac{k \pi}{7}\right)=\frac{\sqrt{7}}{8}$. As a result, our final answer is $\frac{\frac{\sqrt{7}}{8}}{\frac{1}{8}}=\sqrt{7}$.
|
\sqrt{7}
|
Yes
|
Yes
|
math-word-problem
|
Algebra
|
Compute $\tan \left(\frac{\pi}{7}\right) \tan \left(\frac{2 \pi}{7}\right) \tan \left(\frac{3 \pi}{7}\right)$.
|
Answer: $\sqrt{7}$
Consider the polynomial $P(z)=z^{7}-1$. Let $z=e^{i x}=\cos x+i \sin x$. Then
$$
\begin{aligned}
z^{7}-1= & \left(\cos ^{7} x-\binom{7}{2} \cos ^{5} x \sin ^{2} x+\binom{7}{4} \cos ^{3} x \sin ^{4} x-\binom{7}{6} \cos x \sin ^{6} x-1\right) \\
& +i\left(-\sin ^{7} x+\binom{7}{2} \sin ^{5} x \cos ^{2} x-\binom{7}{4} \sin ^{3} x \cos ^{4} x+\binom{7}{6} \sin x \cos 6 x\right)
\end{aligned}
$$
Consider the real part of this equation. We may simplify it to $64 \cos ^{7} x-\ldots-1$, where the middle terms are irrelevant. The roots of $P$ are $x=\frac{2 \pi}{7}, \frac{4 \pi}{7}, \ldots$, so $\prod_{k=1}^{7} \cos \left(\frac{2 \pi k}{7}\right)=\frac{1}{64}$. But
$$
\prod_{k=1}^{7} \cos \left(\frac{2 \pi k}{7}\right)=\left(\prod_{k=1}^{3} \cos \left(\frac{k \pi}{7}\right)\right)^{2}
$$
so $\prod_{k=1}^{3} \cos \left(\frac{k \pi}{7}\right)=\frac{1}{8}$.
Now consider the imaginary part of this equation. We may simplify it to $-64 \sin ^{11} x+\ldots+7 \sin x$, where again the middle terms are irrelevant. We can factor out $\sin x$ to get $-64 \sin ^{10} x+\ldots+7$, and this polynomial has roots $x=\frac{2 \pi}{7}, \ldots, \frac{12 \pi}{7}$ (but not 0 ). Hence $\prod_{k=1}^{6} \sin \left(\frac{2 \pi k}{7}\right)=-\frac{7}{64}$. But, like before, we have
$$
\prod_{k=1}^{6} \sin \left(\frac{2 \pi k}{7}\right)=-\left(\prod_{k=1}^{3} \sin \left(\frac{2 \pi k}{7}\right)\right)^{2}
$$
hence $\prod_{k=1}^{3} \sin \left(\frac{k \pi}{7}\right)=\frac{\sqrt{7}}{8}$. As a result, our final answer is $\frac{\frac{\sqrt{7}}{8}}{\frac{1}{8}}=\sqrt{7}$.
|
{
"resource_path": "HarvardMIT/segmented/en-192-2016-feb-guts-solutions.jsonl",
"problem_match": "\n15. [9]",
"solution_match": "\nProposed by: Alexander Katz\n"
}
|
bbe4d76e-f1e5-5745-b804-da368d7dff6d
| 609,539
|
Determine the number of integers $2 \leq n \leq 2016$ such that $n^{n}-1$ is divisible by $2,3,5,7$.
|
Answer: 9
Only $n \equiv 1(\bmod 210)$ work. Proof: we require $\operatorname{gcd}(n, 210)=1$. Note that $\forall p \leq 7$ the order of $n$ $(\bmod p)$ divides $p-1$, hence is relatively prime to any $p \leq 7$. So $n^{n} \equiv 1(\bmod p) \Longleftrightarrow n \equiv 1(\bmod p)$ for each of these $p$.
|
9
|
Yes
|
Yes
|
math-word-problem
|
Number Theory
|
Determine the number of integers $2 \leq n \leq 2016$ such that $n^{n}-1$ is divisible by $2,3,5,7$.
|
Answer: 9
Only $n \equiv 1(\bmod 210)$ work. Proof: we require $\operatorname{gcd}(n, 210)=1$. Note that $\forall p \leq 7$ the order of $n$ $(\bmod p)$ divides $p-1$, hence is relatively prime to any $p \leq 7$. So $n^{n} \equiv 1(\bmod p) \Longleftrightarrow n \equiv 1(\bmod p)$ for each of these $p$.
|
{
"resource_path": "HarvardMIT/segmented/en-192-2016-feb-guts-solutions.jsonl",
"problem_match": "\n16. [9]",
"solution_match": "\nProposed by: Evan Chen\n"
}
|
7dc8bfd3-bd7c-5317-bdb2-fe097495ce25
| 609,540
|
Compute the sum of all integers $1 \leq a \leq 10$ with the following property: there exist integers $p$ and $q$ such that $p, q, p^{2}+a$ and $q^{2}+a$ are all distinct prime numbers.
|
Answer: 20
Odd $a$ fail for parity reasons and $a \equiv 2(\bmod 3)$ fail for $\bmod 3$ reasons. This leaves $a \in\{4,6,10\}$. It is easy to construct $p$ and $q$ for each of these, take $(p, q)=(3,5),(5,11),(3,7)$, respectively.
|
20
|
Yes
|
Yes
|
math-word-problem
|
Number Theory
|
Compute the sum of all integers $1 \leq a \leq 10$ with the following property: there exist integers $p$ and $q$ such that $p, q, p^{2}+a$ and $q^{2}+a$ are all distinct prime numbers.
|
Answer: 20
Odd $a$ fail for parity reasons and $a \equiv 2(\bmod 3)$ fail for $\bmod 3$ reasons. This leaves $a \in\{4,6,10\}$. It is easy to construct $p$ and $q$ for each of these, take $(p, q)=(3,5),(5,11),(3,7)$, respectively.
|
{
"resource_path": "HarvardMIT/segmented/en-192-2016-feb-guts-solutions.jsonl",
"problem_match": "\n17. [11]",
"solution_match": "\nProposed by: Evan Chen\n"
}
|
70066e61-fba0-50e6-8cb1-0c010f7d869c
| 609,541
|
Alice and Bob play a game on a circle with 8 marked points. Alice places an apple beneath one of the points, then picks five of the other seven points and reveals that none of them are hiding the apple. Bob then drops a bomb on any of the points, and destroys the apple if he drops the bomb either on the point containing the apple or on an adjacent point. Bob wins if he destroys the apple, and Alice wins if he fails. If both players play optimally, what is the probability that Bob destroys the apple?
|
Answer: $\frac{1}{2}$
Let the points be $0, \ldots, 7(\bmod 8)$, and view Alice's reveal as revealing the three possible locations of the apple. If Alice always picks $0,2,4$ and puts the apple randomly at 0 or 4 , by symmetry Bob cannot achieve more than $\frac{1}{2}$. Here's a proof that $\frac{1}{2}$ is always possible.
Among the three revealed indices $a, b, c$, positioned on a circle, two must (in the direction in which they're adjacent) have distance at least 3 , so without loss of generality the three are $0, b, c$ where $1 \leq b<c \leq 5$. Modulo reflection and rotation, the cases are: $(0,1,2)$ : Bob places at 1 and wins. $(0,1,3)$ : Bob places at 1 half the time and 3 half the time, so wherever the apple is Bob wins with probability $\frac{1}{2}$. $(0,1,4)$ : Bob places at 1 or 4 , same as above. $(0,2,4)$ : Bob places at 1 or 3 , same as above. $(0,2,5)$ : Bob places at 1 or 5 , same as above.
These cover all cases, so we're done.
|
\frac{1}{2}
|
Yes
|
Yes
|
math-word-problem
|
Logic and Puzzles
|
Alice and Bob play a game on a circle with 8 marked points. Alice places an apple beneath one of the points, then picks five of the other seven points and reveals that none of them are hiding the apple. Bob then drops a bomb on any of the points, and destroys the apple if he drops the bomb either on the point containing the apple or on an adjacent point. Bob wins if he destroys the apple, and Alice wins if he fails. If both players play optimally, what is the probability that Bob destroys the apple?
|
Answer: $\frac{1}{2}$
Let the points be $0, \ldots, 7(\bmod 8)$, and view Alice's reveal as revealing the three possible locations of the apple. If Alice always picks $0,2,4$ and puts the apple randomly at 0 or 4 , by symmetry Bob cannot achieve more than $\frac{1}{2}$. Here's a proof that $\frac{1}{2}$ is always possible.
Among the three revealed indices $a, b, c$, positioned on a circle, two must (in the direction in which they're adjacent) have distance at least 3 , so without loss of generality the three are $0, b, c$ where $1 \leq b<c \leq 5$. Modulo reflection and rotation, the cases are: $(0,1,2)$ : Bob places at 1 and wins. $(0,1,3)$ : Bob places at 1 half the time and 3 half the time, so wherever the apple is Bob wins with probability $\frac{1}{2}$. $(0,1,4)$ : Bob places at 1 or 4 , same as above. $(0,2,4)$ : Bob places at 1 or 3 , same as above. $(0,2,5)$ : Bob places at 1 or 5 , same as above.
These cover all cases, so we're done.
|
{
"resource_path": "HarvardMIT/segmented/en-192-2016-feb-guts-solutions.jsonl",
"problem_match": "\n18. [11]",
"solution_match": "\nProposed by:\n"
}
|
740c6b61-ca0f-5b8e-9551-025974228ecf
| 609,542
|
Let
$$
A=\lim _{n \rightarrow \infty} \sum_{i=0}^{2016}(-1)^{i} \cdot \frac{\binom{n}{i}\binom{n}{i+2}}{\binom{n}{i+1}^{2}}
$$
Find the largest integer less than or equal to $\frac{1}{A}$.
The following decimal approximation might be useful: $0.6931<\ln (2)<0.6932$, where $\ln$ denotes the natural logarithm function.
|
Answer: 1
Note
$$
\sum_{i=0}^{2016}(-1)^{i} \cdot \frac{\binom{n}{i}\binom{n}{i+2}}{\binom{n}{i+1}^{2}}=\sum_{i=0}^{2016}(-1)^{i} \cdot \frac{(i+1)(n-i-1)}{(i+2)(n-i)}
$$
So
$$
\lim _{n \rightarrow \infty} \sum_{i=0}^{2016}(-1)^{i} \cdot \frac{\binom{n}{i}\binom{n}{i+2}}{\binom{n}{i+1}^{2}}=\sum_{i=0}^{2016}(-1)^{i} \cdot \frac{(i+1)}{(i+2)}=1-\sum_{i=2}^{2016} \frac{(-1)^{i}}{i} \approx \ln (2)
$$
Then $\frac{1}{A} \approx \frac{1}{\ln (2)} \approx 1.44$, so the answer is 1 .
|
1
|
Yes
|
Yes
|
math-word-problem
|
Calculus
|
Let
$$
A=\lim _{n \rightarrow \infty} \sum_{i=0}^{2016}(-1)^{i} \cdot \frac{\binom{n}{i}\binom{n}{i+2}}{\binom{n}{i+1}^{2}}
$$
Find the largest integer less than or equal to $\frac{1}{A}$.
The following decimal approximation might be useful: $0.6931<\ln (2)<0.6932$, where $\ln$ denotes the natural logarithm function.
|
Answer: 1
Note
$$
\sum_{i=0}^{2016}(-1)^{i} \cdot \frac{\binom{n}{i}\binom{n}{i+2}}{\binom{n}{i+1}^{2}}=\sum_{i=0}^{2016}(-1)^{i} \cdot \frac{(i+1)(n-i-1)}{(i+2)(n-i)}
$$
So
$$
\lim _{n \rightarrow \infty} \sum_{i=0}^{2016}(-1)^{i} \cdot \frac{\binom{n}{i}\binom{n}{i+2}}{\binom{n}{i+1}^{2}}=\sum_{i=0}^{2016}(-1)^{i} \cdot \frac{(i+1)}{(i+2)}=1-\sum_{i=2}^{2016} \frac{(-1)^{i}}{i} \approx \ln (2)
$$
Then $\frac{1}{A} \approx \frac{1}{\ln (2)} \approx 1.44$, so the answer is 1 .
|
{
"resource_path": "HarvardMIT/segmented/en-192-2016-feb-guts-solutions.jsonl",
"problem_match": "\n19. [11]",
"solution_match": "\nProposed by: Pakawut Jiradilok\n\n"
}
|
9eddd154-1509-56ba-800a-6cae958c14aa
| 609,543
|
Let $A B C$ be a triangle with $A B=13, A C=14$, and $B C=15$. Let $G$ be the point on $A C$ such that the reflection of $B G$ over the angle bisector of $\angle B$ passes through the midpoint of $A C$. Let $Y$ be the midpoint of $G C$ and $X$ be a point on segment $A G$ such that $\frac{A X}{X G}=3$. Construct $F$ and $H$ on $A B$ and $B C$, respectively, such that $F X\|B G\| H Y$. If $A H$ and $C F$ concur at $Z$ and $W$ is on $A C$ such that $W Z \| B G$, find $W Z$.
|
Answer:
$$
\begin{array}{|c|}
\hline 1170 \sqrt{37} \\
1379 \\
\hline
\end{array}
$$
Observe that $B G$ is the $B$-symmedian, and thus $\frac{A G}{G C}=\frac{c^{2}}{a^{2}}$. Stewart's theorem gives us
$$
B G=\sqrt{\frac{2 a^{2} c^{2} b}{b\left(a^{2}+c^{2}\right)}-\frac{a^{2} b^{2} c^{2}}{a^{2}+c^{2}}}=\frac{a c}{a^{2}+c^{2}} \sqrt{2\left(a^{2}+c^{2}\right)-b^{2}}=\frac{390 \sqrt{37}}{197}
$$
Then by similar triangles,
$$
Z W=H Y \frac{Z A}{H A}=B G \frac{Y C}{G C} \frac{Z A}{H A}=B G \frac{1}{2} \frac{6}{7}=\frac{1170 \sqrt{37}}{1379}
$$
where $\frac{Z A}{H A}$ is found with mass points or Ceva.
|
\frac{1170 \sqrt{37}}{1379}
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
Let $A B C$ be a triangle with $A B=13, A C=14$, and $B C=15$. Let $G$ be the point on $A C$ such that the reflection of $B G$ over the angle bisector of $\angle B$ passes through the midpoint of $A C$. Let $Y$ be the midpoint of $G C$ and $X$ be a point on segment $A G$ such that $\frac{A X}{X G}=3$. Construct $F$ and $H$ on $A B$ and $B C$, respectively, such that $F X\|B G\| H Y$. If $A H$ and $C F$ concur at $Z$ and $W$ is on $A C$ such that $W Z \| B G$, find $W Z$.
|
Answer:
$$
\begin{array}{|c|}
\hline 1170 \sqrt{37} \\
1379 \\
\hline
\end{array}
$$
Observe that $B G$ is the $B$-symmedian, and thus $\frac{A G}{G C}=\frac{c^{2}}{a^{2}}$. Stewart's theorem gives us
$$
B G=\sqrt{\frac{2 a^{2} c^{2} b}{b\left(a^{2}+c^{2}\right)}-\frac{a^{2} b^{2} c^{2}}{a^{2}+c^{2}}}=\frac{a c}{a^{2}+c^{2}} \sqrt{2\left(a^{2}+c^{2}\right)-b^{2}}=\frac{390 \sqrt{37}}{197}
$$
Then by similar triangles,
$$
Z W=H Y \frac{Z A}{H A}=B G \frac{Y C}{G C} \frac{Z A}{H A}=B G \frac{1}{2} \frac{6}{7}=\frac{1170 \sqrt{37}}{1379}
$$
where $\frac{Z A}{H A}$ is found with mass points or Ceva.
|
{
"resource_path": "HarvardMIT/segmented/en-192-2016-feb-guts-solutions.jsonl",
"problem_match": "\n20. [11]",
"solution_match": "\nProposed by: Ritesh Ragavender\n"
}
|
d1323d47-e859-57ca-80ee-96ec54840a2e
| 609,544
|
On the Cartesian plane $\mathbb{R}^{2}$, a circle is said to be nice if its center is at the origin $(0,0)$ and it passes through at least one lattice point (i.e. a point with integer coordinates). Define the points $A=(20,15)$ and $B=(20,16)$. How many nice circles intersect the open segment $A B$ ?
For reference, the numbers $601,607,613,617,619,631,641,643,647,653,659,661,673,677,683$, 691 are the only prime numbers between 600 and 700 .
|
Answer: 10
The square of the radius of a nice circle is the sum of the square of two integers.
The nice circle of radius $r$ intersects (the open segment) $\overline{A B}$ if and only if a point on $\overline{A B}$ is a distance $r$ from the origin. $\overline{A B}$ consists of the points $(20, t)$ where $t$ ranges over $(15,16)$. The distance from the origin is $\sqrt{20^{2}+t^{2}}=\sqrt{400+t^{2}}$. As $t$ ranges over $(15,16), \sqrt{400+t^{2}}$ ranges over $(\sqrt{625}, \sqrt{656})$, so the nice circle of radius $r$ intersects $\overline{A B}$ if and only if $625<r^{2}<656$.
The possible values of $r^{2}$ are those in this range that are the sum of two perfect squares, and each such value corresponds to a unique nice circle. By Fermat's Christmas theorem, an integer is the sum of two squares if an only if in its prime factorization, each prime that is $3 \bmod 4$ appears with an even exponent (possibly 0 .) In addition, since squares are 0,1 , or $4 \bmod 8$, we can quickly eliminate integers that are 3,6 , or $7 \bmod 8$.
Now I will list all the integers that aren't 3,6 , or $7 \bmod 8$ in the range and either supply the bad prime factor or write "nice" with the prime factorization.
626: nice $(2 \cdot 313)$
628: nice $\left(2^{2} \cdot 157\right)$
629: nice $(17 \cdot 37)$
632: 79
633: 3
634: nice $(2 \cdot 317)$
636: 3
637: nice $\left(7^{2} \cdot 13\right)$
640: nice $\left(2^{7} \cdot 5\right)$
641: nice (641)
642: 3
644: 7
645: 3
648: nice $\left(2^{3} \cdot 3^{4}\right)$
649: 11
650: nice $\left(2 \cdot 5^{2} \cdot 13\right)$
652: 163
653: nice (653). There are 10 nice circles that intersect $\overline{A B}$.
|
10
|
Yes
|
Yes
|
math-word-problem
|
Number Theory
|
On the Cartesian plane $\mathbb{R}^{2}$, a circle is said to be nice if its center is at the origin $(0,0)$ and it passes through at least one lattice point (i.e. a point with integer coordinates). Define the points $A=(20,15)$ and $B=(20,16)$. How many nice circles intersect the open segment $A B$ ?
For reference, the numbers $601,607,613,617,619,631,641,643,647,653,659,661,673,677,683$, 691 are the only prime numbers between 600 and 700 .
|
Answer: 10
The square of the radius of a nice circle is the sum of the square of two integers.
The nice circle of radius $r$ intersects (the open segment) $\overline{A B}$ if and only if a point on $\overline{A B}$ is a distance $r$ from the origin. $\overline{A B}$ consists of the points $(20, t)$ where $t$ ranges over $(15,16)$. The distance from the origin is $\sqrt{20^{2}+t^{2}}=\sqrt{400+t^{2}}$. As $t$ ranges over $(15,16), \sqrt{400+t^{2}}$ ranges over $(\sqrt{625}, \sqrt{656})$, so the nice circle of radius $r$ intersects $\overline{A B}$ if and only if $625<r^{2}<656$.
The possible values of $r^{2}$ are those in this range that are the sum of two perfect squares, and each such value corresponds to a unique nice circle. By Fermat's Christmas theorem, an integer is the sum of two squares if an only if in its prime factorization, each prime that is $3 \bmod 4$ appears with an even exponent (possibly 0 .) In addition, since squares are 0,1 , or $4 \bmod 8$, we can quickly eliminate integers that are 3,6 , or $7 \bmod 8$.
Now I will list all the integers that aren't 3,6 , or $7 \bmod 8$ in the range and either supply the bad prime factor or write "nice" with the prime factorization.
626: nice $(2 \cdot 313)$
628: nice $\left(2^{2} \cdot 157\right)$
629: nice $(17 \cdot 37)$
632: 79
633: 3
634: nice $(2 \cdot 317)$
636: 3
637: nice $\left(7^{2} \cdot 13\right)$
640: nice $\left(2^{7} \cdot 5\right)$
641: nice (641)
642: 3
644: 7
645: 3
648: nice $\left(2^{3} \cdot 3^{4}\right)$
649: 11
650: nice $\left(2 \cdot 5^{2} \cdot 13\right)$
652: 163
653: nice (653). There are 10 nice circles that intersect $\overline{A B}$.
|
{
"resource_path": "HarvardMIT/segmented/en-192-2016-feb-guts-solutions.jsonl",
"problem_match": "\n22. [12]",
"solution_match": "\nProposed by:\n"
}
|
a6587646-2284-5699-8f4b-5a9afa4be55a
| 609,546
|
Let $t=2016$ and $p=\ln 2$. Evaluate in closed form the sum
$$
\sum_{k=1}^{\infty}\left(1-\sum_{n=0}^{k-1} \frac{e^{-t} t^{n}}{n!}\right)(1-p)^{k-1} p
$$
|
Answer: $1-\left(\frac{1}{2}\right)^{2016}$
Let $q=1-p$. Then
$$
\begin{aligned}
\sum_{k=1}^{\infty}\left(1-\sum_{n=0}^{k-1} \frac{e^{-t} t^{n}}{n!}\right) q^{k-1} p & =\sum_{k=1}^{\infty} q^{k-1} p-\sum_{k=1}^{\infty} \sum_{n=0}^{k-1} \frac{e^{-t} t^{n}}{n!} q^{k-1} p \\
& =1-\sum_{k=1}^{\infty} \sum_{n=0}^{k-1} \frac{e^{-t} t^{n}}{n!} q^{k-1} p \\
& =1-\sum_{n=0}^{\infty} \sum_{k=n+1}^{\infty} \frac{e^{-t} t^{n}}{n!} q^{k-1} p \\
& =1-\sum_{n=0}^{\infty} \frac{e^{-t} t^{n}}{n!} q^{n} \\
& =1-\sum_{n=0}^{\infty} \frac{e^{-t}(q t)^{n}}{n!}=1-e^{-t} e^{q t}=1-e^{-p t}
\end{aligned}
$$
Thus the answer is $1-\left(\frac{1}{2}\right)^{2016}$.
|
1-\left(\frac{1}{2}\right)^{2016}
|
Yes
|
Yes
|
math-word-problem
|
Algebra
|
Let $t=2016$ and $p=\ln 2$. Evaluate in closed form the sum
$$
\sum_{k=1}^{\infty}\left(1-\sum_{n=0}^{k-1} \frac{e^{-t} t^{n}}{n!}\right)(1-p)^{k-1} p
$$
|
Answer: $1-\left(\frac{1}{2}\right)^{2016}$
Let $q=1-p$. Then
$$
\begin{aligned}
\sum_{k=1}^{\infty}\left(1-\sum_{n=0}^{k-1} \frac{e^{-t} t^{n}}{n!}\right) q^{k-1} p & =\sum_{k=1}^{\infty} q^{k-1} p-\sum_{k=1}^{\infty} \sum_{n=0}^{k-1} \frac{e^{-t} t^{n}}{n!} q^{k-1} p \\
& =1-\sum_{k=1}^{\infty} \sum_{n=0}^{k-1} \frac{e^{-t} t^{n}}{n!} q^{k-1} p \\
& =1-\sum_{n=0}^{\infty} \sum_{k=n+1}^{\infty} \frac{e^{-t} t^{n}}{n!} q^{k-1} p \\
& =1-\sum_{n=0}^{\infty} \frac{e^{-t} t^{n}}{n!} q^{n} \\
& =1-\sum_{n=0}^{\infty} \frac{e^{-t}(q t)^{n}}{n!}=1-e^{-t} e^{q t}=1-e^{-p t}
\end{aligned}
$$
Thus the answer is $1-\left(\frac{1}{2}\right)^{2016}$.
|
{
"resource_path": "HarvardMIT/segmented/en-192-2016-feb-guts-solutions.jsonl",
"problem_match": "\n23. [12]",
"solution_match": "\nProposed by: Aaron Landesman\n"
}
|
05cf7a7d-40b8-5c86-8b74-477c1221873f
| 609,547
|
Let $\Delta A_{1} B_{1} C$ be a triangle with $\angle A_{1} B_{1} C=90^{\circ}$ and $\frac{C A_{1}}{C B_{1}}=\sqrt{5}+2$. For any $i \geq 2$, define $A_{i}$ to be the point on the line $A_{1} C$ such that $A_{i} B_{i-1} \perp A_{1} C$ and define $B_{i}$ to be the point on the line $B_{1} C$ such that $A_{i} B_{i} \perp B_{1} C$. Let $\Gamma_{1}$ be the incircle of $\Delta A_{1} B_{1} C$ and for $i \geq 2, \Gamma_{i}$ be the circle tangent to $\Gamma_{i-1}, A_{1} C, B_{1} C$ which is smaller than $\Gamma_{i-1}$.
How many integers $k$ are there such that the line $A_{1} B_{2016}$ intersects $\Gamma_{k}$ ?
|
Answer: 4030
We claim that $\Gamma_{2}$ is the incircle of $\triangle B_{1} A_{2} C$. This is because $\triangle B_{1} A_{2} C$ is similar to $A_{1} B_{1} C$ with dilation factor $\sqrt{5}-2$, and by simple trigonometry, one can prove that $\Gamma_{2}$ is similar to $\Gamma_{1}$ with the same dilation factor. By similarities, we can see that for every $k$, the incircle of $\triangle A_{k} B_{k} C$ is $\Gamma_{2 k-1}$, and the incircle of $\triangle B_{k} A_{k+1} C$ is $\Gamma_{2 k}$. Therefore, $A_{1} B_{2016}$ intersects all $\Gamma_{1}, \ldots, \Gamma_{4030}$ but not $\Gamma_{k}$ for any $k \geq 4031$.
|
4030
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
Let $\Delta A_{1} B_{1} C$ be a triangle with $\angle A_{1} B_{1} C=90^{\circ}$ and $\frac{C A_{1}}{C B_{1}}=\sqrt{5}+2$. For any $i \geq 2$, define $A_{i}$ to be the point on the line $A_{1} C$ such that $A_{i} B_{i-1} \perp A_{1} C$ and define $B_{i}$ to be the point on the line $B_{1} C$ such that $A_{i} B_{i} \perp B_{1} C$. Let $\Gamma_{1}$ be the incircle of $\Delta A_{1} B_{1} C$ and for $i \geq 2, \Gamma_{i}$ be the circle tangent to $\Gamma_{i-1}, A_{1} C, B_{1} C$ which is smaller than $\Gamma_{i-1}$.
How many integers $k$ are there such that the line $A_{1} B_{2016}$ intersects $\Gamma_{k}$ ?
|
Answer: 4030
We claim that $\Gamma_{2}$ is the incircle of $\triangle B_{1} A_{2} C$. This is because $\triangle B_{1} A_{2} C$ is similar to $A_{1} B_{1} C$ with dilation factor $\sqrt{5}-2$, and by simple trigonometry, one can prove that $\Gamma_{2}$ is similar to $\Gamma_{1}$ with the same dilation factor. By similarities, we can see that for every $k$, the incircle of $\triangle A_{k} B_{k} C$ is $\Gamma_{2 k-1}$, and the incircle of $\triangle B_{k} A_{k+1} C$ is $\Gamma_{2 k}$. Therefore, $A_{1} B_{2016}$ intersects all $\Gamma_{1}, \ldots, \Gamma_{4030}$ but not $\Gamma_{k}$ for any $k \geq 4031$.
|
{
"resource_path": "HarvardMIT/segmented/en-192-2016-feb-guts-solutions.jsonl",
"problem_match": "\n24. [12]",
"solution_match": "\nProposed by:\n"
}
|
25d44c28-94f0-55da-9934-65240f8b4d67
| 609,548
|
A particular coin can land on heads (H), on tails ( T ), or in the middle (M), each with probability $\frac{1}{3}$. Find the expected number of flips necessary to observe the contiguous sequence HMMTHMMT...HMMT, where the sequence HMMT is repeated 2016 times.
|
Answer: $\frac{3^{8068}-81}{80}$
Let $E_{0}$ be the expected number of flips needed. Let $E_{1}$ be the expected number more of flips needed if the first flip landed on H . Let $E_{2}$ be the expected number more if the first two landed on HM. In general, let $E_{k}$ be the expected number more of flips needed if the first $k$ flips landed on the first $k$ values of the sequence HMMTHMMT...HMMT.
We have
$$
E_{i}=\left\{\begin{array}{lll}
1+\frac{1}{3} E_{i+1}+\frac{1}{3} E_{1}+\frac{1}{3} E_{0} & i \not \equiv 0 & (\bmod 4) \\
1+\frac{1}{3} E_{i+1}+\frac{2}{3} E_{0} & i \equiv 0 & (\bmod 4)
\end{array}\right.
$$
Using this relation for $i=0$ gives us $E_{1}=E_{0}-3$. Let $F_{i}=\frac{1}{3^{i}} E_{i}$. By simple algebraic manipulations we have
$$
F_{i+1}-F_{i}=\left\{\begin{array}{lll}
-\frac{2}{3^{i+1}} \cdot E_{0} & i \not \equiv 0 & (\bmod 4) \\
-\frac{1}{3^{i}}-\frac{2}{3^{i+1}} \cdot E_{0} & i \equiv 0 & (\bmod 4)
\end{array}\right.
$$
We clearly have $F_{2016 \cdot 4}=0$ and $F_{0}=E_{0}$. So adding up the above relations for $i=0$ to $i=2016 \cdot 4-1$ gives
$$
\begin{aligned}
-E_{0} & =-2 E_{0} \sum_{i=1}^{2016 \cdot 4} \frac{1}{3^{i}}-\sum_{k=0}^{2015} \frac{1}{3^{4 k}} \\
& =E_{0}\left(\frac{1}{3^{2016 \cdot 4}}-1\right)-\frac{1-\frac{1}{3^{2016 \cdot 4}}}{\frac{80}{81}}
\end{aligned}
$$
so $E_{0}=\frac{3^{8068}-81}{80}$.
|
\frac{3^{8068}-81}{80}
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
A particular coin can land on heads (H), on tails ( T ), or in the middle (M), each with probability $\frac{1}{3}$. Find the expected number of flips necessary to observe the contiguous sequence HMMTHMMT...HMMT, where the sequence HMMT is repeated 2016 times.
|
Answer: $\frac{3^{8068}-81}{80}$
Let $E_{0}$ be the expected number of flips needed. Let $E_{1}$ be the expected number more of flips needed if the first flip landed on H . Let $E_{2}$ be the expected number more if the first two landed on HM. In general, let $E_{k}$ be the expected number more of flips needed if the first $k$ flips landed on the first $k$ values of the sequence HMMTHMMT...HMMT.
We have
$$
E_{i}=\left\{\begin{array}{lll}
1+\frac{1}{3} E_{i+1}+\frac{1}{3} E_{1}+\frac{1}{3} E_{0} & i \not \equiv 0 & (\bmod 4) \\
1+\frac{1}{3} E_{i+1}+\frac{2}{3} E_{0} & i \equiv 0 & (\bmod 4)
\end{array}\right.
$$
Using this relation for $i=0$ gives us $E_{1}=E_{0}-3$. Let $F_{i}=\frac{1}{3^{i}} E_{i}$. By simple algebraic manipulations we have
$$
F_{i+1}-F_{i}=\left\{\begin{array}{lll}
-\frac{2}{3^{i+1}} \cdot E_{0} & i \not \equiv 0 & (\bmod 4) \\
-\frac{1}{3^{i}}-\frac{2}{3^{i+1}} \cdot E_{0} & i \equiv 0 & (\bmod 4)
\end{array}\right.
$$
We clearly have $F_{2016 \cdot 4}=0$ and $F_{0}=E_{0}$. So adding up the above relations for $i=0$ to $i=2016 \cdot 4-1$ gives
$$
\begin{aligned}
-E_{0} & =-2 E_{0} \sum_{i=1}^{2016 \cdot 4} \frac{1}{3^{i}}-\sum_{k=0}^{2015} \frac{1}{3^{4 k}} \\
& =E_{0}\left(\frac{1}{3^{2016 \cdot 4}}-1\right)-\frac{1-\frac{1}{3^{2016 \cdot 4}}}{\frac{80}{81}}
\end{aligned}
$$
so $E_{0}=\frac{3^{8068}-81}{80}$.
|
{
"resource_path": "HarvardMIT/segmented/en-192-2016-feb-guts-solutions.jsonl",
"problem_match": "\n25. [14]",
"solution_match": "\nProposed by: Ritesh Ragavender\n"
}
|
c33cd37f-5640-58ff-8610-84812473bb06
| 609,549
|
For positive integers $a, b, a \uparrow \uparrow b$ is defined as follows: $a \uparrow \uparrow 1=a$, and $a \uparrow \uparrow b=a^{a \uparrow \uparrow(b-1)}$ if $b>1$.
Find the smallest positive integer $n$ for which there exists a positive integer $a$ such that $a \uparrow \uparrow 6 \not \equiv a \uparrow \uparrow 7$ $\bmod n$.
|
Answer: 283
We see that the smallest such $n$ must be a prime power, because if two numbers are distinct mod $n$, they must be distinct mod at least one of the prime powers that divide $n$. For $k \geq 2$, if $a \uparrow \uparrow k$ and $a \uparrow \uparrow(k+1)$ are distinct $\bmod p^{r}$, then $a \uparrow \uparrow(k-1)$ and $a \uparrow \uparrow k$ must be distinct $\bmod \phi\left(p^{r}\right)$. In fact they need to be distinct $\bmod \frac{\phi\left(p^{r}\right)}{2}$ if $p=2$ and $r \geq 3$ because then there are no primitive roots mod $p^{r}$.
Using this, for $1 \leq k \leq 5$ we find the smallest prime $p$ such that there exists $a$ such that $a \uparrow \uparrow k$ and $a \uparrow \uparrow(k+1)$ are distinct $\bmod p$. The list is: $3,5,11,23,47$. We can easily check that the next largest prime for $k=5$ is 139 , and also any prime power other than 121 for which $a \uparrow \uparrow 5$ and $a \uparrow \uparrow 6$ are distinct is also larger than 139.
Now if $a \uparrow \uparrow 6$ and $a \uparrow \uparrow 7$ are distinct $\bmod p$, then $p-1$ must be a multiple of 47 or something that is either 121 or at least 139. It is easy to see that 283 is the smallest prime that satisfies this.
If $n$ is a prime power less than 283 such that $a \uparrow \uparrow 6$ and $a \uparrow \uparrow 7$ are distinct $\bmod n$, then the prime can be at most 13 and clearly this doesn't work because $\phi\left(p^{r}\right)=p^{r-1}(p-1)$.
To show that 283 works, choose $a$ so that $a$ is a primitive root $\bmod 283,47,23,11,5$ and 3 . This is possible by the Chinese Remainder theorem, and it is easy to see that this $a$ works by induction.
|
283
|
Yes
|
Yes
|
math-word-problem
|
Number Theory
|
For positive integers $a, b, a \uparrow \uparrow b$ is defined as follows: $a \uparrow \uparrow 1=a$, and $a \uparrow \uparrow b=a^{a \uparrow \uparrow(b-1)}$ if $b>1$.
Find the smallest positive integer $n$ for which there exists a positive integer $a$ such that $a \uparrow \uparrow 6 \not \equiv a \uparrow \uparrow 7$ $\bmod n$.
|
Answer: 283
We see that the smallest such $n$ must be a prime power, because if two numbers are distinct mod $n$, they must be distinct mod at least one of the prime powers that divide $n$. For $k \geq 2$, if $a \uparrow \uparrow k$ and $a \uparrow \uparrow(k+1)$ are distinct $\bmod p^{r}$, then $a \uparrow \uparrow(k-1)$ and $a \uparrow \uparrow k$ must be distinct $\bmod \phi\left(p^{r}\right)$. In fact they need to be distinct $\bmod \frac{\phi\left(p^{r}\right)}{2}$ if $p=2$ and $r \geq 3$ because then there are no primitive roots mod $p^{r}$.
Using this, for $1 \leq k \leq 5$ we find the smallest prime $p$ such that there exists $a$ such that $a \uparrow \uparrow k$ and $a \uparrow \uparrow(k+1)$ are distinct $\bmod p$. The list is: $3,5,11,23,47$. We can easily check that the next largest prime for $k=5$ is 139 , and also any prime power other than 121 for which $a \uparrow \uparrow 5$ and $a \uparrow \uparrow 6$ are distinct is also larger than 139.
Now if $a \uparrow \uparrow 6$ and $a \uparrow \uparrow 7$ are distinct $\bmod p$, then $p-1$ must be a multiple of 47 or something that is either 121 or at least 139. It is easy to see that 283 is the smallest prime that satisfies this.
If $n$ is a prime power less than 283 such that $a \uparrow \uparrow 6$ and $a \uparrow \uparrow 7$ are distinct $\bmod n$, then the prime can be at most 13 and clearly this doesn't work because $\phi\left(p^{r}\right)=p^{r-1}(p-1)$.
To show that 283 works, choose $a$ so that $a$ is a primitive root $\bmod 283,47,23,11,5$ and 3 . This is possible by the Chinese Remainder theorem, and it is easy to see that this $a$ works by induction.
|
{
"resource_path": "HarvardMIT/segmented/en-192-2016-feb-guts-solutions.jsonl",
"problem_match": "\n26. [14]",
"solution_match": "\nProposed by: Sammy Luo\n"
}
|
64a942fc-6b66-52b3-b09a-97625cb8d8f1
| 609,550
|
Find the smallest possible area of an ellipse passing through $(2,0),(0,3),(0,7)$, and $(6,0)$.
|
Answer: $\frac{56 \pi \sqrt{3}}{9}$
Let $\Gamma$ be an ellipse passing through $A=(2,0), B=(0,3), C=(0,7), D=(6,0)$, and let $P=(0,0)$ be the intersection of $A D$ and $B C$. $\frac{\text { Area of } \Gamma}{\text { Area of } A B C D}$ is unchanged under an affine transformation, so we just have to minimize this quantity over situations where $\Gamma$ is a circle and $\frac{P A}{P D}=\frac{1}{3}$ and $\frac{P B}{B C}=\frac{3}{7}$. In fact, we may assume that $P A=\sqrt{7}, P B=3, P C=7, P D=3 \sqrt{7}$. If $\angle P=\theta$, then we can compute lengths to get
$$
r=\frac{\text { Area of } \Gamma}{\text { Area of } A B C D}=\pi \frac{32-20 \sqrt{7} \cos \theta+21 \cos ^{2} \theta}{9 \sqrt{7} \cdot \sin ^{3} \theta}
$$
Let $x=\cos \theta$. Then if we treat $r$ as a function of $x$,
$$
0=\frac{r^{\prime}}{r}=\frac{3 x}{1-x^{2}}+\frac{42 x-20 \sqrt{7}}{32-20 x \sqrt{7}+21 x^{2}}
$$
which means that $21 x^{3}-40 x \sqrt{7}+138 x-20 \sqrt{7}=0$. Letting $y=x \sqrt{7}$ gives
$$
0=3 y^{3}-40 y^{2}+138 y-140=(y-2)\left(3 y^{2}-34 y+70\right)
$$
The other quadratic has roots that are greater than $\sqrt{7}$, which means that the minimum ratio is attained when $\cos \theta=x=\frac{y}{\sqrt{7}}=\frac{2}{\sqrt{7}}$. Plugging that back in gives that the optimum $\frac{\text { Area of } \Gamma}{\text { Area of } A B C D}$ is
$\frac{28 \pi \sqrt{3}}{81}$, so putting this back into the original configuration gives Area of $\Gamma \geq \frac{56 \pi \sqrt{3}}{9}$. If you want to check on Geogebra, this minimum occurs when the center of $\Gamma$ is $\left(\frac{8}{3}, \frac{7}{3}\right)$.
|
\frac{56 \pi \sqrt{3}}{9}
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
Find the smallest possible area of an ellipse passing through $(2,0),(0,3),(0,7)$, and $(6,0)$.
|
Answer: $\frac{56 \pi \sqrt{3}}{9}$
Let $\Gamma$ be an ellipse passing through $A=(2,0), B=(0,3), C=(0,7), D=(6,0)$, and let $P=(0,0)$ be the intersection of $A D$ and $B C$. $\frac{\text { Area of } \Gamma}{\text { Area of } A B C D}$ is unchanged under an affine transformation, so we just have to minimize this quantity over situations where $\Gamma$ is a circle and $\frac{P A}{P D}=\frac{1}{3}$ and $\frac{P B}{B C}=\frac{3}{7}$. In fact, we may assume that $P A=\sqrt{7}, P B=3, P C=7, P D=3 \sqrt{7}$. If $\angle P=\theta$, then we can compute lengths to get
$$
r=\frac{\text { Area of } \Gamma}{\text { Area of } A B C D}=\pi \frac{32-20 \sqrt{7} \cos \theta+21 \cos ^{2} \theta}{9 \sqrt{7} \cdot \sin ^{3} \theta}
$$
Let $x=\cos \theta$. Then if we treat $r$ as a function of $x$,
$$
0=\frac{r^{\prime}}{r}=\frac{3 x}{1-x^{2}}+\frac{42 x-20 \sqrt{7}}{32-20 x \sqrt{7}+21 x^{2}}
$$
which means that $21 x^{3}-40 x \sqrt{7}+138 x-20 \sqrt{7}=0$. Letting $y=x \sqrt{7}$ gives
$$
0=3 y^{3}-40 y^{2}+138 y-140=(y-2)\left(3 y^{2}-34 y+70\right)
$$
The other quadratic has roots that are greater than $\sqrt{7}$, which means that the minimum ratio is attained when $\cos \theta=x=\frac{y}{\sqrt{7}}=\frac{2}{\sqrt{7}}$. Plugging that back in gives that the optimum $\frac{\text { Area of } \Gamma}{\text { Area of } A B C D}$ is
$\frac{28 \pi \sqrt{3}}{81}$, so putting this back into the original configuration gives Area of $\Gamma \geq \frac{56 \pi \sqrt{3}}{9}$. If you want to check on Geogebra, this minimum occurs when the center of $\Gamma$ is $\left(\frac{8}{3}, \frac{7}{3}\right)$.
|
{
"resource_path": "HarvardMIT/segmented/en-192-2016-feb-guts-solutions.jsonl",
"problem_match": "\n27. [14]",
"solution_match": "\nProposed by: Calvin Deng\n"
}
|
9679292d-d077-5892-863b-e2905e4297ea
| 609,551
|
Among citizens of Cambridge there exist 8 different types of blood antigens. In a crowded lecture hall are 256 students, each of whom has a blood type corresponding to a distinct subset of the antigens; the remaining of the antigens are foreign to them.
Quito the Mosquito flies around the lecture hall, picks a subset of the students uniformly at random, and bites the chosen students in a random order. After biting a student, Quito stores a bit of any antigens that student had. A student bitten while Quito had $k$ blood antigen foreign to him/her will suffer for $k$ hours. What is the expected total suffering of all 256 students, in hours?
|
Answer: $\frac{2^{135}-2^{128}+1}{2^{119} \cdot 129}$
Let $n=8$.
First, consider any given student $S$ and an antigen $a$ foreign to him/her. Assuming $S$ has been bitten, we claim the probability $S$ will suffer due to $a$ is
$$
1-\frac{2^{2^{n-1}+1}-1}{2^{2^{n-1}}\left(2^{n-1}+1\right)}
$$
Indeed, let $N=2^{n-1}$ denote the number of students with $a$. So considering just these students and summing over the number bitten, we obtain a probability
$$
\frac{1}{2^{N}} \sum_{t=0}^{N}\binom{N}{t}\binom{N}{t} \frac{t}{t+1}=\frac{1}{2^{N}} \frac{2^{N} N-2^{N}+1}{N+1}
$$
We now use linearity over all pairs $(S, a)$ of students $S$ and antigens $a$ foreign to them. Noting that each student is bitten with probability $\frac{1}{2}$, and retaining the notation $N=2^{n-1}$, we get
$$
\frac{1}{2} \sum_{k=0}^{n}\left[\binom{n}{k} \cdot k\left(\frac{2^{N} N-2^{N}+1}{2^{N}(N+1)}\right)\right]=\frac{n N\left(2^{N} N-2^{N}+1\right)}{2^{N+1}(N+1)} .
$$
Finally, setting $n=8=2^{3}$ and $N=2^{n-1}=2^{7}=128$, we get the claimed answer.
|
\frac{2^{135}-2^{128}+1}{2^{119} \cdot 129}
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
Among citizens of Cambridge there exist 8 different types of blood antigens. In a crowded lecture hall are 256 students, each of whom has a blood type corresponding to a distinct subset of the antigens; the remaining of the antigens are foreign to them.
Quito the Mosquito flies around the lecture hall, picks a subset of the students uniformly at random, and bites the chosen students in a random order. After biting a student, Quito stores a bit of any antigens that student had. A student bitten while Quito had $k$ blood antigen foreign to him/her will suffer for $k$ hours. What is the expected total suffering of all 256 students, in hours?
|
Answer: $\frac{2^{135}-2^{128}+1}{2^{119} \cdot 129}$
Let $n=8$.
First, consider any given student $S$ and an antigen $a$ foreign to him/her. Assuming $S$ has been bitten, we claim the probability $S$ will suffer due to $a$ is
$$
1-\frac{2^{2^{n-1}+1}-1}{2^{2^{n-1}}\left(2^{n-1}+1\right)}
$$
Indeed, let $N=2^{n-1}$ denote the number of students with $a$. So considering just these students and summing over the number bitten, we obtain a probability
$$
\frac{1}{2^{N}} \sum_{t=0}^{N}\binom{N}{t}\binom{N}{t} \frac{t}{t+1}=\frac{1}{2^{N}} \frac{2^{N} N-2^{N}+1}{N+1}
$$
We now use linearity over all pairs $(S, a)$ of students $S$ and antigens $a$ foreign to them. Noting that each student is bitten with probability $\frac{1}{2}$, and retaining the notation $N=2^{n-1}$, we get
$$
\frac{1}{2} \sum_{k=0}^{n}\left[\binom{n}{k} \cdot k\left(\frac{2^{N} N-2^{N}+1}{2^{N}(N+1)}\right)\right]=\frac{n N\left(2^{N} N-2^{N}+1\right)}{2^{N+1}(N+1)} .
$$
Finally, setting $n=8=2^{3}$ and $N=2^{n-1}=2^{7}=128$, we get the claimed answer.
|
{
"resource_path": "HarvardMIT/segmented/en-192-2016-feb-guts-solutions.jsonl",
"problem_match": "\n28. [14]",
"solution_match": "\nProposed by: Sammy Luo\n"
}
|
8f291cbb-24b3-5e05-a206-e69432f6913f
| 609,552
|
Katherine has a piece of string that is 2016 millimeters long. She cuts the string at a location chosen uniformly at random, and takes the left half. She continues this process until the remaining string is less than one millimeter long. What is the expected number of cuts that she makes?
|
Answer: $1+\log (2016)$
Letting $f(x)$ be the expected number of cuts if the initial length of the string is $x$, we get the integral equation $f(x)=1+\frac{1}{x} \int_{1}^{x} f(y) d y$. Letting $g(x)=\int_{1}^{x} f(y) d y$, we get $d g / d x=1+\frac{1}{x} g(x)$. Using integrating factors, we see that this has as its solution $g(x)=x \log (x)$, and thus $f(x)=1+\log (x)$.
|
1+\log (2016)
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
Katherine has a piece of string that is 2016 millimeters long. She cuts the string at a location chosen uniformly at random, and takes the left half. She continues this process until the remaining string is less than one millimeter long. What is the expected number of cuts that she makes?
|
Answer: $1+\log (2016)$
Letting $f(x)$ be the expected number of cuts if the initial length of the string is $x$, we get the integral equation $f(x)=1+\frac{1}{x} \int_{1}^{x} f(y) d y$. Letting $g(x)=\int_{1}^{x} f(y) d y$, we get $d g / d x=1+\frac{1}{x} g(x)$. Using integrating factors, we see that this has as its solution $g(x)=x \log (x)$, and thus $f(x)=1+\log (x)$.
|
{
"resource_path": "HarvardMIT/segmented/en-192-2016-feb-guts-solutions.jsonl",
"problem_match": "\n29. [16]",
"solution_match": "\nProposed by:\n"
}
|
f59c6167-550d-504b-82d5-15db6c11f784
| 609,553
|
Determine the number of triples $0 \leq k, m, n \leq 100$ of integers such that
$$
2^{m} n-2^{n} m=2^{k}
$$
|
Answer: 22
First consider when $n \geq m$, so let $n=m+d$ where $d \geq 0$. Then we have $2^{m}\left(m+d-2^{d} m\right)=$ $2^{m}\left(m\left(1-2^{d}\right)+d\right)$, which is non-positive unless $m=0$. So our first set of solutions is $m=0, n=2^{j}$.
Now, we can assume that $m>n$, so let $m=n+d$ where $d>0$. Rewrite $2^{m} n-2^{n} m=2^{n+d} n-$ $2^{n}(n+d)=2^{n}\left(\left(2^{d}-1\right) n-d\right)$. In order for this to be a power of $2,\left(2^{d}-1\right) n-d$ must be a power of 2. This implies that for some $j, 2^{j} \equiv-d\left(\bmod 2^{d}-1\right)$. But notice that the powers of $2\left(\bmod 2^{d}-1\right)$ are $1,2,4, \ldots, 2^{d-1}\left(2^{d} \equiv 1\right.$ so the cycle repeats $)$.
In order for the residues to match, we need $2^{j}+d=c\left(2^{d}-1\right)$, where $0 \leq j \leq d-1$ and $c \geq 1$. In order for this to be true, we must have $2^{d-1}+d \geq 2^{d}-1 \Longleftrightarrow d+1 \geq 2^{d-1}$. This inequality is only true for $d=1,2,3$. We plug each of these into the original expression $\left(2^{d}-1\right) n-d$.
For $d=1$ : $n-1$ is a power of 2 . This yields the set of solutions $\left(2^{j}+2,2^{j}+1\right)$ for $j \geq 0$.
For $d=2: 3 n-2$ is a power of 2 . Note that powers of 2 are $-2(\bmod 3)$ if and only if it is an even power, so $n=\frac{2^{2 j}+2}{3}$. This yields the solution set $\left(\frac{2^{2 j}+8}{3}, \frac{2^{2 j}+2}{3}\right), j \geq 0$.
For $d=3: 7 n-3$ is a power of 2 . Powers of 2 have a period of 3 when taken $(\bmod 7)$, so inspection tells us $7 n-3=2^{3 j+2}$, yielding the solution set $\left(\frac{2^{3 j+2}+24}{7}, \frac{2^{3 j+2}+3}{7}\right), j \geq 0$.
Therefore, all the solutions are of the form
$$
\begin{gathered}
(m, n)=\left(0,2^{j}\right),\left(2^{j}+2,2^{j}+1\right) \\
\left(\frac{2^{2 j}+8}{3}, \frac{2^{2 j}+2}{3}\right),\left(\frac{2^{3 j+2}+24}{7}, \frac{2^{3 j+2}+3}{7}\right)
\end{gathered}
$$
for $j \geq 0$.
Restricting this family to $m, n \leq 100$ gives $7+7+5+3=22$.
|
22
|
Yes
|
Yes
|
math-word-problem
|
Number Theory
|
Determine the number of triples $0 \leq k, m, n \leq 100$ of integers such that
$$
2^{m} n-2^{n} m=2^{k}
$$
|
Answer: 22
First consider when $n \geq m$, so let $n=m+d$ where $d \geq 0$. Then we have $2^{m}\left(m+d-2^{d} m\right)=$ $2^{m}\left(m\left(1-2^{d}\right)+d\right)$, which is non-positive unless $m=0$. So our first set of solutions is $m=0, n=2^{j}$.
Now, we can assume that $m>n$, so let $m=n+d$ where $d>0$. Rewrite $2^{m} n-2^{n} m=2^{n+d} n-$ $2^{n}(n+d)=2^{n}\left(\left(2^{d}-1\right) n-d\right)$. In order for this to be a power of $2,\left(2^{d}-1\right) n-d$ must be a power of 2. This implies that for some $j, 2^{j} \equiv-d\left(\bmod 2^{d}-1\right)$. But notice that the powers of $2\left(\bmod 2^{d}-1\right)$ are $1,2,4, \ldots, 2^{d-1}\left(2^{d} \equiv 1\right.$ so the cycle repeats $)$.
In order for the residues to match, we need $2^{j}+d=c\left(2^{d}-1\right)$, where $0 \leq j \leq d-1$ and $c \geq 1$. In order for this to be true, we must have $2^{d-1}+d \geq 2^{d}-1 \Longleftrightarrow d+1 \geq 2^{d-1}$. This inequality is only true for $d=1,2,3$. We plug each of these into the original expression $\left(2^{d}-1\right) n-d$.
For $d=1$ : $n-1$ is a power of 2 . This yields the set of solutions $\left(2^{j}+2,2^{j}+1\right)$ for $j \geq 0$.
For $d=2: 3 n-2$ is a power of 2 . Note that powers of 2 are $-2(\bmod 3)$ if and only if it is an even power, so $n=\frac{2^{2 j}+2}{3}$. This yields the solution set $\left(\frac{2^{2 j}+8}{3}, \frac{2^{2 j}+2}{3}\right), j \geq 0$.
For $d=3: 7 n-3$ is a power of 2 . Powers of 2 have a period of 3 when taken $(\bmod 7)$, so inspection tells us $7 n-3=2^{3 j+2}$, yielding the solution set $\left(\frac{2^{3 j+2}+24}{7}, \frac{2^{3 j+2}+3}{7}\right), j \geq 0$.
Therefore, all the solutions are of the form
$$
\begin{gathered}
(m, n)=\left(0,2^{j}\right),\left(2^{j}+2,2^{j}+1\right) \\
\left(\frac{2^{2 j}+8}{3}, \frac{2^{2 j}+2}{3}\right),\left(\frac{2^{3 j+2}+24}{7}, \frac{2^{3 j+2}+3}{7}\right)
\end{gathered}
$$
for $j \geq 0$.
Restricting this family to $m, n \leq 100$ gives $7+7+5+3=22$.
|
{
"resource_path": "HarvardMIT/segmented/en-192-2016-feb-guts-solutions.jsonl",
"problem_match": "\n30. [16]",
"solution_match": "\nProposed by: Casey Fu\n"
}
|
84dc4891-29a0-503e-9997-ef6ebf0bfb85
| 609,554
|
For a positive integer $n$, denote by $\tau(n)$ the number of positive integer divisors of $n$, and denote by $\phi(n)$ the number of positive integers that are less than or equal to $n$ and relatively prime to $n$. Call a positive integer $n$ good if $\varphi(n)+4 \tau(n)=n$. For example, the number 44 is good because $\varphi(44)+4 \tau(44)=44$.
Find the sum of all good positive integers $n$.
|
Answer: 172
We claim that $44,56,72$ are the only good numbers. It is easy to check that these numbers work.
Now we prove none others work. First, remark that as $n=1,2$ fail so we have $\varphi(n)$ is even, thus $n$ is even. This gives us $\varphi(n) \leq n / 2$. Now remark that $\tau(n)<2 \sqrt{n}$, so it follows we need $n / 2+8 \sqrt{n}>$ $n \Longrightarrow n \leq 256$. This gives us a preliminary bound. Note that in addition we have $8 \tau(n)>n$.
Now, it is easy to see that powers of 2 fail. Thus let $n=2^{a} p_{1}^{b}$ where $p_{1}$ is an odd prime. From $8 \tau(n)>n$ we get $8(a+1)(b+1)>2^{a} p_{1}^{b} \geq 2^{a} 3^{b}$ from which we get that $(a, b)$ is one of
$$
(1,1),(1,2),(1,3),(2,1),(2,2),(3,1),(3,2),(4,1)
$$
Remark that $p_{1} \leq \sqrt[b]{\frac{8(a+1)(b+1)}{2^{a}}}$. From this we can perform some casework:
- If $a=1, b=1$ then $p_{1}-1+16=2 p_{1}$ but then $p=15$, absurd.
- If $a=1, b=2$ then we have $p_{1} \leq 5$ which is obviously impossible.
- If $a=1, b=3$ then $p_{1} \leq 4$ which is impossible.
- If $a=2, b=1$ then $p_{1} \leq 12$ and it is easy to check that $p_{1}=11$ and thus $n=44$ is the only solution.
- If $a=2, b=2$ then $p_{1} \leq 4$ which is impossible.
- If $a=3, b=1$ then $p_{1} \leq 8$ and only $p_{1}=7$ or $n=56$ works.
- If $a=3, b=2$ then $p_{1} \leq 3$ and $p_{1}=3, n=72$ works.
- If $a=4, b=1$ then $p_{1} \leq 1$ which is absurd.
Now suppose $n$ is the product of 3 distinct primes, so $n=2^{a} p_{1}^{b} p_{2}^{c}$ so we have $8(a+1)(b+1)(c+1)>$ $2^{a} 3^{b} 5^{c}$ then we must have $(a, b, c)$ equal to one of
$$
(1,1,1),(1,2,1),(2,1,1),(3,1,1)
$$
Again, we can do some casework:
- If $a=b=c=1$ then $8 \tau(n)=64>2 p_{1} p_{2}$ but then $p_{1}=3, p_{2}=5$ or $p_{1}=3, p_{2}=7$ is forced neither of which work.
- If $a=1, b=2, c=1$ then $8 \tau(n)=96>2 p_{1}^{2} p_{2}$ but then $p_{1}=3, p_{2}=5$ is forced which does not work.
- If $a=2, b=1, c=1$ then $8 \tau(n)=96>4 p_{1} p_{2}$ forces $p_{1}=3, p_{2}=5$ or $p_{1}=3, p_{2}=7$ neither of which work.
- If $a=3, b=1, c=1$ then $8 \tau(n)=108>8 p_{1} p_{2}$ which has no solutions for $p_{1}, p_{2}$.
Finally, take the case where $n$ is the product of at least 4 distinct primes. But then $n \geq 2 \cdot 3 \cdot 5 \cdot 7=210$ and as $2 \cdot 3 \cdot 5 \cdot 11>256$, it suffices to check only the case of 210 . But 210 clearly fails, so it follows that $44,56,72$ are the only good numbers so we are done.
|
172
|
Yes
|
Yes
|
math-word-problem
|
Number Theory
|
For a positive integer $n$, denote by $\tau(n)$ the number of positive integer divisors of $n$, and denote by $\phi(n)$ the number of positive integers that are less than or equal to $n$ and relatively prime to $n$. Call a positive integer $n$ good if $\varphi(n)+4 \tau(n)=n$. For example, the number 44 is good because $\varphi(44)+4 \tau(44)=44$.
Find the sum of all good positive integers $n$.
|
Answer: 172
We claim that $44,56,72$ are the only good numbers. It is easy to check that these numbers work.
Now we prove none others work. First, remark that as $n=1,2$ fail so we have $\varphi(n)$ is even, thus $n$ is even. This gives us $\varphi(n) \leq n / 2$. Now remark that $\tau(n)<2 \sqrt{n}$, so it follows we need $n / 2+8 \sqrt{n}>$ $n \Longrightarrow n \leq 256$. This gives us a preliminary bound. Note that in addition we have $8 \tau(n)>n$.
Now, it is easy to see that powers of 2 fail. Thus let $n=2^{a} p_{1}^{b}$ where $p_{1}$ is an odd prime. From $8 \tau(n)>n$ we get $8(a+1)(b+1)>2^{a} p_{1}^{b} \geq 2^{a} 3^{b}$ from which we get that $(a, b)$ is one of
$$
(1,1),(1,2),(1,3),(2,1),(2,2),(3,1),(3,2),(4,1)
$$
Remark that $p_{1} \leq \sqrt[b]{\frac{8(a+1)(b+1)}{2^{a}}}$. From this we can perform some casework:
- If $a=1, b=1$ then $p_{1}-1+16=2 p_{1}$ but then $p=15$, absurd.
- If $a=1, b=2$ then we have $p_{1} \leq 5$ which is obviously impossible.
- If $a=1, b=3$ then $p_{1} \leq 4$ which is impossible.
- If $a=2, b=1$ then $p_{1} \leq 12$ and it is easy to check that $p_{1}=11$ and thus $n=44$ is the only solution.
- If $a=2, b=2$ then $p_{1} \leq 4$ which is impossible.
- If $a=3, b=1$ then $p_{1} \leq 8$ and only $p_{1}=7$ or $n=56$ works.
- If $a=3, b=2$ then $p_{1} \leq 3$ and $p_{1}=3, n=72$ works.
- If $a=4, b=1$ then $p_{1} \leq 1$ which is absurd.
Now suppose $n$ is the product of 3 distinct primes, so $n=2^{a} p_{1}^{b} p_{2}^{c}$ so we have $8(a+1)(b+1)(c+1)>$ $2^{a} 3^{b} 5^{c}$ then we must have $(a, b, c)$ equal to one of
$$
(1,1,1),(1,2,1),(2,1,1),(3,1,1)
$$
Again, we can do some casework:
- If $a=b=c=1$ then $8 \tau(n)=64>2 p_{1} p_{2}$ but then $p_{1}=3, p_{2}=5$ or $p_{1}=3, p_{2}=7$ is forced neither of which work.
- If $a=1, b=2, c=1$ then $8 \tau(n)=96>2 p_{1}^{2} p_{2}$ but then $p_{1}=3, p_{2}=5$ is forced which does not work.
- If $a=2, b=1, c=1$ then $8 \tau(n)=96>4 p_{1} p_{2}$ forces $p_{1}=3, p_{2}=5$ or $p_{1}=3, p_{2}=7$ neither of which work.
- If $a=3, b=1, c=1$ then $8 \tau(n)=108>8 p_{1} p_{2}$ which has no solutions for $p_{1}, p_{2}$.
Finally, take the case where $n$ is the product of at least 4 distinct primes. But then $n \geq 2 \cdot 3 \cdot 5 \cdot 7=210$ and as $2 \cdot 3 \cdot 5 \cdot 11>256$, it suffices to check only the case of 210 . But 210 clearly fails, so it follows that $44,56,72$ are the only good numbers so we are done.
|
{
"resource_path": "HarvardMIT/segmented/en-192-2016-feb-guts-solutions.jsonl",
"problem_match": "\n31. [16]",
"solution_match": "\nProposed by: Lawrence Sun\n"
}
|
5da54d0c-6b5a-57d5-9233-3a4e5dbe2285
| 609,555
|
How many equilateral hexagons of side length $\sqrt{13}$ have one vertex at $(0,0)$ and the other five vertices at lattice points?
(A lattice point is a point whose Cartesian coordinates are both integers. A hexagon may be concave but not self-intersecting.)
|
Answer: 216
We perform casework on the point three vertices away from $(0,0)$. By inspection, that point can be $( \pm 8, \pm 3),( \pm 7, \pm 2),( \pm 4, \pm 3),( \pm 3, \pm 2),( \pm 2, \pm 1)$ or their reflections across the line $y=x$. The cases are as follows:
If the third vertex is at any of $( \pm 8, \pm 3)$ or $( \pm 3, \pm 8)$, then there are 7 possible hexagons. There are 8 points of this form, contributing 56 hexagons.
If the third vertex is at any of $( \pm 7, \pm 2)$ or $( \pm 2, \pm 7)$, there are 6 possible hexagons, contributing 48 hexagons.
If the third vertex is at any of $( \pm 4, \pm 3)$ or $( \pm 3, \pm 4)$, there are again 6 possible hexagons, contributing 48 more hexagons.
If the third vertex is at any of $( \pm 3, \pm 2)$ or $( \pm 2, \pm 3)$, then there are again 6 possible hexagons, contributing 48 more hexagons.
Finally, if the third vertex is at any of $( \pm 2, \pm 1)$, then there are 2 possible hexagons only, contributing 16 hexagons.
Adding up, we get our answer of 216 .
|
216
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
How many equilateral hexagons of side length $\sqrt{13}$ have one vertex at $(0,0)$ and the other five vertices at lattice points?
(A lattice point is a point whose Cartesian coordinates are both integers. A hexagon may be concave but not self-intersecting.)
|
Answer: 216
We perform casework on the point three vertices away from $(0,0)$. By inspection, that point can be $( \pm 8, \pm 3),( \pm 7, \pm 2),( \pm 4, \pm 3),( \pm 3, \pm 2),( \pm 2, \pm 1)$ or their reflections across the line $y=x$. The cases are as follows:
If the third vertex is at any of $( \pm 8, \pm 3)$ or $( \pm 3, \pm 8)$, then there are 7 possible hexagons. There are 8 points of this form, contributing 56 hexagons.
If the third vertex is at any of $( \pm 7, \pm 2)$ or $( \pm 2, \pm 7)$, there are 6 possible hexagons, contributing 48 hexagons.
If the third vertex is at any of $( \pm 4, \pm 3)$ or $( \pm 3, \pm 4)$, there are again 6 possible hexagons, contributing 48 more hexagons.
If the third vertex is at any of $( \pm 3, \pm 2)$ or $( \pm 2, \pm 3)$, then there are again 6 possible hexagons, contributing 48 more hexagons.
Finally, if the third vertex is at any of $( \pm 2, \pm 1)$, then there are 2 possible hexagons only, contributing 16 hexagons.
Adding up, we get our answer of 216 .
|
{
"resource_path": "HarvardMIT/segmented/en-192-2016-feb-guts-solutions.jsonl",
"problem_match": "\n32. [16]",
"solution_match": "\nProposed by: Casey Fu\n"
}
|
cc11402b-41a1-5caa-8c68-803e8f99dcaf
| 609,556
|
(Lucas Numbers) The Lucas numbers are defined by $L_{0}=2, L_{1}=1$, and $L_{n+2}=L_{n+1}+L_{n}$ for every $n \geq 0$. There are $N$ integers $1 \leq n \leq 2016$ such that $L_{n}$ contains the digit 1 . Estimate $N$.
An estimate of $E$ earns $\lfloor 20-2|N-E|\rfloor$ or 0 points, whichever is greater.
|
Answer: 1984
lucas_ones $n=$ length . filter (elem '1') \$ take ( $\mathrm{n}+1$ ) lucas_strs
where
lucas $=2$ : 1 : zipWith (+) lucas (tail lucas)
lucas_strs = map show lucas
main $=$ putStrLn . show \$ lucas_ones 2016
|
1984
|
Yes
|
Yes
|
math-word-problem
|
Number Theory
|
(Lucas Numbers) The Lucas numbers are defined by $L_{0}=2, L_{1}=1$, and $L_{n+2}=L_{n+1}+L_{n}$ for every $n \geq 0$. There are $N$ integers $1 \leq n \leq 2016$ such that $L_{n}$ contains the digit 1 . Estimate $N$.
An estimate of $E$ earns $\lfloor 20-2|N-E|\rfloor$ or 0 points, whichever is greater.
|
Answer: 1984
lucas_ones $n=$ length . filter (elem '1') \$ take ( $\mathrm{n}+1$ ) lucas_strs
where
lucas $=2$ : 1 : zipWith (+) lucas (tail lucas)
lucas_strs = map show lucas
main $=$ putStrLn . show \$ lucas_ones 2016
|
{
"resource_path": "HarvardMIT/segmented/en-192-2016-feb-guts-solutions.jsonl",
"problem_match": "\n33. [20]",
"solution_match": "\nProposed by: Evan Chen\n"
}
|
a328c85a-f4ac-54bc-a922-d707eb7a8d17
| 609,557
|
(Caos) A cao [sic] has 6 legs, 3 on each side. A walking pattern for the cao is defined as an ordered sequence of raising and lowering each of the legs exactly once (altogether 12 actions), starting and ending with all legs on the ground. The pattern is safe if at any point, he has at least 3 legs on the ground and not all three legs are on the same side. Estimate $N$, the number of safe patterns.
An estimate of $E>0$ earns $\left\lfloor 20 \min (N / E, E / N)^{4}\right\rfloor$ points.
|
Answer: 1416528
```
# 1 = on ground, 0 = raised, 2 = back on ground
cache = {}
def pangzi(legs):
if legs == (2,2,2,2,2,2): return 1
elif legs.count(0) > 3: return 0
elif legs[0] + legs[1] + legs[2] == 0: return 0
elif legs[3] + legs[4] + legs[5] == 0: return 0
elif cache.has_key(legs): return cache[legs]
cache[legs] = 0
for i in xrange(6): # raise a leg
if legs[i] == 1:
new = list(legs)
new[i] = 0
cache[legs] += pangzi(tuple(new))
elif legs[i] == 0: # lower a leg
new = list(legs)
new[i] = 2
cache[legs] += pangzi(tuple(new))
return cache[legs]
print pangzi((1,1,1,1,1,1))
```
|
1416528
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
(Caos) A cao [sic] has 6 legs, 3 on each side. A walking pattern for the cao is defined as an ordered sequence of raising and lowering each of the legs exactly once (altogether 12 actions), starting and ending with all legs on the ground. The pattern is safe if at any point, he has at least 3 legs on the ground and not all three legs are on the same side. Estimate $N$, the number of safe patterns.
An estimate of $E>0$ earns $\left\lfloor 20 \min (N / E, E / N)^{4}\right\rfloor$ points.
|
Answer: 1416528
```
# 1 = on ground, 0 = raised, 2 = back on ground
cache = {}
def pangzi(legs):
if legs == (2,2,2,2,2,2): return 1
elif legs.count(0) > 3: return 0
elif legs[0] + legs[1] + legs[2] == 0: return 0
elif legs[3] + legs[4] + legs[5] == 0: return 0
elif cache.has_key(legs): return cache[legs]
cache[legs] = 0
for i in xrange(6): # raise a leg
if legs[i] == 1:
new = list(legs)
new[i] = 0
cache[legs] += pangzi(tuple(new))
elif legs[i] == 0: # lower a leg
new = list(legs)
new[i] = 2
cache[legs] += pangzi(tuple(new))
return cache[legs]
print pangzi((1,1,1,1,1,1))
```
|
{
"resource_path": "HarvardMIT/segmented/en-192-2016-feb-guts-solutions.jsonl",
"problem_match": "\n34. [20]",
"solution_match": "\nProposed by:\n"
}
|
41b6cbf9-f1b3-56df-bc36-fc4d14f53a8d
| 609,558
|
(Maximal Determinant) In a $17 \times 17$ matrix $M$, all entries are $\pm 1$. The maximum possible value of $|\operatorname{det} M|$ is $N$. Estimate $N$.
An estimate of $E>0$ earns $\left\lfloor 20 \min (N / E, E / N)^{2}\right\rfloor$ points.
|
Answer: $327680 \cdot 2^{16}$
This is Hadamard's maximal determinant problem. There's an upper bound of $n^{\frac{1}{2} n}$ which empirically seems to give reasonably good estimates, but in fact this is open for general $n$.
|
327680 \cdot 2^{16}
|
Yes
|
Yes
|
math-word-problem
|
Algebra
|
(Maximal Determinant) In a $17 \times 17$ matrix $M$, all entries are $\pm 1$. The maximum possible value of $|\operatorname{det} M|$ is $N$. Estimate $N$.
An estimate of $E>0$ earns $\left\lfloor 20 \min (N / E, E / N)^{2}\right\rfloor$ points.
|
Answer: $327680 \cdot 2^{16}$
This is Hadamard's maximal determinant problem. There's an upper bound of $n^{\frac{1}{2} n}$ which empirically seems to give reasonably good estimates, but in fact this is open for general $n$.
|
{
"resource_path": "HarvardMIT/segmented/en-192-2016-feb-guts-solutions.jsonl",
"problem_match": "\n35. [20]",
"solution_match": "\nProposed by: Evan Chen\n"
}
|
d51bd87b-8d52-5b93-b17b-e5e459c40ac5
| 609,559
|
(Self-Isogonal Cubics) Let $A B C$ be a triangle with $A B=2, A C=3, B C=4$. The isogonal conjugate of a point $P$, denoted $P^{*}$, is the point obtained by intersecting the reflection of lines $P A$, $P B, P C$ across the angle bisectors of $\angle A, \angle B$, and $\angle C$, respectively.
Given a point $Q$, let $\mathfrak{K}(Q)$ denote the unique cubic plane curve which passes through all points $P$ such that line $P P^{*}$ contains $Q$. Consider:
(a) the M'Cay cubic $\mathfrak{K}(O)$, where $O$ is the circumcenter of $\triangle A B C$,
(b) the Thomson cubic $\mathfrak{K}(G)$, where $G$ is the centroid of $\triangle A B C$,
(c) the Napoleon-Feurerbach cubic $\mathfrak{K}(N)$, where $N$ is the nine-point center of $\triangle A B C$,
(d) the Darboux cubic $\mathfrak{K}(L)$, where $L$ is the de Longchamps point (the reflection of the orthocenter across point $O$ ),
(e) the Neuberg cubic $\mathfrak{K}\left(X_{30}\right)$, where $X_{30}$ is the point at infinity along line $O G$,
(f) the nine-point circle of $\triangle A B C$,
(g) the incircle of $\triangle A B C$, and
(h) the circumcircle of $\triangle A B C$.
Estimate $N$, the number of points lying on at least two of these eight curves. An estimate of $E$ earns $\left\lfloor 20 \cdot 2^{-|N-E| / 6}\right\rfloor$ points.
|
Answer: 49
The first main insight is that all the cubics pass through the points $A, B, C, H$ (orthocenter), $O$, and the incenter and three excenters. Since two cubics intersect in at most nine points, this is all the intersections of a cubic with a cubic.
On the other hand, it is easy to see that among intersections of circles with circles, there are exactly 3 points; the incircle is tangent to the nine-point circle at the Feurerbach point while being contained completely in the circumcircle; on the other hand for this obtuse triangle the nine-point circle and the circumcircle intersect exactly twice.
All computations up until now are exact, so it remains to estimate:
- Intersection of the circumcircle with cubics. Each cubic intersects the circumcircle at an even number of points, and moreover we already know that $A, B, C$ are among these, so the number of additional intersections contributed is either 1 or 3 ; it is the former only for the Neuberg cubic which has a "loop". Hence the actual answer in this case is $1+3+3+3+3=13$ (but an estimate of $3 \cdot 5=15$ is very reasonable).
- Intersection of the incircle with cubics. Since $\angle A$ is large the incircle is small, but on the other hand we know $I$ lies on each cubic. Hence it's very likely that each cubic intersects the incircle twice (once "coming in" and once "coming out"). This is the case, giving $2 \cdot 5=10$ new points.
- Intersection of the nine-point with cubics. We guess this is close to the 10 points of the incircle, as we know the nine-point circle and the incircle are tangent to each other. In fact, the exact count is 14 points; just two additional branches appear.
In total, $N=9+3+13+10+14=49$.

|
49
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
(Self-Isogonal Cubics) Let $A B C$ be a triangle with $A B=2, A C=3, B C=4$. The isogonal conjugate of a point $P$, denoted $P^{*}$, is the point obtained by intersecting the reflection of lines $P A$, $P B, P C$ across the angle bisectors of $\angle A, \angle B$, and $\angle C$, respectively.
Given a point $Q$, let $\mathfrak{K}(Q)$ denote the unique cubic plane curve which passes through all points $P$ such that line $P P^{*}$ contains $Q$. Consider:
(a) the M'Cay cubic $\mathfrak{K}(O)$, where $O$ is the circumcenter of $\triangle A B C$,
(b) the Thomson cubic $\mathfrak{K}(G)$, where $G$ is the centroid of $\triangle A B C$,
(c) the Napoleon-Feurerbach cubic $\mathfrak{K}(N)$, where $N$ is the nine-point center of $\triangle A B C$,
(d) the Darboux cubic $\mathfrak{K}(L)$, where $L$ is the de Longchamps point (the reflection of the orthocenter across point $O$ ),
(e) the Neuberg cubic $\mathfrak{K}\left(X_{30}\right)$, where $X_{30}$ is the point at infinity along line $O G$,
(f) the nine-point circle of $\triangle A B C$,
(g) the incircle of $\triangle A B C$, and
(h) the circumcircle of $\triangle A B C$.
Estimate $N$, the number of points lying on at least two of these eight curves. An estimate of $E$ earns $\left\lfloor 20 \cdot 2^{-|N-E| / 6}\right\rfloor$ points.
|
Answer: 49
The first main insight is that all the cubics pass through the points $A, B, C, H$ (orthocenter), $O$, and the incenter and three excenters. Since two cubics intersect in at most nine points, this is all the intersections of a cubic with a cubic.
On the other hand, it is easy to see that among intersections of circles with circles, there are exactly 3 points; the incircle is tangent to the nine-point circle at the Feurerbach point while being contained completely in the circumcircle; on the other hand for this obtuse triangle the nine-point circle and the circumcircle intersect exactly twice.
All computations up until now are exact, so it remains to estimate:
- Intersection of the circumcircle with cubics. Each cubic intersects the circumcircle at an even number of points, and moreover we already know that $A, B, C$ are among these, so the number of additional intersections contributed is either 1 or 3 ; it is the former only for the Neuberg cubic which has a "loop". Hence the actual answer in this case is $1+3+3+3+3=13$ (but an estimate of $3 \cdot 5=15$ is very reasonable).
- Intersection of the incircle with cubics. Since $\angle A$ is large the incircle is small, but on the other hand we know $I$ lies on each cubic. Hence it's very likely that each cubic intersects the incircle twice (once "coming in" and once "coming out"). This is the case, giving $2 \cdot 5=10$ new points.
- Intersection of the nine-point with cubics. We guess this is close to the 10 points of the incircle, as we know the nine-point circle and the incircle are tangent to each other. In fact, the exact count is 14 points; just two additional branches appear.
In total, $N=9+3+13+10+14=49$.

|
{
"resource_path": "HarvardMIT/segmented/en-192-2016-feb-guts-solutions.jsonl",
"problem_match": "\n36. [20]",
"solution_match": "\n## Proposed by: Evan Chen\n\n"
}
|
ff8d3224-8c54-546b-a145-f6f9b4c98f15
| 609,560
|
For positive integers $n$, let $c_{n}$ be the smallest positive integer for which $n^{c_{n}}-1$ is divisible by 210, if such a positive integer exists, and $c_{n}=0$ otherwise. What is $c_{1}+c_{2}+\cdots+c_{210}$ ?
|
Answer: 329
In order for $c_{n} \neq 0$, we must have $\operatorname{gcd}(n, 210)=1$, so we need only consider such $n$. The number $n^{c_{n}}-1$ is divisible by 210 iff it is divisible by each of $2,3,5$, and 7 , and we can consider the order of $n$ modulo each modulus separately; $c_{n}$ will simply be the LCM of these orders. We can ignore the modulus 2 because order is always 1 . For the other moduli, the sets of orders are
$$
\begin{array}{rr}
a \in\{1,2\} & \bmod 3 \\
b \in\{1,2,4,4\} & \bmod 5 \\
c \in\{1,2,3,3,6,6\} & \bmod 7
\end{array}
$$
By the Chinese Remainder Theorem, each triplet of choices from these three multisets occurs for exactly one $n$ in the range $\{1,2, \ldots, 210\}$, so the answer we seek is the sum of $\operatorname{lcm}(a, b, c)$ over $a, b, c$ in the Cartesian product of these multisets. For $a=1$ this table of LCMs is as follows:
| | 1 | 2 | 3 | 3 | 6 | 6 |
| :---: | :---: | :---: | :---: | :---: | :---: | :---: |
| 1 | 1 | 2 | 3 | 3 | 6 | 6 |
| 2 | 2 | 2 | 6 | 6 | 6 | 6 |
| 4 | 4 | 4 | 12 | 12 | 12 | 12 |
| 4 | 4 | 4 | 12 | 12 | 12 | 12 |
which has a sum of $21+56+28+56=161$. The table for $a=2$ is identical except for the top row, where $1,3,3$ are replaced by $2,6,6$, and thus has a total sum of 7 more, or 168 . So our answer is $161+168=\mathbf{3 2 9}$.
This can also be computed by counting how many times each LCM occurs:
- 12 appears 16 times when $b=4$ and $c \in\{3,6\}$, for a contribution of $12 \times 16=192$;
- 6 appears 14 times, 8 times when $c=6$ and $b \leq 2$ and 6 times when $c=3$ and $(a, b) \in$ $\{(1,2),(2,1),(2,2)\}$, for a contribution of $6 \times 14=84$;
- 4 appears 8 times when $b=4$ and $a, c \in\{1,2\}$, for a contribution of $4 \times 8=32$;
- 3 appears 2 times when $c=3$ and $a=b=1$, for a contribution of $3 \times 2=6$;
- 2 appears 7 times when $a, b, c \in\{1,2\}$ and $(a, b, c) \neq(1,1,1)$, for a contribution of $2 \times 7=14$;
- 1 appears 1 time when $a=b=c=1$, for a contribution of $1 \times 1=1$.
The result is again $192+84+32+6+14+1=329$.
|
329
|
Yes
|
Yes
|
math-word-problem
|
Number Theory
|
For positive integers $n$, let $c_{n}$ be the smallest positive integer for which $n^{c_{n}}-1$ is divisible by 210, if such a positive integer exists, and $c_{n}=0$ otherwise. What is $c_{1}+c_{2}+\cdots+c_{210}$ ?
|
Answer: 329
In order for $c_{n} \neq 0$, we must have $\operatorname{gcd}(n, 210)=1$, so we need only consider such $n$. The number $n^{c_{n}}-1$ is divisible by 210 iff it is divisible by each of $2,3,5$, and 7 , and we can consider the order of $n$ modulo each modulus separately; $c_{n}$ will simply be the LCM of these orders. We can ignore the modulus 2 because order is always 1 . For the other moduli, the sets of orders are
$$
\begin{array}{rr}
a \in\{1,2\} & \bmod 3 \\
b \in\{1,2,4,4\} & \bmod 5 \\
c \in\{1,2,3,3,6,6\} & \bmod 7
\end{array}
$$
By the Chinese Remainder Theorem, each triplet of choices from these three multisets occurs for exactly one $n$ in the range $\{1,2, \ldots, 210\}$, so the answer we seek is the sum of $\operatorname{lcm}(a, b, c)$ over $a, b, c$ in the Cartesian product of these multisets. For $a=1$ this table of LCMs is as follows:
| | 1 | 2 | 3 | 3 | 6 | 6 |
| :---: | :---: | :---: | :---: | :---: | :---: | :---: |
| 1 | 1 | 2 | 3 | 3 | 6 | 6 |
| 2 | 2 | 2 | 6 | 6 | 6 | 6 |
| 4 | 4 | 4 | 12 | 12 | 12 | 12 |
| 4 | 4 | 4 | 12 | 12 | 12 | 12 |
which has a sum of $21+56+28+56=161$. The table for $a=2$ is identical except for the top row, where $1,3,3$ are replaced by $2,6,6$, and thus has a total sum of 7 more, or 168 . So our answer is $161+168=\mathbf{3 2 9}$.
This can also be computed by counting how many times each LCM occurs:
- 12 appears 16 times when $b=4$ and $c \in\{3,6\}$, for a contribution of $12 \times 16=192$;
- 6 appears 14 times, 8 times when $c=6$ and $b \leq 2$ and 6 times when $c=3$ and $(a, b) \in$ $\{(1,2),(2,1),(2,2)\}$, for a contribution of $6 \times 14=84$;
- 4 appears 8 times when $b=4$ and $a, c \in\{1,2\}$, for a contribution of $4 \times 8=32$;
- 3 appears 2 times when $c=3$ and $a=b=1$, for a contribution of $3 \times 2=6$;
- 2 appears 7 times when $a, b, c \in\{1,2\}$ and $(a, b, c) \neq(1,1,1)$, for a contribution of $2 \times 7=14$;
- 1 appears 1 time when $a=b=c=1$, for a contribution of $1 \times 1=1$.
The result is again $192+84+32+6+14+1=329$.
|
{
"resource_path": "HarvardMIT/segmented/en-192-2016-feb-team-solutions.jsonl",
"problem_match": "\n2. [25]",
"solution_match": "\nProposed by: Joy Zheng\n"
}
|
a1b54fd2-ecdd-5f7c-ab71-ed09ef86e4a4
| 609,562
|
Let $q(x)=q^{1}(x)=2 x^{2}+2 x-1$, and let $q^{n}(x)=q\left(q^{n-1}(x)\right)$ for $n>1$. How many negative real roots does $q^{2016}(x)$ have?
|
Answer: $\frac{2^{2017}+1}{3}$
Define $g(x)=2 x^{2}-1$, so that $q(x)=-\frac{1}{2}+g\left(x+\frac{1}{2}\right)$. Thus
$$
q^{N}(x)=0 \Longleftrightarrow \frac{1}{2}=g^{N}\left(x+\frac{1}{2}\right)
$$
where $N=2016$.
But, viewed as function $g:[-1,1] \rightarrow[-1,1]$ we have that $g(x)=\cos (2 \arccos (x))$. Thus, the equation $q^{N}(x)=0$ is equivalent to
$$
\cos \left(2^{2016} \arccos \left(x+\frac{1}{2}\right)\right)=\frac{1}{2}
$$
Thus, the solutions for $x$ are
$$
x=-\frac{1}{2}+\cos \left(\frac{\pi / 3+2 \pi n}{2^{2016}}\right) \quad n=0,1, \ldots, 2^{2016}-1
$$
So, the roots are negative for the values of $n$ such that
$$
\frac{1}{3} \pi<\frac{\pi / 3+2 \pi n}{2^{2016}}<\frac{5}{3} \pi
$$
which is to say
$$
\frac{1}{6}\left(2^{2016}-1\right)<n<\frac{1}{6}\left(5 \cdot 2^{2016}-1\right)
$$
The number of values of $n$ that fall in this range is $\frac{1}{6}\left(5 \cdot 2^{2016}-2\right)-\frac{1}{6}\left(2^{2016}+2\right)+1=\frac{1}{6}\left(4 \cdot 2^{2016}+2\right)=$ $\frac{1}{3}\left(2^{2017}+1\right)$.
|
\frac{2^{2017}+1}{3}
|
Yes
|
Yes
|
math-word-problem
|
Algebra
|
Let $q(x)=q^{1}(x)=2 x^{2}+2 x-1$, and let $q^{n}(x)=q\left(q^{n-1}(x)\right)$ for $n>1$. How many negative real roots does $q^{2016}(x)$ have?
|
Answer: $\frac{2^{2017}+1}{3}$
Define $g(x)=2 x^{2}-1$, so that $q(x)=-\frac{1}{2}+g\left(x+\frac{1}{2}\right)$. Thus
$$
q^{N}(x)=0 \Longleftrightarrow \frac{1}{2}=g^{N}\left(x+\frac{1}{2}\right)
$$
where $N=2016$.
But, viewed as function $g:[-1,1] \rightarrow[-1,1]$ we have that $g(x)=\cos (2 \arccos (x))$. Thus, the equation $q^{N}(x)=0$ is equivalent to
$$
\cos \left(2^{2016} \arccos \left(x+\frac{1}{2}\right)\right)=\frac{1}{2}
$$
Thus, the solutions for $x$ are
$$
x=-\frac{1}{2}+\cos \left(\frac{\pi / 3+2 \pi n}{2^{2016}}\right) \quad n=0,1, \ldots, 2^{2016}-1
$$
So, the roots are negative for the values of $n$ such that
$$
\frac{1}{3} \pi<\frac{\pi / 3+2 \pi n}{2^{2016}}<\frac{5}{3} \pi
$$
which is to say
$$
\frac{1}{6}\left(2^{2016}-1\right)<n<\frac{1}{6}\left(5 \cdot 2^{2016}-1\right)
$$
The number of values of $n$ that fall in this range is $\frac{1}{6}\left(5 \cdot 2^{2016}-2\right)-\frac{1}{6}\left(2^{2016}+2\right)+1=\frac{1}{6}\left(4 \cdot 2^{2016}+2\right)=$ $\frac{1}{3}\left(2^{2017}+1\right)$.
|
{
"resource_path": "HarvardMIT/segmented/en-192-2016-feb-team-solutions.jsonl",
"problem_match": "\n7. [40]",
"solution_match": "\nProposed by: Ernest Chiu\n"
}
|
a5f83966-6e4c-5a95-bbe3-c013984fe6d8
| 609,567
|
Compute
$$
\int_{0}^{\pi} \frac{2 \sin \theta+3 \cos \theta-3}{13 \cos \theta-5} \mathrm{~d} \theta .
$$
|
Answer: $\frac{3 \pi}{13}-\frac{4}{13} \log \frac{3}{2}$
We have
$$
\begin{aligned}
\int_{0}^{\pi} \frac{2 \sin \theta+3 \cos \theta-3}{13 \cos \theta-5} \mathrm{~d} \theta & =2 \int_{0}^{\pi / 2} \frac{2 \sin 2 x+3 \cos 2 x-3}{13 \cos 2 x-5} \mathrm{~d} x \\
& =2 \int_{0}^{\pi / 2} \frac{4 \sin x \cos x-6 \sin ^{2} x}{8 \cos ^{2} x-18 \sin ^{2} x} \mathrm{~d} x \\
& =2 \int_{0}^{\pi / 2} \frac{\sin x(2 \cos x-3 \sin x)}{(2 \cos x+3 \sin x)(2 \cos x-3 \sin x)} \mathrm{d} x \\
& =2 \int_{0}^{\pi / 2} \frac{\sin x}{2 \cos x+3 \sin x}
\end{aligned}
$$
To compute the above integral we want to write $\sin x$ as a linear combination of the denominator and its derivative:
$$
\begin{aligned}
2 \int_{0}^{\pi / 2} \frac{\sin x}{2 \cos x+3 \sin x} & =2 \int_{0}^{\pi / 2} \frac{-\frac{1}{13}[-3(2 \cos x+3 \sin x)+2(3 \cos x-2 \sin x)]}{2 \cos x+3 \sin x} \\
& =-\frac{2}{13}\left[\int_{0}^{\pi / 2}(-3)+2 \int_{0}^{\pi} \frac{-2 \sin x+3 \cos x}{2 \cos x+3 \sin x}\right] \\
& =-\frac{2}{13}\left[-\frac{3 \pi}{2}+\left.2 \log (3 \sin x+2 \cos x)\right|_{0} ^{\pi / 2}\right] \\
& =-\frac{2}{13}\left[-\frac{3 \pi}{2}+2 \log \frac{3}{2}\right] \\
& =\frac{3 \pi}{13}-\frac{4}{13} \log \frac{3}{2} .
\end{aligned}
$$
|
\frac{3 \pi}{13}-\frac{4}{13} \log \frac{3}{2}
|
Yes
|
Yes
|
math-word-problem
|
Calculus
|
Compute
$$
\int_{0}^{\pi} \frac{2 \sin \theta+3 \cos \theta-3}{13 \cos \theta-5} \mathrm{~d} \theta .
$$
|
Answer: $\frac{3 \pi}{13}-\frac{4}{13} \log \frac{3}{2}$
We have
$$
\begin{aligned}
\int_{0}^{\pi} \frac{2 \sin \theta+3 \cos \theta-3}{13 \cos \theta-5} \mathrm{~d} \theta & =2 \int_{0}^{\pi / 2} \frac{2 \sin 2 x+3 \cos 2 x-3}{13 \cos 2 x-5} \mathrm{~d} x \\
& =2 \int_{0}^{\pi / 2} \frac{4 \sin x \cos x-6 \sin ^{2} x}{8 \cos ^{2} x-18 \sin ^{2} x} \mathrm{~d} x \\
& =2 \int_{0}^{\pi / 2} \frac{\sin x(2 \cos x-3 \sin x)}{(2 \cos x+3 \sin x)(2 \cos x-3 \sin x)} \mathrm{d} x \\
& =2 \int_{0}^{\pi / 2} \frac{\sin x}{2 \cos x+3 \sin x}
\end{aligned}
$$
To compute the above integral we want to write $\sin x$ as a linear combination of the denominator and its derivative:
$$
\begin{aligned}
2 \int_{0}^{\pi / 2} \frac{\sin x}{2 \cos x+3 \sin x} & =2 \int_{0}^{\pi / 2} \frac{-\frac{1}{13}[-3(2 \cos x+3 \sin x)+2(3 \cos x-2 \sin x)]}{2 \cos x+3 \sin x} \\
& =-\frac{2}{13}\left[\int_{0}^{\pi / 2}(-3)+2 \int_{0}^{\pi} \frac{-2 \sin x+3 \cos x}{2 \cos x+3 \sin x}\right] \\
& =-\frac{2}{13}\left[-\frac{3 \pi}{2}+\left.2 \log (3 \sin x+2 \cos x)\right|_{0} ^{\pi / 2}\right] \\
& =-\frac{2}{13}\left[-\frac{3 \pi}{2}+2 \log \frac{3}{2}\right] \\
& =\frac{3 \pi}{13}-\frac{4}{13} \log \frac{3}{2} .
\end{aligned}
$$
|
{
"resource_path": "HarvardMIT/segmented/en-192-2016-feb-team-solutions.jsonl",
"problem_match": "\n8. [40]",
"solution_match": "\nProposed by: Carl Lian\n"
}
|
8c392f22-c860-57bc-8736-b699bdee7acf
| 609,568
|
If $a$ and $b$ satisfy the equations $a+\frac{1}{b}=4$ and $\frac{1}{a}+b=\frac{16}{15}$, determine the product of all possible values of $a b$.
|
Answer: 1
We multiply $a+\frac{1}{b}=4$ and $\frac{1}{a}+b=\frac{16}{15}$ to get $2+a b+\frac{1}{a b}=\frac{64}{15} \Longleftrightarrow(a b)^{2}-\frac{34}{15}(a b)+1=0$. Since $\left(\frac{34}{14}\right)^{2}-4 \cdot 1 \cdot 1>0$, there are two roots $a b$, so the product of both possible values of $a b$ is 1 by Vieta's.
|
1
|
Yes
|
Yes
|
math-word-problem
|
Algebra
|
If $a$ and $b$ satisfy the equations $a+\frac{1}{b}=4$ and $\frac{1}{a}+b=\frac{16}{15}$, determine the product of all possible values of $a b$.
|
Answer: 1
We multiply $a+\frac{1}{b}=4$ and $\frac{1}{a}+b=\frac{16}{15}$ to get $2+a b+\frac{1}{a b}=\frac{64}{15} \Longleftrightarrow(a b)^{2}-\frac{34}{15}(a b)+1=0$. Since $\left(\frac{34}{14}\right)^{2}-4 \cdot 1 \cdot 1>0$, there are two roots $a b$, so the product of both possible values of $a b$ is 1 by Vieta's.
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-gen-solutions.jsonl",
"problem_match": "\n1. ",
"solution_match": "\n## Proposed by: Eshaan Nichani\n\n"
}
|
a20ef352-b1e8-5417-8280-cf96d6ee293f
| 609,575
|
I have five different pairs of socks. Every day for five days, I pick two socks at random without replacement to wear for the day. Find the probability that I wear matching socks on both the third day and the fifth day.
|
Answer: $\frac{1}{63}$
I get a matching pair on the third day with probability $\frac{1}{9}$ because there is a $\frac{1}{9}$ probability of the second sock matching the first. Given that I already removed a matching pair of the third day, I get a matching pair on the fifth day with probability $\frac{1}{7}$. We multiply these probabilities to get $\frac{1}{63}$.
|
\frac{1}{63}
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
I have five different pairs of socks. Every day for five days, I pick two socks at random without replacement to wear for the day. Find the probability that I wear matching socks on both the third day and the fifth day.
|
Answer: $\frac{1}{63}$
I get a matching pair on the third day with probability $\frac{1}{9}$ because there is a $\frac{1}{9}$ probability of the second sock matching the first. Given that I already removed a matching pair of the third day, I get a matching pair on the fifth day with probability $\frac{1}{7}$. We multiply these probabilities to get $\frac{1}{63}$.
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-gen-solutions.jsonl",
"problem_match": "\n2. ",
"solution_match": "\nProposed by: Kevin Yang\n"
}
|
866f796f-76ed-5c4a-86df-0ccacb7df585
| 41,119
|
Let $V$ be a rectangular prism with integer side lengths. The largest face has area 240 and the smallest face has area 48. A third face has area $x$, where $x$ is not equal to 48 or 240 . What is the sum of all possible values of $x$ ?
|
Answer: 260
Let the length, width, and height of the prism be $s_{1}, s_{2}, s_{3}$. WIthout loss of generality, assume that $s_{1} \leq s_{2} \leq s_{3}$. Then, we have that $s_{1} s_{2}=48$ and $s_{2} s_{3}=240$. Noting that $s_{1} \leq s_{2}$, we must have $\left(s_{1}, s_{2}\right)=(1,48),(2,24),(3,16),(4,12),(6,8)$. We must also have $s_{2} s_{3}=240$ and $s_{2} \leq s_{3}$, and the only possibilities for $\left(s_{1}, s_{2}\right)$ that yield integral $s_{3}$ that satisfy these conditions are $(4,12)$, which gives $s_{3}=20$, and $(6,8)$, which gives $s_{3}=30$. Thus, the only valid $\left(s_{1}, s_{2}, s_{3}\right)$ are $(4,12,20)$ and $(6,8,30)$. It follows that the only possible areas of the third face are $4(20)=80$ and $6(30)=180$, so the desired answer is $80+180=260$.
|
260
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
Let $V$ be a rectangular prism with integer side lengths. The largest face has area 240 and the smallest face has area 48. A third face has area $x$, where $x$ is not equal to 48 or 240 . What is the sum of all possible values of $x$ ?
|
Answer: 260
Let the length, width, and height of the prism be $s_{1}, s_{2}, s_{3}$. WIthout loss of generality, assume that $s_{1} \leq s_{2} \leq s_{3}$. Then, we have that $s_{1} s_{2}=48$ and $s_{2} s_{3}=240$. Noting that $s_{1} \leq s_{2}$, we must have $\left(s_{1}, s_{2}\right)=(1,48),(2,24),(3,16),(4,12),(6,8)$. We must also have $s_{2} s_{3}=240$ and $s_{2} \leq s_{3}$, and the only possibilities for $\left(s_{1}, s_{2}\right)$ that yield integral $s_{3}$ that satisfy these conditions are $(4,12)$, which gives $s_{3}=20$, and $(6,8)$, which gives $s_{3}=30$. Thus, the only valid $\left(s_{1}, s_{2}, s_{3}\right)$ are $(4,12,20)$ and $(6,8,30)$. It follows that the only possible areas of the third face are $4(20)=80$ and $6(30)=180$, so the desired answer is $80+180=260$.
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-gen-solutions.jsonl",
"problem_match": "\n3. ",
"solution_match": "\n## Proposed by: Eshaan Nichani\n\n"
}
|
64758f30-5438-5039-8f5c-acbd49d3702e
| 609,576
|
A rectangular pool table has vertices at $(0,0)(12,0)(0,10)$, and $(12,10)$. There are pockets only in the four corners. A ball is hit from $(0,0)$ along the line $y=x$ and bounces off several walls before eventually entering a pocket. Find the number of walls that the ball bounces off of before entering a pocket.
|
Answer: 9
Consider the tiling of the plane with the $12 \times 10$ rectangle to form a grid. Then the reflection of the ball off a wall is equivalent to traveling along the straight line $y=x$ into another $12 \times 10$ rectangle. Hence we want to find the number of walls of the grid that the line $y=x$ hits before it reaches the first corner it hits, $(60,60)$.
The line $y=x$ hits each of the horizontal lines $y=10,20,30,40,50$ and each of the vertical lines $x=12,24,36,48$. This gives a total of 9 walls hit before entering a pocket.
|
9
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
A rectangular pool table has vertices at $(0,0)(12,0)(0,10)$, and $(12,10)$. There are pockets only in the four corners. A ball is hit from $(0,0)$ along the line $y=x$ and bounces off several walls before eventually entering a pocket. Find the number of walls that the ball bounces off of before entering a pocket.
|
Answer: 9
Consider the tiling of the plane with the $12 \times 10$ rectangle to form a grid. Then the reflection of the ball off a wall is equivalent to traveling along the straight line $y=x$ into another $12 \times 10$ rectangle. Hence we want to find the number of walls of the grid that the line $y=x$ hits before it reaches the first corner it hits, $(60,60)$.
The line $y=x$ hits each of the horizontal lines $y=10,20,30,40,50$ and each of the vertical lines $x=12,24,36,48$. This gives a total of 9 walls hit before entering a pocket.
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-gen-solutions.jsonl",
"problem_match": "\n4. ",
"solution_match": "\nProposed by: Allen Liu\n"
}
|
e482d4be-e2a4-5c84-975f-504811552db6
| 609,577
|
Let the sequence $\left\{a_{i}\right\}_{i=0}^{\infty}$ be defined by $a_{0}=\frac{1}{2}$ and $a_{n}=1+\left(a_{n-1}-1\right)^{2}$. Find the product
$$
\prod_{i=0}^{\infty} a_{i}=a_{0} a_{1} a_{2} \ldots
$$
|
## Answer: $\frac{2}{3}$
Let $\left\{b_{i}\right\}_{i=0}^{\infty}$ be defined by $b_{n}=a_{n}-1$ and note that $b_{n}=b_{n-1}^{2}$. The infinite product is then
$$
\left(1+b_{0}\right)\left(1+b_{0}^{2}\right)\left(1+b_{0}^{4}\right) \ldots\left(1+b_{0}^{2^{k}}\right) \ldots
$$
By the polynomial identity
$$
(1+x)\left(1+x^{2}\right)\left(1+x^{4}\right) \ldots\left(1+x^{2^{k}}\right) \cdots=1+x+x^{2}+x^{3}+\cdots=\frac{1}{1-x}
$$
Our desired product is then simply
$$
\frac{1}{1-\left(a_{0}-1\right)}=\frac{2}{3}
$$
|
\frac{2}{3}
|
Yes
|
Yes
|
math-word-problem
|
Algebra
|
Let the sequence $\left\{a_{i}\right\}_{i=0}^{\infty}$ be defined by $a_{0}=\frac{1}{2}$ and $a_{n}=1+\left(a_{n-1}-1\right)^{2}$. Find the product
$$
\prod_{i=0}^{\infty} a_{i}=a_{0} a_{1} a_{2} \ldots
$$
|
## Answer: $\frac{2}{3}$
Let $\left\{b_{i}\right\}_{i=0}^{\infty}$ be defined by $b_{n}=a_{n}-1$ and note that $b_{n}=b_{n-1}^{2}$. The infinite product is then
$$
\left(1+b_{0}\right)\left(1+b_{0}^{2}\right)\left(1+b_{0}^{4}\right) \ldots\left(1+b_{0}^{2^{k}}\right) \ldots
$$
By the polynomial identity
$$
(1+x)\left(1+x^{2}\right)\left(1+x^{4}\right) \ldots\left(1+x^{2^{k}}\right) \cdots=1+x+x^{2}+x^{3}+\cdots=\frac{1}{1-x}
$$
Our desired product is then simply
$$
\frac{1}{1-\left(a_{0}-1\right)}=\frac{2}{3}
$$
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-gen-solutions.jsonl",
"problem_match": "\n5. ",
"solution_match": "\nProposed by: Henrik Boecken\n\n"
}
|
7f4b692f-93ea-5304-827b-f9c41d68d7e5
| 609,578
|
The numbers $1,2 \cdots 11$ are arranged in a line from left to right in a random order. It is observed that the middle number is larger than exactly one number to its left. Find the probability that it is larger than exactly one number to its right.
|
Answer: $\frac{10}{33}$
Suppose the middle number is $k$. Then there are $k-1$ ways to pick the number smaller than $k$ to its left and $\binom{11-k}{4}$ ways to pick the 4 numbers larger than $k$ to its right. Hence there is a total of $\sum_{k=2}^{7}(k-1) \cdot\binom{11-k}{4}$ ways for there to be exactly one number smaller than $k$ to its left. We calculate this total:
$$
\begin{aligned}
\sum_{k=2}^{7}(k-1) \cdot\binom{11-k}{4} & =\sum_{j=4}^{9} \sum_{i=4}^{j}\binom{i}{4} \\
& =\sum_{j=4}^{9}\binom{j+1}{5} \\
& =\binom{11}{6}
\end{aligned}
$$
The only way $k$ can be larger than exactly one number to its right is if $k=3$. Then the probability of this happening is $\frac{2 \cdot\binom{8}{4}}{\binom{11}{6}}=\frac{10}{33}$.
|
\frac{10}{33}
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
The numbers $1,2 \cdots 11$ are arranged in a line from left to right in a random order. It is observed that the middle number is larger than exactly one number to its left. Find the probability that it is larger than exactly one number to its right.
|
Answer: $\frac{10}{33}$
Suppose the middle number is $k$. Then there are $k-1$ ways to pick the number smaller than $k$ to its left and $\binom{11-k}{4}$ ways to pick the 4 numbers larger than $k$ to its right. Hence there is a total of $\sum_{k=2}^{7}(k-1) \cdot\binom{11-k}{4}$ ways for there to be exactly one number smaller than $k$ to its left. We calculate this total:
$$
\begin{aligned}
\sum_{k=2}^{7}(k-1) \cdot\binom{11-k}{4} & =\sum_{j=4}^{9} \sum_{i=4}^{j}\binom{i}{4} \\
& =\sum_{j=4}^{9}\binom{j+1}{5} \\
& =\binom{11}{6}
\end{aligned}
$$
The only way $k$ can be larger than exactly one number to its right is if $k=3$. Then the probability of this happening is $\frac{2 \cdot\binom{8}{4}}{\binom{11}{6}}=\frac{10}{33}$.
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-gen-solutions.jsonl",
"problem_match": "\n6. ",
"solution_match": "\nProposed by: Allen Liu\n"
}
|
cc12a552-bd4b-5510-ba42-57b968603f4a
| 609,579
|
Let $A B C$ be a triangle with $A B=13, B C=14, C A=15$. The altitude from $A$ intersects $B C$ at $D$. Let $\omega_{1}$ and $\omega_{2}$ be the incircles of $A B D$ and $A C D$, and let the common external tangent of $\omega_{1}$ and $\omega_{2}$ (other than $B C$ ) intersect $A D$ at $E$. Compute the length of $A E$.
|
Let $I_{1}, I_{2}$ be the centers of $\omega_{1}, \omega_{2}$, respectively, $X_{1}, X_{2}$ be the tangency points of $\omega_{1}, \omega_{2}$ with $B C$, respectively, and $Y_{1}, Y_{2}$ be the tangency points of $\omega_{1}, \omega_{2}$ with $A D$, respectively. Let the two common external tangents of $\omega_{1}, \omega_{2}$ meet at $P$. Note that line $I_{1} I_{2}$ also passes through $P$.
By Heron's formula, the area of triangle $A B C$ is 84 . Thus, $\frac{1}{2} A D \cdot B C=84$, and so $A D=12$. By the Pythagorean Theorem on right triangles $A B D$ and $A C D, B D=5$ and $C D=9$.
The inradius of $A B D, r_{A B D}$, is $\frac{[A B D]}{s_{A B D}}$, where $[A B D]$ is the area of $A B D$ and $s_{A B D}$ is its semiperimeter. $A B D$ is a $5-12-13$ right triangle, so $[A B D]=30$ and $s_{A B D}=15$. Thus, $r_{A B D}=2$. Similarly, we get
that $A C D$ 's inradius is $r_{A C D}=3 . I_{1} Y_{1} D X_{1}$ is a square, so $X_{1} D=I_{1} X_{1}=r_{A B D}=2$, and similarly $X_{2} D=3 . X_{1}$ and $X_{2}$ are on opposite sides of $D$, so $X_{1} X_{2}=X_{1} D+X_{2} D=5$.
Since $P$ lies on lines $I_{1} I_{2}, X_{1} X_{2}$, and $I_{1} X_{1}, I_{2} X_{2}$ are parallel, triangles $P X_{1} I_{1}$ and $P X_{2} I_{2}$ are similar. Thus, $\frac{X_{1} I_{1}}{X_{2} I_{2}}=\frac{2}{3}=\frac{P X_{1}}{P X_{2}}=\frac{P X_{1}}{P X_{1}+X_{1} X_{2}}=\frac{P X_{1}}{P X_{1}+5}$. Solving gives $P X_{1}=10$. Letting $\angle I_{1} P X_{1}=\theta$, since $I_{1} X_{1} P$ is a right angle, we have $\tan \theta=\frac{X_{1} I_{1}}{X_{1} P_{1}}=\frac{1}{5}$. $D$ and $E$ lie on different common external tangents, so $P I_{1}$ bisects $\angle E P D$, and thus $\angle E P D=2 \theta$. Thus, $\tan \angle E P D=\tan 2 \theta=\frac{2 \tan \theta}{1-\tan ^{2} \theta}=\frac{5}{12}$.
$E D$ is perpendicular to $B C$, so triangle $E D P$ is a right triangle with right angle at $D$. Thus, $\frac{5}{12}=$ $\tan \angle E P D=\frac{E D}{P D} . P D=P X_{1}+X_{1} D=12$, so $E D=5 . A D=12$, so it follows that $A E=7$.
|
7
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
Let $A B C$ be a triangle with $A B=13, B C=14, C A=15$. The altitude from $A$ intersects $B C$ at $D$. Let $\omega_{1}$ and $\omega_{2}$ be the incircles of $A B D$ and $A C D$, and let the common external tangent of $\omega_{1}$ and $\omega_{2}$ (other than $B C$ ) intersect $A D$ at $E$. Compute the length of $A E$.
|
Let $I_{1}, I_{2}$ be the centers of $\omega_{1}, \omega_{2}$, respectively, $X_{1}, X_{2}$ be the tangency points of $\omega_{1}, \omega_{2}$ with $B C$, respectively, and $Y_{1}, Y_{2}$ be the tangency points of $\omega_{1}, \omega_{2}$ with $A D$, respectively. Let the two common external tangents of $\omega_{1}, \omega_{2}$ meet at $P$. Note that line $I_{1} I_{2}$ also passes through $P$.
By Heron's formula, the area of triangle $A B C$ is 84 . Thus, $\frac{1}{2} A D \cdot B C=84$, and so $A D=12$. By the Pythagorean Theorem on right triangles $A B D$ and $A C D, B D=5$ and $C D=9$.
The inradius of $A B D, r_{A B D}$, is $\frac{[A B D]}{s_{A B D}}$, where $[A B D]$ is the area of $A B D$ and $s_{A B D}$ is its semiperimeter. $A B D$ is a $5-12-13$ right triangle, so $[A B D]=30$ and $s_{A B D}=15$. Thus, $r_{A B D}=2$. Similarly, we get
that $A C D$ 's inradius is $r_{A C D}=3 . I_{1} Y_{1} D X_{1}$ is a square, so $X_{1} D=I_{1} X_{1}=r_{A B D}=2$, and similarly $X_{2} D=3 . X_{1}$ and $X_{2}$ are on opposite sides of $D$, so $X_{1} X_{2}=X_{1} D+X_{2} D=5$.
Since $P$ lies on lines $I_{1} I_{2}, X_{1} X_{2}$, and $I_{1} X_{1}, I_{2} X_{2}$ are parallel, triangles $P X_{1} I_{1}$ and $P X_{2} I_{2}$ are similar. Thus, $\frac{X_{1} I_{1}}{X_{2} I_{2}}=\frac{2}{3}=\frac{P X_{1}}{P X_{2}}=\frac{P X_{1}}{P X_{1}+X_{1} X_{2}}=\frac{P X_{1}}{P X_{1}+5}$. Solving gives $P X_{1}=10$. Letting $\angle I_{1} P X_{1}=\theta$, since $I_{1} X_{1} P$ is a right angle, we have $\tan \theta=\frac{X_{1} I_{1}}{X_{1} P_{1}}=\frac{1}{5}$. $D$ and $E$ lie on different common external tangents, so $P I_{1}$ bisects $\angle E P D$, and thus $\angle E P D=2 \theta$. Thus, $\tan \angle E P D=\tan 2 \theta=\frac{2 \tan \theta}{1-\tan ^{2} \theta}=\frac{5}{12}$.
$E D$ is perpendicular to $B C$, so triangle $E D P$ is a right triangle with right angle at $D$. Thus, $\frac{5}{12}=$ $\tan \angle E P D=\frac{E D}{P D} . P D=P X_{1}+X_{1} D=12$, so $E D=5 . A D=12$, so it follows that $A E=7$.
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-gen-solutions.jsonl",
"problem_match": "\n7. ",
"solution_match": "\n## Solution 1:\n\n"
}
|
061f7f70-e522-5ec2-924a-65f6393c4974
| 609,580
|
Let $S=\{1,2, \ldots 2016\}$, and let $f$ be a randomly chosen bijection from $S$ to itself. Let $n$ be the smallest positive integer such that $f^{(n)}(1)=1$, where $f^{(i)}(x)=f\left(f^{(i-1)}(x)\right)$. What is the expected value of $n$ ?
|
Answer: $\frac{2017}{2}$
Say that $n=k$. Then $1, f(1), f^{2}(1), \ldots, f^{(k-1)}(1)$ are all distinct, which means there are 2015 . $2014 \cdots(2016-k+1)$ ways to assign these values. There is 1 possible value of $f^{k}(1)$, and $(2016-k)$ ! ways to assign the image of the $2016-k$ remaining values. Thus the probability that $n=k$ is $\frac{1}{2016}$. Therefore the expected value of $n$ is $\frac{1}{2016}(1+2+\cdots+2016)=\frac{2017}{2}$
|
\frac{2017}{2}
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
Let $S=\{1,2, \ldots 2016\}$, and let $f$ be a randomly chosen bijection from $S$ to itself. Let $n$ be the smallest positive integer such that $f^{(n)}(1)=1$, where $f^{(i)}(x)=f\left(f^{(i-1)}(x)\right)$. What is the expected value of $n$ ?
|
Answer: $\frac{2017}{2}$
Say that $n=k$. Then $1, f(1), f^{2}(1), \ldots, f^{(k-1)}(1)$ are all distinct, which means there are 2015 . $2014 \cdots(2016-k+1)$ ways to assign these values. There is 1 possible value of $f^{k}(1)$, and $(2016-k)$ ! ways to assign the image of the $2016-k$ remaining values. Thus the probability that $n=k$ is $\frac{1}{2016}$. Therefore the expected value of $n$ is $\frac{1}{2016}(1+2+\cdots+2016)=\frac{2017}{2}$
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-gen-solutions.jsonl",
"problem_match": "\n8. ",
"solution_match": "\nProposed by: Eshaan Nichani\n"
}
|
14b8b692-9b36-5100-a8f9-51220ae69e1a
| 609,581
|
Let the sequence $a_{i}$ be defined as $a_{i+1}=2^{a_{i}}$. Find the number of integers $1 \leq n \leq 1000$ such that if $a_{0}=n$, then 100 divides $a_{1000}-a_{1}$.
|
## Answer: 50
We claim that $a_{1000}$ is constant mod 100 .
$a_{997}$ is divisible by 2 . This means that $a_{998}$ is divisible by 4 . Thus $a_{999}$ is constant mod 5 . Since it is also divisible by 4 , it is constant $\bmod 20$. Thus $a_{1000}$ is constant $\bmod 25$, since $\phi(25)=20$. Since $a_{1000}$ is also divisible by 4 , it is constant mod 100 .
We know that $a_{1000}$ is divisible by 4 , and let it be congruent to $k \bmod 25$.
Then $2^{n}$ is divisible by $4(n \geq 2)$ and $2^{n} \equiv k \bmod 25$ We can also show that 2 is a primitive root mod 25 , so there is one unique value of $n \bmod 20$. It suffices to show this value isn't 1 . But $2^{2^{0 \bmod 4}} \equiv 2^{16 \bmod 20}$ $\bmod 25$, so $n \equiv 16 \bmod 20$. Thus there are $1000 / 20=50$ values of $n$.
|
50
|
Yes
|
Yes
|
math-word-problem
|
Number Theory
|
Let the sequence $a_{i}$ be defined as $a_{i+1}=2^{a_{i}}$. Find the number of integers $1 \leq n \leq 1000$ such that if $a_{0}=n$, then 100 divides $a_{1000}-a_{1}$.
|
## Answer: 50
We claim that $a_{1000}$ is constant mod 100 .
$a_{997}$ is divisible by 2 . This means that $a_{998}$ is divisible by 4 . Thus $a_{999}$ is constant mod 5 . Since it is also divisible by 4 , it is constant $\bmod 20$. Thus $a_{1000}$ is constant $\bmod 25$, since $\phi(25)=20$. Since $a_{1000}$ is also divisible by 4 , it is constant mod 100 .
We know that $a_{1000}$ is divisible by 4 , and let it be congruent to $k \bmod 25$.
Then $2^{n}$ is divisible by $4(n \geq 2)$ and $2^{n} \equiv k \bmod 25$ We can also show that 2 is a primitive root mod 25 , so there is one unique value of $n \bmod 20$. It suffices to show this value isn't 1 . But $2^{2^{0 \bmod 4}} \equiv 2^{16 \bmod 20}$ $\bmod 25$, so $n \equiv 16 \bmod 20$. Thus there are $1000 / 20=50$ values of $n$.
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-gen-solutions.jsonl",
"problem_match": "\n9. ",
"solution_match": "\nProposed by: Allen Liu\n\n"
}
|
90343a97-f6db-511b-b5b3-01a017902934
| 609,582
|
Quadrilateral $A B C D$ satisfies $A B=8, B C=5, C D=17, D A=10$. Let $E$ be the intersection of $A C$ and $B D$. Suppose $B E: E D=1: 2$. Find the area of $A B C D$.
|
Answer: 60
Since $B E: E D=1: 2$, we have $[A B C]:[A C D]=1: 2$.
Suppose we cut off triangle $A C D$, reflect it across the perpendicular bisector of $A C$, and re-attach it as triangle $A^{\prime} C^{\prime} D^{\prime}\left(\right.$ so $\left.A^{\prime}=C, C^{\prime}=A\right)$.
Triangles $A B C$ and $C^{\prime} A^{\prime} D^{\prime}$ have vertex $A=C^{\prime}$ and bases $B C$ and $A^{\prime} D^{\prime}$. Their areas and bases are both in the ratio $1: 2$. Thus in fact $B C$ and $A^{\prime} D^{\prime}$ are collinear.
Hence the union of $A B C$ and $C^{\prime} A^{\prime} D^{\prime}$ is the $8-15-17$ triangle $A B D^{\prime}$, which has area $\frac{1}{2} \cdot 8 \cdot 15=60$.
|
60
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
Quadrilateral $A B C D$ satisfies $A B=8, B C=5, C D=17, D A=10$. Let $E$ be the intersection of $A C$ and $B D$. Suppose $B E: E D=1: 2$. Find the area of $A B C D$.
|
Answer: 60
Since $B E: E D=1: 2$, we have $[A B C]:[A C D]=1: 2$.
Suppose we cut off triangle $A C D$, reflect it across the perpendicular bisector of $A C$, and re-attach it as triangle $A^{\prime} C^{\prime} D^{\prime}\left(\right.$ so $\left.A^{\prime}=C, C^{\prime}=A\right)$.
Triangles $A B C$ and $C^{\prime} A^{\prime} D^{\prime}$ have vertex $A=C^{\prime}$ and bases $B C$ and $A^{\prime} D^{\prime}$. Their areas and bases are both in the ratio $1: 2$. Thus in fact $B C$ and $A^{\prime} D^{\prime}$ are collinear.
Hence the union of $A B C$ and $C^{\prime} A^{\prime} D^{\prime}$ is the $8-15-17$ triangle $A B D^{\prime}$, which has area $\frac{1}{2} \cdot 8 \cdot 15=60$.
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-gen-solutions.jsonl",
"problem_match": "\n10. ",
"solution_match": "\nProposed by: Brice Huang\n"
}
|
051a0b1d-45ac-523c-8224-746f38949695
| 609,583
|
If five fair coins are flipped simultaneously, what is the probability that at least three of them show heads?
|

The coin either lands heads-up at least three times or lands heads-down at least three times. These scenarios are symmetric so the probably is just $\frac{1}{2}$.
Alternatively, we can explicitly compute the probability, which is just $\frac{\binom{5}{3}+\binom{5}{4}+\binom{5}{5}}{2^{5}}=\frac{16}{32}=\frac{1}{2}$
|
\frac{1}{2}
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
If five fair coins are flipped simultaneously, what is the probability that at least three of them show heads?
|

The coin either lands heads-up at least three times or lands heads-down at least three times. These scenarios are symmetric so the probably is just $\frac{1}{2}$.
Alternatively, we can explicitly compute the probability, which is just $\frac{\binom{5}{3}+\binom{5}{4}+\binom{5}{5}}{2^{5}}=\frac{16}{32}=\frac{1}{2}$
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-guts-solutions.jsonl",
"problem_match": "\n1. [5]",
"solution_match": "\nProposed by: Allen Liu\n"
}
|
fdf6aff4-ce4b-5fff-b687-dc2e971cbc7d
| 609,584
|
How many perfect squares divide $10^{10}$ ?
|
Answer: 36
A perfect square $s$ divides $10^{10}$ if and only if $s=2^{a} \cdot 5^{b}$ where $a, b \in\{0,2,4,6,8,10\}$. There are 36 choices, giving 36 different $s$ 's.
|
36
|
Yes
|
Yes
|
math-word-problem
|
Number Theory
|
How many perfect squares divide $10^{10}$ ?
|
Answer: 36
A perfect square $s$ divides $10^{10}$ if and only if $s=2^{a} \cdot 5^{b}$ where $a, b \in\{0,2,4,6,8,10\}$. There are 36 choices, giving 36 different $s$ 's.
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-guts-solutions.jsonl",
"problem_match": "\n2. [5]",
"solution_match": "\nProposed by: Evan Chen\n"
}
|
3d6e1aef-5917-5895-b2b9-80b4f511be33
| 609,585
|
Evaluate $\frac{2016!^{2}}{2015!2017!}$. Here $n$ ! denotes $1 \times 2 \times \cdots \times n$.
|
Answer: $\square$
$\frac{2016!^{2}}{2015!2017!}=\frac{2016!}{2015!} \frac{2016!}{2017!}=\frac{2016}{1} \frac{1}{2017}=\frac{2016}{2017}$
|
\frac{2016}{2017}
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
Evaluate $\frac{2016!^{2}}{2015!2017!}$. Here $n$ ! denotes $1 \times 2 \times \cdots \times n$.
|
Answer: $\square$
$\frac{2016!^{2}}{2015!2017!}=\frac{2016!}{2015!} \frac{2016!}{2017!}=\frac{2016}{1} \frac{1}{2017}=\frac{2016}{2017}$
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-guts-solutions.jsonl",
"problem_match": "\n3. [5]",
"solution_match": "\nProposed by: Evan Chen\n"
}
|
a1192c73-034e-5c4d-8d75-2aa0c02615cd
| 609,586
|
If $x+2 y-3 z=7$ and $2 x-y+2 z=6$, determine $8 x+y$.
|
Answer: 32
$8 x+y=2(x+2 y-3 z)+3(2 x-y+2 x)=2(7)+3(6)=32$
|
32
|
Yes
|
Yes
|
math-word-problem
|
Algebra
|
If $x+2 y-3 z=7$ and $2 x-y+2 z=6$, determine $8 x+y$.
|
Answer: 32
$8 x+y=2(x+2 y-3 z)+3(2 x-y+2 x)=2(7)+3(6)=32$
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-guts-solutions.jsonl",
"problem_match": "\n5. [6]",
"solution_match": "\nProposed by: Eshaan Nichani\n"
}
|
e925d934-9507-5708-b7ee-6cbc98ce3836
| 609,588
|
Let $A B C D$ be a rectangle, and let $E$ and $F$ be points on segment $A B$ such that $A E=E F=F B$. If $C E$ intersects the line $A D$ at $P$, and $P F$ intersects $B C$ at $Q$, determine the ratio of $B Q$ to $C Q$.
|
Answer: $1 / 3$
Because $\triangle P A E \sim \triangle P D C$ and $A E: D C=1: 3$, we have that $P A: P D=1: 3 \Longrightarrow P A: A B=P A$ : $B C=1: 2$. Also, by similar triangles $\triangle P A F \sim \triangle Q B F$, since $A F: B F=2: 1, P A: B Q=2: 1$. Then $B Q=\frac{1}{2} P A=\frac{1}{2} \cdot \frac{1}{2} B C=\frac{1}{4} B C$. Then $B Q: C Q=\frac{1}{3}$.
|
\frac{1}{3}
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
Let $A B C D$ be a rectangle, and let $E$ and $F$ be points on segment $A B$ such that $A E=E F=F B$. If $C E$ intersects the line $A D$ at $P$, and $P F$ intersects $B C$ at $Q$, determine the ratio of $B Q$ to $C Q$.
|
Answer: $1 / 3$
Because $\triangle P A E \sim \triangle P D C$ and $A E: D C=1: 3$, we have that $P A: P D=1: 3 \Longrightarrow P A: A B=P A$ : $B C=1: 2$. Also, by similar triangles $\triangle P A F \sim \triangle Q B F$, since $A F: B F=2: 1, P A: B Q=2: 1$. Then $B Q=\frac{1}{2} P A=\frac{1}{2} \cdot \frac{1}{2} B C=\frac{1}{4} B C$. Then $B Q: C Q=\frac{1}{3}$.
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-guts-solutions.jsonl",
"problem_match": "\n6. [6]",
"solution_match": "\nProposed by: Eshaan Nichani\n"
}
|
e586cca1-bd55-5608-b3c0-de297707dc2d
| 609,589
|
What is the minimum value of the product
$$
\prod_{i=1}^{6} \frac{a_{i}-a_{i+1}}{a_{i+2}-a_{i+3}}
$$
given that $\left(a_{1}, a_{2}, a_{3}, a_{4}, a_{5}, a_{6}\right)$ is a permutation of $(1,2,3,4,5,6)$ ? (note $\left.a_{7}=a_{1}, a_{8}=a_{2} \cdots\right)$
|
Answer: 1
The product always evaluates to 1 .
|
1
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
What is the minimum value of the product
$$
\prod_{i=1}^{6} \frac{a_{i}-a_{i+1}}{a_{i+2}-a_{i+3}}
$$
given that $\left(a_{1}, a_{2}, a_{3}, a_{4}, a_{5}, a_{6}\right)$ is a permutation of $(1,2,3,4,5,6)$ ? (note $\left.a_{7}=a_{1}, a_{8}=a_{2} \cdots\right)$
|
Answer: 1
The product always evaluates to 1 .
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-guts-solutions.jsonl",
"problem_match": "\n7. [7]",
"solution_match": "\nProposed by: Kevin Sun\n"
}
|
52ea9f3a-0774-5efd-ba8d-a264d19a166f
| 609,590
|
Danielle picks a positive integer $1 \leq n \leq 2016$ uniformly at random. What is the probability that $\operatorname{gcd}(n, 2015)=1$ ?
|
Answer:

We split the interval $[1,2016]$ into $[1,2015]$ and 2016. The number of integers in $[1,2015]$ that are relatively prime to 2015 is $\phi(2015)=\frac{4}{5} \cdot \frac{12}{13} \cdot \frac{30}{31} \cdot 2015=1440$. Also, 2016 is relatively prime to 2015 , so there are a total of 1441 numbers in $[1,2016]$ that are relatively prime to 2015 . Then the probability of picking a number relatively prime to 2015 is $\frac{1441}{2016}$
|
\frac{1441}{2016}
|
Yes
|
Yes
|
math-word-problem
|
Number Theory
|
Danielle picks a positive integer $1 \leq n \leq 2016$ uniformly at random. What is the probability that $\operatorname{gcd}(n, 2015)=1$ ?
|
Answer:

We split the interval $[1,2016]$ into $[1,2015]$ and 2016. The number of integers in $[1,2015]$ that are relatively prime to 2015 is $\phi(2015)=\frac{4}{5} \cdot \frac{12}{13} \cdot \frac{30}{31} \cdot 2015=1440$. Also, 2016 is relatively prime to 2015 , so there are a total of 1441 numbers in $[1,2016]$ that are relatively prime to 2015 . Then the probability of picking a number relatively prime to 2015 is $\frac{1441}{2016}$
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-guts-solutions.jsonl",
"problem_match": "\n8. [7]",
"solution_match": "\nProposed by: Evan Chen\n"
}
|
5d2b4a5b-bf3e-5dbe-964a-3dcb4d828c94
| 609,591
|
How many 3 -element subsets of the set $\{1,2,3, \ldots, 19\}$ have sum of elements divisible by 4?
|
Answer: 244
Consider the elements of the sets mod 4. Then we would need to have sets of the form $\{0,0,0\}$, $\{0,2,2\},\{0,1,3\},\{1,1,2\}$, or $\{2,3,3\}$. In the set $\{1,2, \ldots, 19\}$ there four elements divisible by 4 and 5 elements congruent to each of $1,2,3 \bmod 4$. Hence the desired number is given by
$$
\binom{4}{3}+\binom{4}{1}\binom{5}{2}+\binom{4}{1}\binom{5}{1}\binom{5}{1}+\binom{5}{2}\binom{5}{1}+\binom{5}{1}\binom{5}{2}=244
$$
|
244
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
How many 3 -element subsets of the set $\{1,2,3, \ldots, 19\}$ have sum of elements divisible by 4?
|
Answer: 244
Consider the elements of the sets mod 4. Then we would need to have sets of the form $\{0,0,0\}$, $\{0,2,2\},\{0,1,3\},\{1,1,2\}$, or $\{2,3,3\}$. In the set $\{1,2, \ldots, 19\}$ there four elements divisible by 4 and 5 elements congruent to each of $1,2,3 \bmod 4$. Hence the desired number is given by
$$
\binom{4}{3}+\binom{4}{1}\binom{5}{2}+\binom{4}{1}\binom{5}{1}\binom{5}{1}+\binom{5}{2}\binom{5}{1}+\binom{5}{1}\binom{5}{2}=244
$$
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-guts-solutions.jsonl",
"problem_match": "\n9. [7]",
"solution_match": "\nProposed by: Sam Korsky\n"
}
|
3f9144ec-88e8-50d7-9c6c-856877ee268c
| 609,592
|
Michael is playing basketball. He makes $10 \%$ of his shots, and gets the ball back after $90 \%$ of his missed shots. If he does not get the ball back he stops playing. What is the probability that Michael eventually makes a shot?
|
Answer: $10 / 19$
We find the probability Michael never makes a shot. We do casework on the number of shots Michael takes. He takes only one shot with probability $\frac{9}{10} \cdot \frac{1}{10}$ (he misses with probability $\frac{9}{10}$ and does not get the ball back with probability $\frac{1}{10}$ ). Similarly, he takes two shots with probability $\frac{9}{10} \cdot \frac{9}{10} \cdot \frac{9}{10} \cdot \frac{1}{10}$, three shots with probability $\left(\frac{9}{10}\right)^{5} \frac{1}{10}$, and so on. So we want to sum $\sum_{i=1}^{\infty}\left(\frac{9}{10}\right)^{2 i-1} \cdot \frac{1}{10}=\frac{\frac{1}{10} \cdot \frac{9}{10}}{1-\frac{81}{100}}=\frac{9}{19}$. Then the probability Michael makes a shot is $1-\frac{9}{19}=\frac{10}{19}$.
|
\frac{10}{19}
|
Yes
|
Yes
|
math-word-problem
|
Algebra
|
Michael is playing basketball. He makes $10 \%$ of his shots, and gets the ball back after $90 \%$ of his missed shots. If he does not get the ball back he stops playing. What is the probability that Michael eventually makes a shot?
|
Answer: $10 / 19$
We find the probability Michael never makes a shot. We do casework on the number of shots Michael takes. He takes only one shot with probability $\frac{9}{10} \cdot \frac{1}{10}$ (he misses with probability $\frac{9}{10}$ and does not get the ball back with probability $\frac{1}{10}$ ). Similarly, he takes two shots with probability $\frac{9}{10} \cdot \frac{9}{10} \cdot \frac{9}{10} \cdot \frac{1}{10}$, three shots with probability $\left(\frac{9}{10}\right)^{5} \frac{1}{10}$, and so on. So we want to sum $\sum_{i=1}^{\infty}\left(\frac{9}{10}\right)^{2 i-1} \cdot \frac{1}{10}=\frac{\frac{1}{10} \cdot \frac{9}{10}}{1-\frac{81}{100}}=\frac{9}{19}$. Then the probability Michael makes a shot is $1-\frac{9}{19}=\frac{10}{19}$.
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-guts-solutions.jsonl",
"problem_match": "\n10. [8]",
"solution_match": "\nProposed by: Eshaan Nichani\n"
}
|
4cd41aad-f372-5d53-80c3-b5a2058d0f4b
| 609,593
|
How many subsets $S$ of the set $\{1,2, \ldots, 10\}$ satisfy the property that, for all $i \in[1,9]$, either $i$ or $i+1$ (or both) is in $S$ ?
|
Answer: 144
We do casework on the number of $i$ 's not in $S$. Notice that these $i$ 's that are not in $S$ cannot be consecutive, otherwise there exists an index $i$ such that both $i$ and $i+1$ are both not in $S$. Hence if
there are $k i$ 's not in $S$, we want to arrange $k$ black balls and $10-k$ white balls such that no two black balls are consecutive. Take out $k-1$ white balls to insert back between black balls later, then we want to arrange $k$ black balls and $11-2 k$ white balls arbitrarily, which can be done in $\binom{11-k}{k}$ ways. Hence we want to find the sum $\binom{11}{0}+\binom{10}{1}+\binom{9}{2}+\binom{8}{3}+\binom{7}{4}+\binom{6}{5}$, which is equal to 144 ways.
|
144
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
How many subsets $S$ of the set $\{1,2, \ldots, 10\}$ satisfy the property that, for all $i \in[1,9]$, either $i$ or $i+1$ (or both) is in $S$ ?
|
Answer: 144
We do casework on the number of $i$ 's not in $S$. Notice that these $i$ 's that are not in $S$ cannot be consecutive, otherwise there exists an index $i$ such that both $i$ and $i+1$ are both not in $S$. Hence if
there are $k i$ 's not in $S$, we want to arrange $k$ black balls and $10-k$ white balls such that no two black balls are consecutive. Take out $k-1$ white balls to insert back between black balls later, then we want to arrange $k$ black balls and $11-2 k$ white balls arbitrarily, which can be done in $\binom{11-k}{k}$ ways. Hence we want to find the sum $\binom{11}{0}+\binom{10}{1}+\binom{9}{2}+\binom{8}{3}+\binom{7}{4}+\binom{6}{5}$, which is equal to 144 ways.
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-guts-solutions.jsonl",
"problem_match": "\n11. [8]",
"solution_match": "\nProposed by: Eshaan Nichani\n"
}
|
a4d34ae9-8cfe-5022-96bd-5bb7ed25716b
| 609,594
|
A positive integer $\overline{A B C}$, where $A, B, C$ are digits, satisfies
$$
\overline{A B C}=B^{C}-A
$$
Find $\overline{A B C}$.
|
The equation is equivalent to $100 A+10 B+C=B^{C}-A$. Suppose $A=0$, so that we get $10 B+C=B^{C}$. Reducing mod $B$, we find that $C$ must be divisible by $B . C \neq 0$, since otherwise $10 B=1$, contradiction, so $C \geq B$. Thus $10 B+C \geq B^{B}$ for digits $B, C$. For $B \geq 4$, we have $100>10 B+C \geq B^{B}>100$, a contradiction, so $B=1,2,3$. We can easily test that these do not yield solutions, so there are no solutions when $A=0$.
Thus $A \geq 1$, and so $100 \leq 100 A+10 B+C \leq 1000$, and thus $100 \leq B^{C}-A \leq 1000.1 \leq A \leq 10$, so we have $101 \leq B^{C} \leq 1010$. We can test that the only pairs $(B, C)$ that satisfy this condition are $(2,7),(2,8),(2,9),(3,5),(3,6),(4,4),(5,3),(6,3),(7,3),(8,3),(9,3)$. Of these pairs, only $(2,7)$ yields a solution to the original equation, namely $A=1, B=2, C=7$. Thus $\overline{A B C}=127$.
|
127
|
Yes
|
Yes
|
math-word-problem
|
Number Theory
|
A positive integer $\overline{A B C}$, where $A, B, C$ are digits, satisfies
$$
\overline{A B C}=B^{C}-A
$$
Find $\overline{A B C}$.
|
The equation is equivalent to $100 A+10 B+C=B^{C}-A$. Suppose $A=0$, so that we get $10 B+C=B^{C}$. Reducing mod $B$, we find that $C$ must be divisible by $B . C \neq 0$, since otherwise $10 B=1$, contradiction, so $C \geq B$. Thus $10 B+C \geq B^{B}$ for digits $B, C$. For $B \geq 4$, we have $100>10 B+C \geq B^{B}>100$, a contradiction, so $B=1,2,3$. We can easily test that these do not yield solutions, so there are no solutions when $A=0$.
Thus $A \geq 1$, and so $100 \leq 100 A+10 B+C \leq 1000$, and thus $100 \leq B^{C}-A \leq 1000.1 \leq A \leq 10$, so we have $101 \leq B^{C} \leq 1010$. We can test that the only pairs $(B, C)$ that satisfy this condition are $(2,7),(2,8),(2,9),(3,5),(3,6),(4,4),(5,3),(6,3),(7,3),(8,3),(9,3)$. Of these pairs, only $(2,7)$ yields a solution to the original equation, namely $A=1, B=2, C=7$. Thus $\overline{A B C}=127$.
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-guts-solutions.jsonl",
"problem_match": "\n12. [8]",
"solution_match": "\n## Proposed by: Henrik Boecken\n\n"
}
|
666f7334-cf41-5e35-b9b2-2f179d6663e0
| 609,595
|
How many functions $f:\{0,1\}^{3} \rightarrow\{0,1\}$ satisfy the property that, for all ordered triples $\left(a_{1}, a_{2}, a_{3}\right)$ and $\left(b_{1}, b_{2}, b_{3}\right)$ such that $a_{i} \geq b_{i}$ for all $i, f\left(a_{1}, a_{2}, a_{3}\right) \geq f\left(b_{1}, b_{2}, b_{3}\right)$ ?
|
## Answer: 20
Consider the unit cube with vertices $\{0,1\}^{3}$. Let $O=(0,0,0), A=(1,0,0), B=(0,1,0), C=(0,0,1)$, $D=(0,1,1), E=(1,0,1), F=(1,1,0)$, and $P=(1,1,1)$. We want to find a function $f$ on these vertices such that $f(1, y, z) \geq f(0, y, z)$ (and symmetric representations). For instance, if $f(A)=1$, then $f(E)=f(F)=f(P)=1$ as well, and if $f(D)=1$, then $f(P)=1$ as well.
We group the vertices into four levels: $L_{0}=\{O\}, L_{1}=\{A, B, C\}, L_{2}=\{D, E, F\}$, and $L_{3}=\{P\}$. We do casework on the lowest level of a 1 in a function.
- If the 1 is in $L_{0}$, then $f$ maps everything to 1 , for a total of 1 way.
- If the 1 is in $L_{1}$, then $f(O)=0$. If there are 31 's in $L_{1}$, then everything but $O$ must be mapped to 1 , for 1 way. If there are 21 's in $L_{1}$, then $f\left(L_{2}\right)=f\left(L_{3}\right)=1$, and there are 3 ways to choose the 21 's in $L_{1}$, for a total of 3 ways. If there is one 1 , then WLOG $f(A)=1$. Then $f(E)=f(F)=f(P)=1$, and $f(D)$ equals either 0 or 1 . There are $3 \cdot 2=6$ ways to do this. In total, there are $1+3+6=10$ ways for the lowest 1 to be in $L_{1}$.
- If the lowest 1 is in $L_{2}$, then $f(O)=f\left(L_{1}\right)=0$. If there are 31 's in $L_{2}$, there is one way to make $f$. If there are 21 's, then we can pick the 21 's in 3 ways. Finally, if there is one 1 , then we pick this 1 in 3 ways. There are $1+3+3=7$ ways.
- The lowest 1 is in $L_{3}$. There is 1 way.
- There are no 1 's. Then $f$ sends everything to 0 . There is 1 way.
In total, there are $1+10+7+1+1=20$ total $f^{\prime}$ 's.
|
20
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
How many functions $f:\{0,1\}^{3} \rightarrow\{0,1\}$ satisfy the property that, for all ordered triples $\left(a_{1}, a_{2}, a_{3}\right)$ and $\left(b_{1}, b_{2}, b_{3}\right)$ such that $a_{i} \geq b_{i}$ for all $i, f\left(a_{1}, a_{2}, a_{3}\right) \geq f\left(b_{1}, b_{2}, b_{3}\right)$ ?
|
## Answer: 20
Consider the unit cube with vertices $\{0,1\}^{3}$. Let $O=(0,0,0), A=(1,0,0), B=(0,1,0), C=(0,0,1)$, $D=(0,1,1), E=(1,0,1), F=(1,1,0)$, and $P=(1,1,1)$. We want to find a function $f$ on these vertices such that $f(1, y, z) \geq f(0, y, z)$ (and symmetric representations). For instance, if $f(A)=1$, then $f(E)=f(F)=f(P)=1$ as well, and if $f(D)=1$, then $f(P)=1$ as well.
We group the vertices into four levels: $L_{0}=\{O\}, L_{1}=\{A, B, C\}, L_{2}=\{D, E, F\}$, and $L_{3}=\{P\}$. We do casework on the lowest level of a 1 in a function.
- If the 1 is in $L_{0}$, then $f$ maps everything to 1 , for a total of 1 way.
- If the 1 is in $L_{1}$, then $f(O)=0$. If there are 31 's in $L_{1}$, then everything but $O$ must be mapped to 1 , for 1 way. If there are 21 's in $L_{1}$, then $f\left(L_{2}\right)=f\left(L_{3}\right)=1$, and there are 3 ways to choose the 21 's in $L_{1}$, for a total of 3 ways. If there is one 1 , then WLOG $f(A)=1$. Then $f(E)=f(F)=f(P)=1$, and $f(D)$ equals either 0 or 1 . There are $3 \cdot 2=6$ ways to do this. In total, there are $1+3+6=10$ ways for the lowest 1 to be in $L_{1}$.
- If the lowest 1 is in $L_{2}$, then $f(O)=f\left(L_{1}\right)=0$. If there are 31 's in $L_{2}$, there is one way to make $f$. If there are 21 's, then we can pick the 21 's in 3 ways. Finally, if there is one 1 , then we pick this 1 in 3 ways. There are $1+3+3=7$ ways.
- The lowest 1 is in $L_{3}$. There is 1 way.
- There are no 1 's. Then $f$ sends everything to 0 . There is 1 way.
In total, there are $1+10+7+1+1=20$ total $f^{\prime}$ 's.
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-guts-solutions.jsonl",
"problem_match": "\n13. [9]",
"solution_match": "\nProposed by: Eshaan Nichani\n\n"
}
|
f4a11bc3-18ae-5875-8c0c-51d5333e285a
| 609,596
|
The very hungry caterpillar lives on the number line. For each non-zero integer $i$, a fruit sits on the point with coordinate $i$. The caterpillar moves back and forth; whenever he reaches a point with food, he eats the food, increasing his weight by one pound, and turns around. The caterpillar moves at a speed of $2^{-w}$ units per day, where $w$ is his weight. If the caterpillar starts off at the origin, weighing zero pounds, and initially moves in the positive $x$ direction, after how many days will he weigh 10 pounds?
|
Answer: 9217
On the $n$th straight path, the caterpillar travels $n$ units before hitting food and his weight is $n-1$. Then his speed is $2^{1-n}$. Then right before he turns around for the $n$th time, he has traveled a total time of $\sum_{i=1}^{n} \frac{i}{2^{1-i}}=\frac{1}{2} \sum_{i=1}^{n} i \cdot 2^{i}$. We want to know how many days the catepillar moves before his weight is 10 , so we want to take $n=10$ so that his last straight path was taken at weight 9 . Hence we want to evaluate $S=\frac{1}{2} \sum_{i=1}^{10} i \cdot 2^{i}$. Note that $2 S=\frac{1}{2} \sum_{i=2}^{11}(i-1) \cdot 2^{i}$, so $S=2 S-S=\frac{1}{2}\left(11 \cdot 2^{11}-\sum_{i=1}^{10} 2^{i}\right)=$ $\frac{1}{2}\left(10 \cdot 2^{11}-2^{11}+2\right)=9217$.
|
9217
|
Yes
|
Yes
|
math-word-problem
|
Number Theory
|
The very hungry caterpillar lives on the number line. For each non-zero integer $i$, a fruit sits on the point with coordinate $i$. The caterpillar moves back and forth; whenever he reaches a point with food, he eats the food, increasing his weight by one pound, and turns around. The caterpillar moves at a speed of $2^{-w}$ units per day, where $w$ is his weight. If the caterpillar starts off at the origin, weighing zero pounds, and initially moves in the positive $x$ direction, after how many days will he weigh 10 pounds?
|
Answer: 9217
On the $n$th straight path, the caterpillar travels $n$ units before hitting food and his weight is $n-1$. Then his speed is $2^{1-n}$. Then right before he turns around for the $n$th time, he has traveled a total time of $\sum_{i=1}^{n} \frac{i}{2^{1-i}}=\frac{1}{2} \sum_{i=1}^{n} i \cdot 2^{i}$. We want to know how many days the catepillar moves before his weight is 10 , so we want to take $n=10$ so that his last straight path was taken at weight 9 . Hence we want to evaluate $S=\frac{1}{2} \sum_{i=1}^{10} i \cdot 2^{i}$. Note that $2 S=\frac{1}{2} \sum_{i=2}^{11}(i-1) \cdot 2^{i}$, so $S=2 S-S=\frac{1}{2}\left(11 \cdot 2^{11}-\sum_{i=1}^{10} 2^{i}\right)=$ $\frac{1}{2}\left(10 \cdot 2^{11}-2^{11}+2\right)=9217$.
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-guts-solutions.jsonl",
"problem_match": "\n14. [9]",
"solution_match": "\nProposed by: Eshaan Nichani\n"
}
|
a72dd4d4-b375-51f1-a341-5f00a8492a53
| 609,597
|
Let $A B C D$ be an isosceles trapezoid with parallel bases $A B=1$ and $C D=2$ and height 1. Find the area of the region containing all points inside $A B C D$ whose projections onto the four sides of the trapezoid lie on the segments formed by $A B, B C, C D$ and $D A$.
|
Answer: $\frac{5}{8}$
Let $E, F$, be the projections of $A, B$ on $C D$. A point whose projections lie on the sides must be contained in the square $A B F E$. Furthermore, the point must lie under the perpendicular to $A D$ at $A$ and the perpendicular to $B C$ at $B$, which have slopes $\frac{1}{2}$ and $-\frac{1}{2}$. The area of the desired pentagon is $1-\frac{1}{4}-\frac{1}{8}=\frac{5}{8}$.
|
\frac{5}{8}
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
Let $A B C D$ be an isosceles trapezoid with parallel bases $A B=1$ and $C D=2$ and height 1. Find the area of the region containing all points inside $A B C D$ whose projections onto the four sides of the trapezoid lie on the segments formed by $A B, B C, C D$ and $D A$.
|
Answer: $\frac{5}{8}$
Let $E, F$, be the projections of $A, B$ on $C D$. A point whose projections lie on the sides must be contained in the square $A B F E$. Furthermore, the point must lie under the perpendicular to $A D$ at $A$ and the perpendicular to $B C$ at $B$, which have slopes $\frac{1}{2}$ and $-\frac{1}{2}$. The area of the desired pentagon is $1-\frac{1}{4}-\frac{1}{8}=\frac{5}{8}$.
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-guts-solutions.jsonl",
"problem_match": "\n15. [9]",
"solution_match": "\nProposed by: Allen Liu\n"
}
|
ae9d4297-c635-5281-abd9-ff4558585609
| 609,598
|
Create a cube $C_{1}$ with edge length 1 . Take the centers of the faces and connect them to form an octahedron $O_{1}$. Take the centers of the octahedron's faces and connect them to form a new cube $C_{2}$. Continue this process infinitely. Find the sum of all the surface areas of the cubes and octahedrons.
|
Answer: $\frac{54+9 \sqrt{3}}{8}$
The lengths of the second cube are one-third of the lengths of the first cube, so the surface area decreases by a factor of one-ninth. Since the first cube has surface area 6 and the first octahedron has surface area $\sqrt{3}$, the total area is $(6+\sqrt{3}) \cdot\left(1+\frac{1}{9}+\frac{1}{9^{2}}+\cdots\right)=\frac{54+9 \sqrt{3}}{8}$
|
\frac{54+9 \sqrt{3}}{8}
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
Create a cube $C_{1}$ with edge length 1 . Take the centers of the faces and connect them to form an octahedron $O_{1}$. Take the centers of the octahedron's faces and connect them to form a new cube $C_{2}$. Continue this process infinitely. Find the sum of all the surface areas of the cubes and octahedrons.
|
Answer: $\frac{54+9 \sqrt{3}}{8}$
The lengths of the second cube are one-third of the lengths of the first cube, so the surface area decreases by a factor of one-ninth. Since the first cube has surface area 6 and the first octahedron has surface area $\sqrt{3}$, the total area is $(6+\sqrt{3}) \cdot\left(1+\frac{1}{9}+\frac{1}{9^{2}}+\cdots\right)=\frac{54+9 \sqrt{3}}{8}$
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-guts-solutions.jsonl",
"problem_match": "\n16. [10]",
"solution_match": "\nProposed by: Shyam Narayanan\n"
}
|
e3f9d4e7-b51e-59cf-a70e-748ef265040e
| 609,599
|
Let $p(x)=x^{2}-x+1$. Let $\alpha$ be a root of $p(p(p(p(x)))$. Find the value of
$$
(p(\alpha)-1) p(\alpha) p(p(\alpha)) p(p(p(\alpha))
$$
|
Answer: -1
Since $(x-1) x=p(x)-1$, we can set
$$
\begin{aligned}
(p(\alpha)-1) p(\alpha) p(p(\alpha)) p(p(p(\alpha)) & =(p(p(\alpha))-1) p(p(\alpha)) p(p(p(\alpha)) \\
& =(p(p(p(\alpha)))-1) p(p(p(\alpha)) \\
& =p(p(p(p(\alpha))))-1 \\
& =-1
\end{aligned}
$$
|
-1
|
Yes
|
Yes
|
math-word-problem
|
Algebra
|
Let $p(x)=x^{2}-x+1$. Let $\alpha$ be a root of $p(p(p(p(x)))$. Find the value of
$$
(p(\alpha)-1) p(\alpha) p(p(\alpha)) p(p(p(\alpha))
$$
|
Answer: -1
Since $(x-1) x=p(x)-1$, we can set
$$
\begin{aligned}
(p(\alpha)-1) p(\alpha) p(p(\alpha)) p(p(p(\alpha)) & =(p(p(\alpha))-1) p(p(\alpha)) p(p(p(\alpha)) \\
& =(p(p(p(\alpha)))-1) p(p(p(\alpha)) \\
& =p(p(p(p(\alpha))))-1 \\
& =-1
\end{aligned}
$$
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-guts-solutions.jsonl",
"problem_match": "\n17. [10]",
"solution_match": "\nProposed by: Henrik Boecken\n"
}
|
f7ee4325-4afb-5b5f-b8d6-838e61eeb180
| 609,600
|
An 8 by 8 grid of numbers obeys the following pattern:
1) The first row and first column consist of all 1 s .
2) The entry in the $i$ th row and $j$ th column equals the sum of the numbers in the $(i-1)$ by $(j-1)$ sub-grid with row less than $i$ and column less than $j$.
What is the number in the 8 th row and 8 th column?
|
Answer: 2508
Let $x_{i, j}$ be the number in the $i$ th row and the $j$ th column. Then if $i, j \geq 2, x_{i+1, j+1}-x_{i+1, j}-x_{i, j+1}+x_{i, j}$ only counts the term $x_{i, j}$ since every other term is added and subtracted the same number of times. Thus $x_{i+1, j+1}=x_{i+1, j}+x_{i, j+1}$ when $i, j \geq 2$. Also, $x_{2, i}=x_{i, 2}=i$ so $x_{i+1, j+1}=x_{i+1, j}+x_{i, j+1}$ holds for all $i, j \geq 1$ except for $(i, j)=(1,1)$ where $x_{2,2}$ is one less than expected. This means that $x_{i, j}$ is the number ways of travelling from $(1,1)$ to $(i, j)$, minus the number of ways of travelling from $(2,2)$ to $(i, j)$, which is $\binom{14}{7}-\binom{12}{6}=2508$.
|
2508
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
An 8 by 8 grid of numbers obeys the following pattern:
1) The first row and first column consist of all 1 s .
2) The entry in the $i$ th row and $j$ th column equals the sum of the numbers in the $(i-1)$ by $(j-1)$ sub-grid with row less than $i$ and column less than $j$.
What is the number in the 8 th row and 8 th column?
|
Answer: 2508
Let $x_{i, j}$ be the number in the $i$ th row and the $j$ th column. Then if $i, j \geq 2, x_{i+1, j+1}-x_{i+1, j}-x_{i, j+1}+x_{i, j}$ only counts the term $x_{i, j}$ since every other term is added and subtracted the same number of times. Thus $x_{i+1, j+1}=x_{i+1, j}+x_{i, j+1}$ when $i, j \geq 2$. Also, $x_{2, i}=x_{i, 2}=i$ so $x_{i+1, j+1}=x_{i+1, j}+x_{i, j+1}$ holds for all $i, j \geq 1$ except for $(i, j)=(1,1)$ where $x_{2,2}$ is one less than expected. This means that $x_{i, j}$ is the number ways of travelling from $(1,1)$ to $(i, j)$, minus the number of ways of travelling from $(2,2)$ to $(i, j)$, which is $\binom{14}{7}-\binom{12}{6}=2508$.
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-guts-solutions.jsonl",
"problem_match": "\n18. [10]",
"solution_match": "\nProposed by: Eshaan Nichani\n"
}
|
456c105d-6538-5d31-aba2-a3720ef2541b
| 609,601
|
Let $S$ be the set of all positive integers whose prime factorizations only contain powers of the primes 2 and 2017 (1, powers of 2, and powers of 2017 are thus contained in $S$ ). Compute $\sum_{s \in S} \frac{1}{s}$.
|
Answer: $\square$
Since every $s$ can be written as $2^{i} \cdot 2017^{j}$ for non-negative integers $i$ and $j$, the given sum can be written as $\left(\sum_{i=0}^{\infty} \frac{1}{2^{i}}\right)\left(\sum_{j=0}^{\infty} \frac{1}{2017^{j}}\right)$. We can easily find the sum of these geometric series since they both have common ratio of magnitude less than 1 , giving us $\left.\left(\frac{1}{1-\frac{1}{2}}\right) \cdot \frac{1}{1-\frac{1}{2017}}\right)=\frac{2}{1} \cdot \frac{2017}{2016}=\frac{2017}{1008}$.
|
\frac{2017}{1008}
|
Yes
|
Yes
|
math-word-problem
|
Number Theory
|
Let $S$ be the set of all positive integers whose prime factorizations only contain powers of the primes 2 and 2017 (1, powers of 2, and powers of 2017 are thus contained in $S$ ). Compute $\sum_{s \in S} \frac{1}{s}$.
|
Answer: $\square$
Since every $s$ can be written as $2^{i} \cdot 2017^{j}$ for non-negative integers $i$ and $j$, the given sum can be written as $\left(\sum_{i=0}^{\infty} \frac{1}{2^{i}}\right)\left(\sum_{j=0}^{\infty} \frac{1}{2017^{j}}\right)$. We can easily find the sum of these geometric series since they both have common ratio of magnitude less than 1 , giving us $\left.\left(\frac{1}{1-\frac{1}{2}}\right) \cdot \frac{1}{1-\frac{1}{2017}}\right)=\frac{2}{1} \cdot \frac{2017}{2016}=\frac{2017}{1008}$.
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-guts-solutions.jsonl",
"problem_match": "\n19. [11]",
"solution_match": "\nProposed by: Daniel Qu\n"
}
|
1218cc31-07f6-524a-b904-a78f6c0a4791
| 609,602
|
Let $\mathcal{V}$ be the volume enclosed by the graph
$$
x^{2016}+y^{2016}+z^{2}=2016
$$
Find $\mathcal{V}$ rounded to the nearest multiple of ten.
|
Answer: 360
Let $R$ be the region in question. Then we have
$$
[-1,1]^{2} \times[-\sqrt{2014}, \sqrt{2014}] \subset R \subset[-\sqrt[2016]{2016}, \sqrt[2016]{2016}]^{2} \times[\sqrt{2016}, \sqrt{2016}]
$$
We find some bounds: we have
$$
\sqrt{2016}<\sqrt{2025}=45
$$
By concavity of $\sqrt{\cdot}$, we have the bound
$$
\sqrt{2014} \leq \frac{11}{89} \sqrt{1936}+\frac{78}{89} \sqrt{2025}=45-\frac{11}{89}
$$
Finally, if we let $\sqrt[2016]{2016}=1+\epsilon$, then $(1+\epsilon)^{2016}=2016$, so
$$
\binom{2016}{5} \epsilon^{5}<2016 \Rightarrow \epsilon<\sqrt[5]{\frac{120}{2015 \cdot 2014 \cdot 2013 \cdot 2012}}<\sqrt[5]{\frac{120}{2000^{4}}}=\sqrt[5]{\frac{7500}{10^{15}}}=\frac{\sqrt[5]{7500}}{1000}<\frac{6}{1000}
$$
Therefore, the volume of $R$ is lower-bounded by
$$
2^{2} \cdot 2\left(45-\frac{11}{89}\right)=360-\frac{88}{89}>355
$$
and upper-bounded by
$$
2^{2}\left(1+\frac{0.8}{100}\right)^{2} \cdot 2(45)=360\left(1+\frac{6}{1000}\right)^{2}<365
$$
Thus, $R$ rounded to the nearest ten is 360 .
|
360
|
Yes
|
Yes
|
math-word-problem
|
Calculus
|
Let $\mathcal{V}$ be the volume enclosed by the graph
$$
x^{2016}+y^{2016}+z^{2}=2016
$$
Find $\mathcal{V}$ rounded to the nearest multiple of ten.
|
Answer: 360
Let $R$ be the region in question. Then we have
$$
[-1,1]^{2} \times[-\sqrt{2014}, \sqrt{2014}] \subset R \subset[-\sqrt[2016]{2016}, \sqrt[2016]{2016}]^{2} \times[\sqrt{2016}, \sqrt{2016}]
$$
We find some bounds: we have
$$
\sqrt{2016}<\sqrt{2025}=45
$$
By concavity of $\sqrt{\cdot}$, we have the bound
$$
\sqrt{2014} \leq \frac{11}{89} \sqrt{1936}+\frac{78}{89} \sqrt{2025}=45-\frac{11}{89}
$$
Finally, if we let $\sqrt[2016]{2016}=1+\epsilon$, then $(1+\epsilon)^{2016}=2016$, so
$$
\binom{2016}{5} \epsilon^{5}<2016 \Rightarrow \epsilon<\sqrt[5]{\frac{120}{2015 \cdot 2014 \cdot 2013 \cdot 2012}}<\sqrt[5]{\frac{120}{2000^{4}}}=\sqrt[5]{\frac{7500}{10^{15}}}=\frac{\sqrt[5]{7500}}{1000}<\frac{6}{1000}
$$
Therefore, the volume of $R$ is lower-bounded by
$$
2^{2} \cdot 2\left(45-\frac{11}{89}\right)=360-\frac{88}{89}>355
$$
and upper-bounded by
$$
2^{2}\left(1+\frac{0.8}{100}\right)^{2} \cdot 2(45)=360\left(1+\frac{6}{1000}\right)^{2}<365
$$
Thus, $R$ rounded to the nearest ten is 360 .
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-guts-solutions.jsonl",
"problem_match": "\n20. [11]",
"solution_match": "\nProposed by: Henrik Boecken\n"
}
|
2900e35b-53b1-5fe9-9e51-ef1527409f7d
| 609,603
|
Zlatan has 2017 socks of various colours. He wants to proudly display one sock of each of the colours, and he counts that there are $N$ ways to select socks from his collection for display. Given this information, what is the maximum value of $N$ ?
|
Answer: $3^{671} \cdot 4$
Say that there are $k$ sock types labeled $1,2, \ldots, k$, and $a_{i}$ socks of type $i$. The problem asks to maximize $\prod_{i=1}^{k} a_{i}$ subject to $\sum_{i=1}^{k} a_{i}=2017$, over all $k$ and all sequences of positive integers $a_{1}, \ldots, a_{k}$.
The optimal $\left(a_{1}, \ldots, a_{k}\right)$ cannot have any $a_{i}=1$ for any $i$, because if there exists $a_{i}=1$ we can delete this $a_{i}$ and add 1 to any $a_{j}(j \neq i)$ to increase the product while keeping the sum constant.
There exists an optimal $\left(a_{1}, \ldots, a_{k}\right)$ without any $a_{i} \geq 4$ because if there exists $a_{i} \geq 4$ we can replace this $a_{i}$ with $a_{i}-2$ and 2 , which nonstrictly increases the product while keeping the sum constant.
Therefore, there exists an optimal $\left(a_{1}, \ldots, a_{k}\right)$ whose terms are all 2 or 3 . The optimal $\left(a_{1}, \ldots, a_{k}\right)$ cannot have more than two 2 s , because we can replace three 2 s with two 3 s , which increases the sum by a factor of $\frac{3^{2}}{2^{3}}=\frac{9}{8}$ while keeping the sum constant.
It follows that we want to partition 2017 into 6713 s and two 2 s , for a product of $3^{671} \cdot 4$.
|
3^{671} \cdot 4
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
Zlatan has 2017 socks of various colours. He wants to proudly display one sock of each of the colours, and he counts that there are $N$ ways to select socks from his collection for display. Given this information, what is the maximum value of $N$ ?
|
Answer: $3^{671} \cdot 4$
Say that there are $k$ sock types labeled $1,2, \ldots, k$, and $a_{i}$ socks of type $i$. The problem asks to maximize $\prod_{i=1}^{k} a_{i}$ subject to $\sum_{i=1}^{k} a_{i}=2017$, over all $k$ and all sequences of positive integers $a_{1}, \ldots, a_{k}$.
The optimal $\left(a_{1}, \ldots, a_{k}\right)$ cannot have any $a_{i}=1$ for any $i$, because if there exists $a_{i}=1$ we can delete this $a_{i}$ and add 1 to any $a_{j}(j \neq i)$ to increase the product while keeping the sum constant.
There exists an optimal $\left(a_{1}, \ldots, a_{k}\right)$ without any $a_{i} \geq 4$ because if there exists $a_{i} \geq 4$ we can replace this $a_{i}$ with $a_{i}-2$ and 2 , which nonstrictly increases the product while keeping the sum constant.
Therefore, there exists an optimal $\left(a_{1}, \ldots, a_{k}\right)$ whose terms are all 2 or 3 . The optimal $\left(a_{1}, \ldots, a_{k}\right)$ cannot have more than two 2 s , because we can replace three 2 s with two 3 s , which increases the sum by a factor of $\frac{3^{2}}{2^{3}}=\frac{9}{8}$ while keeping the sum constant.
It follows that we want to partition 2017 into 6713 s and two 2 s , for a product of $3^{671} \cdot 4$.
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-guts-solutions.jsonl",
"problem_match": "\n21. [11]",
"solution_match": "\nProposed by: Saranesh Prembabu\n"
}
|
9e15aaa0-e7bd-522f-bdec-1b7f749838b3
| 609,604
|
Let the function $f: \mathbb{Z} \rightarrow \mathbb{Z}$ take only integer inputs and have integer outputs. For any integers $x$ and $y, f$ satisfies
$$
f(x)+f(y)=f(x+1)+f(y-1)
$$
If $f(2016)=6102$ and $f(6102)=2016$, what is $f(1) ?$
|
Answer: 8117
We have
$$
f(x+1)=f(x)+f(y)-f(y-1)
$$
If $y$ is fixed, we have
$$
f(x+1)=f(x)+\text { constant }
$$
implying $f$ is linear. Using our two points, then, we get $f(x)=8118-x$, so $f(1)=8117$
|
8117
|
Yes
|
Yes
|
math-word-problem
|
Algebra
|
Let the function $f: \mathbb{Z} \rightarrow \mathbb{Z}$ take only integer inputs and have integer outputs. For any integers $x$ and $y, f$ satisfies
$$
f(x)+f(y)=f(x+1)+f(y-1)
$$
If $f(2016)=6102$ and $f(6102)=2016$, what is $f(1) ?$
|
Answer: 8117
We have
$$
f(x+1)=f(x)+f(y)-f(y-1)
$$
If $y$ is fixed, we have
$$
f(x+1)=f(x)+\text { constant }
$$
implying $f$ is linear. Using our two points, then, we get $f(x)=8118-x$, so $f(1)=8117$
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-guts-solutions.jsonl",
"problem_match": "\n22. [12]",
"solution_match": "\nProposed by: Henrik Boecken\n"
}
|
4a8cf86d-6fe7-5a95-aad4-5b522236b334
| 609,605
|
Let $d$ be a randomly chosen divisor of 2016. Find the expected value of
$$
\frac{d^{2}}{d^{2}+2016}
$$
|
Answer: $\frac{1}{2}$
Let $a b=2016$. Then
$$
\frac{a^{2}}{a^{2}+2016}+\frac{b^{2}}{b^{2}+2016}=\frac{a^{2}}{a^{2}+2016}+\frac{\left(\frac{2016}{a}\right)^{2}}{\left(\frac{2016}{a}\right)^{2}+2016}=\frac{a^{2}}{a^{2}+2016}+\frac{2016}{a^{2}+2016}=1
$$
Thus, every divisor $d$ pairs up with $\frac{2016}{d}$ to get 1 , so our desired expected value is $\frac{1}{2}$.
|
\frac{1}{2}
|
Yes
|
Yes
|
math-word-problem
|
Number Theory
|
Let $d$ be a randomly chosen divisor of 2016. Find the expected value of
$$
\frac{d^{2}}{d^{2}+2016}
$$
|
Answer: $\frac{1}{2}$
Let $a b=2016$. Then
$$
\frac{a^{2}}{a^{2}+2016}+\frac{b^{2}}{b^{2}+2016}=\frac{a^{2}}{a^{2}+2016}+\frac{\left(\frac{2016}{a}\right)^{2}}{\left(\frac{2016}{a}\right)^{2}+2016}=\frac{a^{2}}{a^{2}+2016}+\frac{2016}{a^{2}+2016}=1
$$
Thus, every divisor $d$ pairs up with $\frac{2016}{d}$ to get 1 , so our desired expected value is $\frac{1}{2}$.
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-guts-solutions.jsonl",
"problem_match": "\n23. [12]",
"solution_match": "\nProposed by: Henrik Boecken\n"
}
|
e2613b27-f626-543a-ad37-91e873759f47
| 609,606
|
Consider an infinite grid of equilateral triangles. Each edge (that is, each side of a small triangle) is colored one of $N$ colors. The coloring is done in such a way that any path between any two nonadjecent vertices consists of edges with at least two different colors. What is the smallest possible value of $N$ ?
|
Answer: 6
Note that the condition is equivalent to having no edges of the same color sharing a vertex by just considering paths of length two. Consider a hexagon made out of six triangles. Six edges meet at the center, so $N \geq 6$. To prove $N=6$, simply use two colors for each of the three possible directions of an edge, and color edges of the same orientation alternatingly with different colors.
|
6
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
Consider an infinite grid of equilateral triangles. Each edge (that is, each side of a small triangle) is colored one of $N$ colors. The coloring is done in such a way that any path between any two nonadjecent vertices consists of edges with at least two different colors. What is the smallest possible value of $N$ ?
|
Answer: 6
Note that the condition is equivalent to having no edges of the same color sharing a vertex by just considering paths of length two. Consider a hexagon made out of six triangles. Six edges meet at the center, so $N \geq 6$. To prove $N=6$, simply use two colors for each of the three possible directions of an edge, and color edges of the same orientation alternatingly with different colors.
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-guts-solutions.jsonl",
"problem_match": "\n24. [12]",
"solution_match": "\nProposed by: Henrik Boecken\n"
}
|
953112c5-a970-5152-bbe2-b4a6122affef
| 609,607
|
Chris and Paul each rent a different room of a hotel from rooms $1-60$. However, the hotel manager mistakes them for one person and gives "Chris Paul" a room with Chris's and Paul's room concatenated. For example, if Chris had 15 and Paul had 9, "Chris Paul" has 159. If there are 360 rooms in the hotel, what is the probability that "Chris Paul" has a valid room?
|
Answer: $\frac{153}{1180}$
There are $60 \cdot 59=3540$ total possible outcomes, and we need to count the number of these which concatenate into a number at most 60 . Of these, $9 \cdot 8$ result from both Chris and Paul getting one-digit room numbers. If Chris gets a two-digit number, then he must get a number at most 35 and Paul should get a one-digit room number, giving $(35-9) \cdot 9$ possibilties. If Chris gets a one-digit number, it must be 1,2 , or 3 . If Chris gets 1,2 or 3 , Paul can get any two-digit number from 10 to 60 to guarantee a valid room, giving $51 \cdot 3$ outcomes. The total number of correct outcomes is $72+51 * 3+26 * 9=459$, so the desired probability is $\frac{153}{1180}$.
|
\frac{153}{1180}
|
Yes
|
Yes
|
math-word-problem
|
Number Theory
|
Chris and Paul each rent a different room of a hotel from rooms $1-60$. However, the hotel manager mistakes them for one person and gives "Chris Paul" a room with Chris's and Paul's room concatenated. For example, if Chris had 15 and Paul had 9, "Chris Paul" has 159. If there are 360 rooms in the hotel, what is the probability that "Chris Paul" has a valid room?
|
Answer: $\frac{153}{1180}$
There are $60 \cdot 59=3540$ total possible outcomes, and we need to count the number of these which concatenate into a number at most 60 . Of these, $9 \cdot 8$ result from both Chris and Paul getting one-digit room numbers. If Chris gets a two-digit number, then he must get a number at most 35 and Paul should get a one-digit room number, giving $(35-9) \cdot 9$ possibilties. If Chris gets a one-digit number, it must be 1,2 , or 3 . If Chris gets 1,2 or 3 , Paul can get any two-digit number from 10 to 60 to guarantee a valid room, giving $51 \cdot 3$ outcomes. The total number of correct outcomes is $72+51 * 3+26 * 9=459$, so the desired probability is $\frac{153}{1180}$.
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-guts-solutions.jsonl",
"problem_match": "\n25. [13]",
"solution_match": "\nProposed by: Meghal Gupta\n"
}
|
eeb4460f-6dbd-5c21-a27f-386b8910905e
| 609,608
|
Find the number of ways to choose two nonempty subsets $X$ and $Y$ of $\{1,2, \ldots, 2001\}$, such that $|Y|=1001$ and the smallest element of $Y$ is equal to the largest element of $X$.
|
Answer: $2^{2000}$
We claim that there is a bijection between pairs $(X, Y)$ and sets $S$ with at least 1001 elements. To get $S$ from $X$ and $Y$, take $S=X \cup Y$, which contains $Y$ and thus has at least 1001 elements. To form $(X, Y)$ from $S$, make $Y$ the largest 1001 elements of $S$, and make $X$ everything except the largest 1000 elements of $S$. Therefore we need to count the number of subsets of $\{1,2, \ldots, 2001\}$ with at least 1001 elements. For every subset of $\{1,2, \ldots, 2001\}$, either it or its complement has at least 1001 elements, so number of possible subsets is $\frac{1}{2} \cdot 2^{2001}=2^{2000}$.
|
2^{2000}
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
Find the number of ways to choose two nonempty subsets $X$ and $Y$ of $\{1,2, \ldots, 2001\}$, such that $|Y|=1001$ and the smallest element of $Y$ is equal to the largest element of $X$.
|
Answer: $2^{2000}$
We claim that there is a bijection between pairs $(X, Y)$ and sets $S$ with at least 1001 elements. To get $S$ from $X$ and $Y$, take $S=X \cup Y$, which contains $Y$ and thus has at least 1001 elements. To form $(X, Y)$ from $S$, make $Y$ the largest 1001 elements of $S$, and make $X$ everything except the largest 1000 elements of $S$. Therefore we need to count the number of subsets of $\{1,2, \ldots, 2001\}$ with at least 1001 elements. For every subset of $\{1,2, \ldots, 2001\}$, either it or its complement has at least 1001 elements, so number of possible subsets is $\frac{1}{2} \cdot 2^{2001}=2^{2000}$.
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-guts-solutions.jsonl",
"problem_match": "\n26. [13]",
"solution_match": "\nProposed by: Allen Liu\n"
}
|
691eb6ed-17cf-5951-8887-9868d1f91bd5
| 609,609
|
Let $r_{1}, r_{2}, r_{3}, r_{4}$ be the four roots of the polynomial $x^{4}-4 x^{3}+8 x^{2}-7 x+3$. Find the value of
$$
\frac{r_{1}^{2}}{r_{2}^{2}+r_{3}^{2}+r_{4}^{2}}+\frac{r_{2}^{2}}{r_{1}^{2}+r_{3}^{2}+r_{4}^{2}}+\frac{r_{3}^{2}}{r_{1}^{2}+r_{2}^{2}+r_{4}^{2}}+\frac{r_{4}^{2}}{r_{1}^{2}+r_{2}^{2}+r_{3}^{2}}
$$
|
Answer: -4
Add 1 to each fraction to get
$$
\frac{r_{1}^{2}+r_{2}^{2}+r_{3}^{2}+r_{4}^{2}}{r_{2}^{2}+r_{3}^{2}+r_{4}^{2}}+\frac{r_{1}^{2}+r_{2}^{2}+r_{3}^{2}+r_{4}^{2}}{r_{1}^{2}+r_{3}^{2}+r_{4}^{2}}+\frac{r_{1}^{2}+r_{2}^{2}+r_{3}^{2}+r_{4}^{2}}{r_{1}^{2}+r_{2}^{2}+r_{4}^{2}}+\frac{r_{1}^{2}+r_{2}^{2}+r_{3}^{2}+r_{4}^{2}}{r_{1}^{2}+r_{2}^{2}+r_{3}^{2}}
$$
This seems like a difficult problem until one realizes that
$$
r_{1}^{2}+r_{2}^{2}+r_{3}^{2}+r_{4}^{2}=\left(r_{1}+r_{2}+r_{3}+r_{4}\right)^{2}-2\left(r_{1} r_{2}+r_{1} r_{3}+r_{1} r_{4}+r_{2} r_{3}+r_{2} r_{4}+r_{3} r_{4}\right)=4^{2}-2 \cdot 8=0
$$
Thus, our current expression is 0 . Noting that we added 4 , the original value had to be -4 .
|
-4
|
Yes
|
Yes
|
math-word-problem
|
Algebra
|
Let $r_{1}, r_{2}, r_{3}, r_{4}$ be the four roots of the polynomial $x^{4}-4 x^{3}+8 x^{2}-7 x+3$. Find the value of
$$
\frac{r_{1}^{2}}{r_{2}^{2}+r_{3}^{2}+r_{4}^{2}}+\frac{r_{2}^{2}}{r_{1}^{2}+r_{3}^{2}+r_{4}^{2}}+\frac{r_{3}^{2}}{r_{1}^{2}+r_{2}^{2}+r_{4}^{2}}+\frac{r_{4}^{2}}{r_{1}^{2}+r_{2}^{2}+r_{3}^{2}}
$$
|
Answer: -4
Add 1 to each fraction to get
$$
\frac{r_{1}^{2}+r_{2}^{2}+r_{3}^{2}+r_{4}^{2}}{r_{2}^{2}+r_{3}^{2}+r_{4}^{2}}+\frac{r_{1}^{2}+r_{2}^{2}+r_{3}^{2}+r_{4}^{2}}{r_{1}^{2}+r_{3}^{2}+r_{4}^{2}}+\frac{r_{1}^{2}+r_{2}^{2}+r_{3}^{2}+r_{4}^{2}}{r_{1}^{2}+r_{2}^{2}+r_{4}^{2}}+\frac{r_{1}^{2}+r_{2}^{2}+r_{3}^{2}+r_{4}^{2}}{r_{1}^{2}+r_{2}^{2}+r_{3}^{2}}
$$
This seems like a difficult problem until one realizes that
$$
r_{1}^{2}+r_{2}^{2}+r_{3}^{2}+r_{4}^{2}=\left(r_{1}+r_{2}+r_{3}+r_{4}\right)^{2}-2\left(r_{1} r_{2}+r_{1} r_{3}+r_{1} r_{4}+r_{2} r_{3}+r_{2} r_{4}+r_{3} r_{4}\right)=4^{2}-2 \cdot 8=0
$$
Thus, our current expression is 0 . Noting that we added 4 , the original value had to be -4 .
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-guts-solutions.jsonl",
"problem_match": "\n27. [13]",
"solution_match": "\nProposed by: Henrik Boecken\n"
}
|
e04b9039-dc61-5e1e-bebb-1150b0da7654
| 609,610
|
The numbers $1-10$ are written in a circle randomly. Find the expected number of numbers which are at least 2 larger than an adjacent number.
|
## Answer: $\frac{17}{3}$
For $1 \leq i \leq 10$, let $X_{i}$ be the random variable that is 1 if the $i$ in the circle is at least 2 larger than one of its neighbors, and 0 otherwise. The random variable representing number of numbers that are at least 2 larger than one of their neighbors is then just $X_{1}+X_{2}+\cdots+X_{10}$. The expected value $\mathbb{E}\left[X_{1}+X_{2}+\cdots+X_{10}\right]$ is equal to $\mathbb{E}\left[X_{1}\right]+\mathbb{E}\left[X_{2}\right]+\cdots+\mathbb{E}\left[X_{10}\right]$ by the linearity of expectation, so it suffices to compute $\mathbb{E}\left[X_{i}\right]$ for all $1 \leq i \leq 10$.
By the definition of expected value, $\mathbb{E}\left[X_{i}\right]=1 \cdot P$ (the $i$ is at least 2 larger than one of its neighbors $)+0$. $P($ it is not at least 2 larger than either of its neighbors $)=P($ the $i$ is at least 2 larger than one of its neighbors $)=$ $1-P$ (the $i$ is at most 1 larger than both of its neighbors). For the last probability, $i$ 's neighbors must be drawn from the set $\{\max (1, i-1), \max (1, i-1)+1, \ldots, 10\}$, excluding $i$ itself. This set has $10-\max (1, i-1)$ elements, so there are a total of $\binom{10-\max (1, i-1)}{2}$ sets of two neighbors for $i$ that satisfy the condition, out of a total of $\binom{9}{2}$ possible sets of two neighbors from all of the numbers that are not $i$. The last probability is then $\frac{\binom{10-\max (1, i-1)}{2}}{\binom{9}{2}}$, so $\mathbb{E}\left[X_{i}\right]=1-\frac{\binom{10-\max (1, i-1)}{2}}{\binom{9}{2}}$.
The final sum we wish to calculate then becomes $\left(1-\frac{\binom{9}{2}}{\binom{9}{2}}\right)+\left(1-\frac{\binom{9}{2}}{\binom{9}{2}}\right)+\left(1-\frac{\binom{8}{2}}{\binom{9}{2}}\right)+\left(1-\frac{\binom{7}{2}}{\binom{9}{2}}\right)+\cdots+\left(1-\frac{\binom{1}{2}}{\binom{9}{2}}\right)=$ $0+0+\left(1-\frac{28}{36}\right)+\left(1-\frac{21}{36}\right)+\cdots+(1-0)=\frac{17}{3}$.
|
\frac{17}{3}
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
The numbers $1-10$ are written in a circle randomly. Find the expected number of numbers which are at least 2 larger than an adjacent number.
|
## Answer: $\frac{17}{3}$
For $1 \leq i \leq 10$, let $X_{i}$ be the random variable that is 1 if the $i$ in the circle is at least 2 larger than one of its neighbors, and 0 otherwise. The random variable representing number of numbers that are at least 2 larger than one of their neighbors is then just $X_{1}+X_{2}+\cdots+X_{10}$. The expected value $\mathbb{E}\left[X_{1}+X_{2}+\cdots+X_{10}\right]$ is equal to $\mathbb{E}\left[X_{1}\right]+\mathbb{E}\left[X_{2}\right]+\cdots+\mathbb{E}\left[X_{10}\right]$ by the linearity of expectation, so it suffices to compute $\mathbb{E}\left[X_{i}\right]$ for all $1 \leq i \leq 10$.
By the definition of expected value, $\mathbb{E}\left[X_{i}\right]=1 \cdot P$ (the $i$ is at least 2 larger than one of its neighbors $)+0$. $P($ it is not at least 2 larger than either of its neighbors $)=P($ the $i$ is at least 2 larger than one of its neighbors $)=$ $1-P$ (the $i$ is at most 1 larger than both of its neighbors). For the last probability, $i$ 's neighbors must be drawn from the set $\{\max (1, i-1), \max (1, i-1)+1, \ldots, 10\}$, excluding $i$ itself. This set has $10-\max (1, i-1)$ elements, so there are a total of $\binom{10-\max (1, i-1)}{2}$ sets of two neighbors for $i$ that satisfy the condition, out of a total of $\binom{9}{2}$ possible sets of two neighbors from all of the numbers that are not $i$. The last probability is then $\frac{\binom{10-\max (1, i-1)}{2}}{\binom{9}{2}}$, so $\mathbb{E}\left[X_{i}\right]=1-\frac{\binom{10-\max (1, i-1)}{2}}{\binom{9}{2}}$.
The final sum we wish to calculate then becomes $\left(1-\frac{\binom{9}{2}}{\binom{9}{2}}\right)+\left(1-\frac{\binom{9}{2}}{\binom{9}{2}}\right)+\left(1-\frac{\binom{8}{2}}{\binom{9}{2}}\right)+\left(1-\frac{\binom{7}{2}}{\binom{9}{2}}\right)+\cdots+\left(1-\frac{\binom{1}{2}}{\binom{9}{2}}\right)=$ $0+0+\left(1-\frac{28}{36}\right)+\left(1-\frac{21}{36}\right)+\cdots+(1-0)=\frac{17}{3}$.
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-guts-solutions.jsonl",
"problem_match": "\n28. [15]",
"solution_match": "\nProposed by: Shyam Narayanan\n\n"
}
|
498c90b6-227a-52ad-a22e-40ca72741c84
| 609,611
|
We want to design a new chess piece, the American, with the property that (i) the American can never attack itself, and (ii) if an American $A_{1}$ attacks another American $A_{2}$, then $A_{2}$ also attacks $A_{1}$. Let $m$ be the number of squares that an American attacks when placed in the top left corner of an 8 by 8 chessboard. Let $n$ be the maximal number of Americans that can be placed on the 8 by 8 chessboard such that no Americans attack each other, if one American must be in the top left corner. Find the largest possible value of $m n$.
|
Answer: 1024
Since one of the Americans must be in the top left corner, that eliminates $m$ squares from consideration for placing additional Americans. So $m+n$ is at most 64, which implies $m n$ can be at most 1024. To achieve 1024, we can color a chessboard the normal way, and say that an American attacks all squares of the opposite color. Then the American in the top left corner attacks the 32 squares of the opposite color, and placing all Americans on the squares of the same color as the top-left corner guarantees no Americans attack each other.
|
1024
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
We want to design a new chess piece, the American, with the property that (i) the American can never attack itself, and (ii) if an American $A_{1}$ attacks another American $A_{2}$, then $A_{2}$ also attacks $A_{1}$. Let $m$ be the number of squares that an American attacks when placed in the top left corner of an 8 by 8 chessboard. Let $n$ be the maximal number of Americans that can be placed on the 8 by 8 chessboard such that no Americans attack each other, if one American must be in the top left corner. Find the largest possible value of $m n$.
|
Answer: 1024
Since one of the Americans must be in the top left corner, that eliminates $m$ squares from consideration for placing additional Americans. So $m+n$ is at most 64, which implies $m n$ can be at most 1024. To achieve 1024, we can color a chessboard the normal way, and say that an American attacks all squares of the opposite color. Then the American in the top left corner attacks the 32 squares of the opposite color, and placing all Americans on the squares of the same color as the top-left corner guarantees no Americans attack each other.
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-guts-solutions.jsonl",
"problem_match": "\n29. [15]",
"solution_match": "\nProposed by: Kevin Yang\n"
}
|
d34da3ee-6684-5966-a800-d8d30f4696d6
| 609,612
|
On the blackboard, Amy writes 2017 in base- $a$ to get $133201_{a}$. Betsy notices she can erase a digit from Amy's number and change the base to base-b such that the value of the the number remains the same. Catherine then notices she can erase a digit from Betsy's number and change the base to base- $c$ such that the value still remains the same. Compute, in decimal, $a+b+c$.
|
Answer: 22
$2017=133201_{4}=13201_{6}=1201_{12}$
|
22
|
Yes
|
Yes
|
math-word-problem
|
Number Theory
|
On the blackboard, Amy writes 2017 in base- $a$ to get $133201_{a}$. Betsy notices she can erase a digit from Amy's number and change the base to base-b such that the value of the the number remains the same. Catherine then notices she can erase a digit from Betsy's number and change the base to base- $c$ such that the value still remains the same. Compute, in decimal, $a+b+c$.
|
Answer: 22
$2017=133201_{4}=13201_{6}=1201_{12}$
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-guts-solutions.jsonl",
"problem_match": "\n30. [15]",
"solution_match": "\nProposed by: Daniel Qu\n"
}
|
de3eff1a-fdca-5a67-8536-24b9d69f829d
| 609,613
|
Define a number to be an anti-palindrome if, when written in base 3 as $a_{n} a_{n-1} \ldots a_{0}$, then $a_{i}+a_{n-i}=$ 2 for any $0 \leq i \leq n$. Find the number of anti-palindromes less than $3^{12}$ such that no two consecutive digits in base 3 are equal.
|
Answer: 126
Note once the middle digit/pair of digits is determined, it suffices to choose the digits in the left half of the number and ensure no pair of consecutive digits are equal. For a number with an even number of digits, the middle pair is 02 or 20 while for a number with an odd number of digits, the middle digit is 1 . We can now count recursively.
Let $a_{n}$ be the number of ways to choose $n$ digits no two of which are consecutive and equal such that the leading digit is nonzero and the ending digit is 1 . Let $b_{n}$ be the number ways to do the same such that the ending digit is 0 or 2 .
Note $a_{n}=b_{n-1}$. Also $b_{n}=b_{n-1}+2 a_{n-1}$.
Solving for the terms of the sequence, they are $a_{1}=1, a_{2}=b_{1}=1, a_{3}=b_{2}=3, a_{4}=b_{3}=5, a_{5}=b_{4}=$ $11, a_{6}=b_{5}=21, b_{6}=43$. Therefore, there are 43 twelve-digit numbers satisfying the condition, 21 eleven-digit numbers, 21 ten-digit numbers.... and 1 one-digit number. The sum of these values gives us a final answer of 126
|
126
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
Define a number to be an anti-palindrome if, when written in base 3 as $a_{n} a_{n-1} \ldots a_{0}$, then $a_{i}+a_{n-i}=$ 2 for any $0 \leq i \leq n$. Find the number of anti-palindromes less than $3^{12}$ such that no two consecutive digits in base 3 are equal.
|
Answer: 126
Note once the middle digit/pair of digits is determined, it suffices to choose the digits in the left half of the number and ensure no pair of consecutive digits are equal. For a number with an even number of digits, the middle pair is 02 or 20 while for a number with an odd number of digits, the middle digit is 1 . We can now count recursively.
Let $a_{n}$ be the number of ways to choose $n$ digits no two of which are consecutive and equal such that the leading digit is nonzero and the ending digit is 1 . Let $b_{n}$ be the number ways to do the same such that the ending digit is 0 or 2 .
Note $a_{n}=b_{n-1}$. Also $b_{n}=b_{n-1}+2 a_{n-1}$.
Solving for the terms of the sequence, they are $a_{1}=1, a_{2}=b_{1}=1, a_{3}=b_{2}=3, a_{4}=b_{3}=5, a_{5}=b_{4}=$ $11, a_{6}=b_{5}=21, b_{6}=43$. Therefore, there are 43 twelve-digit numbers satisfying the condition, 21 eleven-digit numbers, 21 ten-digit numbers.... and 1 one-digit number. The sum of these values gives us a final answer of 126
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-guts-solutions.jsonl",
"problem_match": "\n31. $[\\mathbf{1 7}]$",
"solution_match": "\nProposed by: Shyam Narayanan\n"
}
|
306f906e-4cea-5a40-8fa7-dbf5e6a74629
| 609,614
|
Let $C_{k, n}$ denote the number of paths on the Cartesian plane along which you can travel from $(0,0)$ to $(k, n)$, given the following rules: 1) You can only travel directly upward or directly rightward 2) You can only change direction at lattice points 3) Each horizontal segment in the path must be at most 99 units long.
Find
$$
\sum_{j=0}^{\infty} C_{100 j+19,17}
$$
|
Answer: $100^{17}$
If we are traveling from $(0,0)$ to $(n, 17)$, we first travel $x_{0}$ rightwards, then up one, then $x_{1}$ rightwards, then up one, $\ldots$, until we finally travel $x_{17}$ rightwards. $x_{0}, \ldots, x_{17}$ are all at most 99 by our constraint, but can equal 0 . Given that $x_{0}, \ldots, x_{16}$ are fixed, there is exactly one way to choose $x_{17}$ so that $x_{0}+\ldots+x_{17}$ is congruent to $19 \bmod 100$. Then, this means that the sum equals the total number of ways to choose $x_{0}, \ldots, x_{16}$, which equals $100^{17}=10^{34}$.
|
10^{34}
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
Let $C_{k, n}$ denote the number of paths on the Cartesian plane along which you can travel from $(0,0)$ to $(k, n)$, given the following rules: 1) You can only travel directly upward or directly rightward 2) You can only change direction at lattice points 3) Each horizontal segment in the path must be at most 99 units long.
Find
$$
\sum_{j=0}^{\infty} C_{100 j+19,17}
$$
|
Answer: $100^{17}$
If we are traveling from $(0,0)$ to $(n, 17)$, we first travel $x_{0}$ rightwards, then up one, then $x_{1}$ rightwards, then up one, $\ldots$, until we finally travel $x_{17}$ rightwards. $x_{0}, \ldots, x_{17}$ are all at most 99 by our constraint, but can equal 0 . Given that $x_{0}, \ldots, x_{16}$ are fixed, there is exactly one way to choose $x_{17}$ so that $x_{0}+\ldots+x_{17}$ is congruent to $19 \bmod 100$. Then, this means that the sum equals the total number of ways to choose $x_{0}, \ldots, x_{16}$, which equals $100^{17}=10^{34}$.
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-guts-solutions.jsonl",
"problem_match": "\n32. [17]",
"solution_match": "\nProposed by: Saranesh Prembabu\n"
}
|
5ca5463b-9226-57ee-a06d-eb430accdf53
| 609,615
|
Camille the snail lives on the surface of a regular dodecahedron. Right now he is on vertex $P_{1}$ of the face with vertices $P_{1}, P_{2}, P_{3}, P_{4}, P_{5}$. This face has a perimeter of 5 . Camille wants to get to the point on the dodecahedron farthest away from $P_{1}$. To do so, he must travel along the surface a distance at least $L$. What is $L^{2}$ ?
|
Answer: $\frac{17+7 \sqrt{5}}{2}$
Consider the net of the dodecahedron. It suffices to look at three pentagons $A B C D E, E D F G H$, and $G F I J K$, where $A J=L$. This can be found by the law of cosines on triangle $A E J$. We have $A E=1$, $E J=\tan 72^{\circ}$, and $\angle A E J=162^{\circ}$. Thus $L^{2}=1+\tan ^{2} 72^{\circ}+2 \cdot \tan 72^{\circ} \cdot \cos 18^{\circ}=\frac{17+7 \sqrt{5}}{2}$
|
\frac{17+7 \sqrt{5}}{2}
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
Camille the snail lives on the surface of a regular dodecahedron. Right now he is on vertex $P_{1}$ of the face with vertices $P_{1}, P_{2}, P_{3}, P_{4}, P_{5}$. This face has a perimeter of 5 . Camille wants to get to the point on the dodecahedron farthest away from $P_{1}$. To do so, he must travel along the surface a distance at least $L$. What is $L^{2}$ ?
|
Answer: $\frac{17+7 \sqrt{5}}{2}$
Consider the net of the dodecahedron. It suffices to look at three pentagons $A B C D E, E D F G H$, and $G F I J K$, where $A J=L$. This can be found by the law of cosines on triangle $A E J$. We have $A E=1$, $E J=\tan 72^{\circ}$, and $\angle A E J=162^{\circ}$. Thus $L^{2}=1+\tan ^{2} 72^{\circ}+2 \cdot \tan 72^{\circ} \cdot \cos 18^{\circ}=\frac{17+7 \sqrt{5}}{2}$
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-guts-solutions.jsonl",
"problem_match": "\n33. [17]",
"solution_match": "\nProposed by: Saranesh Prembabu\n"
}
|
017cefa6-bdcc-5e43-9c92-eed3d8583dc5
| 609,616
|
Find the number of positive integers less than 1000000 which are less than or equal to the sum of their proper divisors. If your answer is $X$ and the actual value is $Y$, your score will be $\max \left(0,20-80\left|1-\frac{X}{Y}\right|\right)$ rounded to the nearest integer.
|
Answer: 247548
```
N = 1000000
s = [0] * N
ans = 0
for i in range(1, N):
if i <= s[i]:
ans += 1
for j in range(i + i, N, i):
s[j] += i
print(ans)
```
|
247548
|
Yes
|
Yes
|
math-word-problem
|
Number Theory
|
Find the number of positive integers less than 1000000 which are less than or equal to the sum of their proper divisors. If your answer is $X$ and the actual value is $Y$, your score will be $\max \left(0,20-80\left|1-\frac{X}{Y}\right|\right)$ rounded to the nearest integer.
|
Answer: 247548
```
N = 1000000
s = [0] * N
ans = 0
for i in range(1, N):
if i <= s[i]:
ans += 1
for j in range(i + i, N, i):
s[j] += i
print(ans)
```
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-guts-solutions.jsonl",
"problem_match": "\n36. [20]",
"solution_match": "\nProposed by: Allen Liu\n"
}
|
d5d059af-f361-564f-a406-360da8871e4b
| 609,619
|
Two circles centered at $O_{1}$ and $O_{2}$ have radii 2 and 3 and are externally tangent at $P$. The common external tangent of the two circles intersects the line $O_{1} O_{2}$ at $Q$. What is the length of $P Q$ ?
|
Answer: 12
Let the common external tangent intersect the circles centered at $O_{1}, O_{2}$ at $X, Y$ respectively. Then $\frac{O_{2} Q}{O_{1} Q}=\frac{O Y}{O X}=\frac{3}{2}$, so $\frac{O_{1} O_{2}}{O_{1} Q}=\frac{O_{2} Q-O_{1} Q}{O_{1} Q}=\frac{1}{2}$. Since $O_{1} O_{2}=2+3=5, O_{1} Q=10$ and hence $P Q=O_{1} Q+O_{1} P=12$.
|
12
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
Two circles centered at $O_{1}$ and $O_{2}$ have radii 2 and 3 and are externally tangent at $P$. The common external tangent of the two circles intersects the line $O_{1} O_{2}$ at $Q$. What is the length of $P Q$ ?
|
Answer: 12
Let the common external tangent intersect the circles centered at $O_{1}, O_{2}$ at $X, Y$ respectively. Then $\frac{O_{2} Q}{O_{1} Q}=\frac{O Y}{O X}=\frac{3}{2}$, so $\frac{O_{1} O_{2}}{O_{1} Q}=\frac{O_{2} Q-O_{1} Q}{O_{1} Q}=\frac{1}{2}$. Since $O_{1} O_{2}=2+3=5, O_{1} Q=10$ and hence $P Q=O_{1} Q+O_{1} P=12$.
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-team-solutions.jsonl",
"problem_match": "\n1. [3]",
"solution_match": "\nProposed by: Eshaan Nichani\n"
}
|
3564dcb9-d46d-5265-bc0a-0ab12095cf4a
| 609,620
|
What is the smallest possible perimeter of a triangle whose side lengths are all squares of distinct positive integers?
|
Answer: 77
There exist a triangle with side lengths $4^{2}, 5^{2}, 6^{2}$, which has perimeter 77 . If the sides have lengths $a^{2}, b^{2}, c^{2}$ with $0<a<b<c$, then $a^{2}+b^{2}>c^{2}$ by the triangle inequality. Therefore $(b-1)^{2}+b^{2} \geq$ $a^{2}+b^{2}>c^{2} \geq(b+1)^{2}$. Solving this inequality gives $b>4$. If $b \geq 6$, then $a^{2}+b^{2}+c^{2} \geq 6^{2}+7^{2}>7 \overline{7}$. If $b=5$, then $c \geq 7$ is impossible, while $c=6$ forces $a=4$, which gives a perimeter of 77 .
|
77
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
What is the smallest possible perimeter of a triangle whose side lengths are all squares of distinct positive integers?
|
Answer: 77
There exist a triangle with side lengths $4^{2}, 5^{2}, 6^{2}$, which has perimeter 77 . If the sides have lengths $a^{2}, b^{2}, c^{2}$ with $0<a<b<c$, then $a^{2}+b^{2}>c^{2}$ by the triangle inequality. Therefore $(b-1)^{2}+b^{2} \geq$ $a^{2}+b^{2}>c^{2} \geq(b+1)^{2}$. Solving this inequality gives $b>4$. If $b \geq 6$, then $a^{2}+b^{2}+c^{2} \geq 6^{2}+7^{2}>7 \overline{7}$. If $b=5$, then $c \geq 7$ is impossible, while $c=6$ forces $a=4$, which gives a perimeter of 77 .
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-team-solutions.jsonl",
"problem_match": "\n2. [3]",
"solution_match": "\nProposed by: Eshaan Nichani\n"
}
|
abb36916-f318-50c8-9d0b-dd15ad84dd07
| 76,225
|
Complex number $\omega$ satisfies $\omega^{5}=2$. Find the sum of all possible values of
$$
\omega^{4}+\omega^{3}+\omega^{2}+\omega+1
$$
|
## Answer: 5
The value of $\omega^{4}+\omega^{3}+\omega^{2}+\omega+1=\frac{\omega^{5}-1}{\omega-1}=\frac{1}{\omega-1}$. The sum of these values is therefore the sum of $\frac{1}{\omega-1}$ over the five roots $\omega$. Substituting $z=\omega-1$, we have that $(z+1)^{5}=2$, so $z^{5}+5 z^{4}+10 z^{3}+$ $10 z^{2}+5 z-1=0$. The sum of the reciprocals of the roots of this equation is $-\frac{5}{-1}=5$ by Vieta's.
|
5
|
Yes
|
Yes
|
math-word-problem
|
Algebra
|
Complex number $\omega$ satisfies $\omega^{5}=2$. Find the sum of all possible values of
$$
\omega^{4}+\omega^{3}+\omega^{2}+\omega+1
$$
|
## Answer: 5
The value of $\omega^{4}+\omega^{3}+\omega^{2}+\omega+1=\frac{\omega^{5}-1}{\omega-1}=\frac{1}{\omega-1}$. The sum of these values is therefore the sum of $\frac{1}{\omega-1}$ over the five roots $\omega$. Substituting $z=\omega-1$, we have that $(z+1)^{5}=2$, so $z^{5}+5 z^{4}+10 z^{3}+$ $10 z^{2}+5 z-1=0$. The sum of the reciprocals of the roots of this equation is $-\frac{5}{-1}=5$ by Vieta's.
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-team-solutions.jsonl",
"problem_match": "\n3. [3]",
"solution_match": "\nProposed by: Henrik Boecken\n\n"
}
|
9eb2ebc7-f314-5eb9-b25c-ba1052ee73ee
| 609,621
|
Meghal is playing a game with 2016 rounds $1,2, \cdots, 2016$. In round $n$, two rectangular double-sided mirrors are arranged such that they share a common edge and the angle between the faces is $\frac{2 \pi}{n+2}$. Meghal shoots a laser at these mirrors and her score for the round is the number of points on the two mirrors at which the laser beam touches a mirror. What is the maximum possible score Meghal could have after she finishes the game?
|
Answer: 1019088
Let points $O, A_{1}, A_{2}$ lie in a plane such that $\angle A_{1} O A_{2}=\frac{2 \pi}{n+2}$. We represent the mirrors as line segments extending between $O$ and $A_{1}$, and $O$ and $A_{2}$. Also let points $A_{3}, A_{4}, \cdots, A_{n+2}$ lie in the plane such that $A_{i+1}$ is the reflection of $A_{i-1}$ over $O A_{i}$.
If Meghal shoots a laser along line $l$ such that the first point of contact with a mirror is along $O A_{2}$, the next point of contact, if it exists, is the point on $O A_{1}$ that is a reflection of the intersection of $l$ with $O A_{3}$. If we continue this logic, we find that the maximum score for round $n$ is equal to the maximum number of intersection points between $l$ and $O A_{i}$ for some $i$. We do casework on whether $n$ is even or odd. If $n$ is even, there are at most $\frac{n+2}{2}$ spokes such that $l$ can hit $O A_{i}$, and if $n$ is odd, there are at most $\frac{n+3}{2}$ such spokes. Then we must sum $2+2+3+3+\cdots+1009+1009=1009 \cdot 1010-1-1=1019088$.
|
1019088
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
Meghal is playing a game with 2016 rounds $1,2, \cdots, 2016$. In round $n$, two rectangular double-sided mirrors are arranged such that they share a common edge and the angle between the faces is $\frac{2 \pi}{n+2}$. Meghal shoots a laser at these mirrors and her score for the round is the number of points on the two mirrors at which the laser beam touches a mirror. What is the maximum possible score Meghal could have after she finishes the game?
|
Answer: 1019088
Let points $O, A_{1}, A_{2}$ lie in a plane such that $\angle A_{1} O A_{2}=\frac{2 \pi}{n+2}$. We represent the mirrors as line segments extending between $O$ and $A_{1}$, and $O$ and $A_{2}$. Also let points $A_{3}, A_{4}, \cdots, A_{n+2}$ lie in the plane such that $A_{i+1}$ is the reflection of $A_{i-1}$ over $O A_{i}$.
If Meghal shoots a laser along line $l$ such that the first point of contact with a mirror is along $O A_{2}$, the next point of contact, if it exists, is the point on $O A_{1}$ that is a reflection of the intersection of $l$ with $O A_{3}$. If we continue this logic, we find that the maximum score for round $n$ is equal to the maximum number of intersection points between $l$ and $O A_{i}$ for some $i$. We do casework on whether $n$ is even or odd. If $n$ is even, there are at most $\frac{n+2}{2}$ spokes such that $l$ can hit $O A_{i}$, and if $n$ is odd, there are at most $\frac{n+3}{2}$ such spokes. Then we must sum $2+2+3+3+\cdots+1009+1009=1009 \cdot 1010-1-1=1019088$.
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-team-solutions.jsonl",
"problem_match": "\n4. [5]",
"solution_match": "\nProposed by: Rachel Zhang\n"
}
|
ffd157d9-0c4b-57f4-9411-231741c6f511
| 609,622
|
Allen and Brian are playing a game in which they roll a 6 -sided die until one of them wins. Allen wins if two consecutive rolls are equal and at most 3 . Brian wins if two consecutive rolls add up to 7 and the latter is at most 3 . What is the probability that Allen wins?
|
Answer: $5 / 12$
Note that at any point in the game after the first roll, the probability that Allen wins depends only on the most recent roll, and not on any rolls before that one. So we may define $p$ as the probability that Allen wins at any point in the game, given that the last roll was a 1,2 , or 3 , and $q$ as the probability that he wins given that the last roll was a 4,5 , or 6 .
Suppose at some point, the last roll was $r_{1} \in\{1,2,3\}$, and the next roll is $r_{2} \in\{1,2,3,4,5,6\}$. By the definition of $p$, Allen wins with probability $p$. Furthermore, if $r_{2}=r_{1}$, which happens with probability $\frac{1}{6}$, Allen wins. If $r_{2} \in\{1,2,3\}$ but $r_{2} \neq r_{1}$, which happens with probability $\frac{2}{6}$, neither Allen nor Brian wins, so they continue playing the game, now where the last roll was $r_{2}$. In this case, Allen wins with probability $p$. If $r_{2} \in\{4,5,6\}$, which happens with probability $\frac{3}{6}$, neither Allen nor Brian wins, so they continue playing, now where the last roll was $r_{2}$. In this case, Allen wins with probability $q$. Hence, the probability that Allen wins in this case can be expressed as $\frac{1}{6}+\frac{2}{6} p+\frac{3}{6} q$, and thus
$$
p=\frac{1}{6}+\frac{2}{6} p+\frac{3}{6} q
$$
By a similar analysis for $q$, we find that
$$
q=\frac{1}{6} \cdot 0+\frac{2}{6} p+\frac{3}{6} q
$$
Solving, we get $p=\frac{1}{2}$ and $q=\frac{1}{3}$. Allen wins with probability $p=\frac{1}{2}$ if the first roll is 1,2 , or 3 , and he wins with probability $q=\frac{1}{3}$ if the first roll is 4,5 , or 6 . We conclude that the overall probability that he wins the game is $\frac{1}{2} p+\frac{1}{2} q=\frac{5}{12}$.
|
\frac{5}{12}
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
Allen and Brian are playing a game in which they roll a 6 -sided die until one of them wins. Allen wins if two consecutive rolls are equal and at most 3 . Brian wins if two consecutive rolls add up to 7 and the latter is at most 3 . What is the probability that Allen wins?
|
Answer: $5 / 12$
Note that at any point in the game after the first roll, the probability that Allen wins depends only on the most recent roll, and not on any rolls before that one. So we may define $p$ as the probability that Allen wins at any point in the game, given that the last roll was a 1,2 , or 3 , and $q$ as the probability that he wins given that the last roll was a 4,5 , or 6 .
Suppose at some point, the last roll was $r_{1} \in\{1,2,3\}$, and the next roll is $r_{2} \in\{1,2,3,4,5,6\}$. By the definition of $p$, Allen wins with probability $p$. Furthermore, if $r_{2}=r_{1}$, which happens with probability $\frac{1}{6}$, Allen wins. If $r_{2} \in\{1,2,3\}$ but $r_{2} \neq r_{1}$, which happens with probability $\frac{2}{6}$, neither Allen nor Brian wins, so they continue playing the game, now where the last roll was $r_{2}$. In this case, Allen wins with probability $p$. If $r_{2} \in\{4,5,6\}$, which happens with probability $\frac{3}{6}$, neither Allen nor Brian wins, so they continue playing, now where the last roll was $r_{2}$. In this case, Allen wins with probability $q$. Hence, the probability that Allen wins in this case can be expressed as $\frac{1}{6}+\frac{2}{6} p+\frac{3}{6} q$, and thus
$$
p=\frac{1}{6}+\frac{2}{6} p+\frac{3}{6} q
$$
By a similar analysis for $q$, we find that
$$
q=\frac{1}{6} \cdot 0+\frac{2}{6} p+\frac{3}{6} q
$$
Solving, we get $p=\frac{1}{2}$ and $q=\frac{1}{3}$. Allen wins with probability $p=\frac{1}{2}$ if the first roll is 1,2 , or 3 , and he wins with probability $q=\frac{1}{3}$ if the first roll is 4,5 , or 6 . We conclude that the overall probability that he wins the game is $\frac{1}{2} p+\frac{1}{2} q=\frac{5}{12}$.
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-team-solutions.jsonl",
"problem_match": "\n5. [5]",
"solution_match": "\nProposed by: Eshaan Nichani\n"
}
|
ec5aea94-3df3-59b2-951c-85a54debe066
| 609,623
|
Let $A B C$ be a triangle with $A B=5, B C=6$, and $A C=7$. Let its orthocenter be $H$ and the feet of the altitudes from $A, B, C$ to the opposite sides be $D, E, F$ respectively. Let the line $D F$ intersect the circumcircle of $A H F$ again at $X$. Find the length of $E X$.
|
## Answer: $\frac{190}{49}$
Since $\angle A F H=\angle A E H=90^{\circ}, E$ is on the circumcircle of $A H F$. So $\angle X E H=\angle H F D=\angle H B D$, which implies that $X E \| B D$. Hence $\frac{E X}{B D}=\frac{E Y}{Y B}$. Let $D F$ and $B E$ intersect at $Y$. Note that $\angle E D Y=180^{\circ}-\angle B D F-\angle C D E=180^{\circ}-2 \angle A$, and $\angle B D Y=\angle A$. Applying the sine rule to $E Y D$ and $B Y D$, we get
$$
\frac{E Y}{Y B}=\frac{E D}{B D} \cdot \frac{\sin \angle E D Y}{\sin \angle B D Y}=\frac{E D}{B D} \cdot \frac{\sin 2 \angle A}{\sin \angle A}=\frac{E D}{B D} \cdot 2 \cos \angle A
$$
Next, letting $x=C D$ and $y=A E$, by Pythagoras we have
$$
\begin{aligned}
& A B^{2}-(6-x)^{2}=A D^{2}=A C^{2}-x^{2} \\
& B C^{2}-(7-y)^{2}=B E^{2}=B A^{2}-y^{2}
\end{aligned}
$$
Solving, we get $x=5, y=\frac{19}{7}$. Drop the perpendicular from $E$ to $D C$ at $Z$. Then $E D \cos \angle A=$ $E D \cos \angle E D Z=D Z$. But $A D \| E Z$, so $D Z=\frac{A E}{A C} \cdot D C=\frac{95}{49}$. Therefore
$$
E X=\frac{E Y}{Y B} \cdot B D=2 E D \cos \angle A=2 D Z=\frac{190}{49}
$$
|
\frac{190}{49}
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
Let $A B C$ be a triangle with $A B=5, B C=6$, and $A C=7$. Let its orthocenter be $H$ and the feet of the altitudes from $A, B, C$ to the opposite sides be $D, E, F$ respectively. Let the line $D F$ intersect the circumcircle of $A H F$ again at $X$. Find the length of $E X$.
|
## Answer: $\frac{190}{49}$
Since $\angle A F H=\angle A E H=90^{\circ}, E$ is on the circumcircle of $A H F$. So $\angle X E H=\angle H F D=\angle H B D$, which implies that $X E \| B D$. Hence $\frac{E X}{B D}=\frac{E Y}{Y B}$. Let $D F$ and $B E$ intersect at $Y$. Note that $\angle E D Y=180^{\circ}-\angle B D F-\angle C D E=180^{\circ}-2 \angle A$, and $\angle B D Y=\angle A$. Applying the sine rule to $E Y D$ and $B Y D$, we get
$$
\frac{E Y}{Y B}=\frac{E D}{B D} \cdot \frac{\sin \angle E D Y}{\sin \angle B D Y}=\frac{E D}{B D} \cdot \frac{\sin 2 \angle A}{\sin \angle A}=\frac{E D}{B D} \cdot 2 \cos \angle A
$$
Next, letting $x=C D$ and $y=A E$, by Pythagoras we have
$$
\begin{aligned}
& A B^{2}-(6-x)^{2}=A D^{2}=A C^{2}-x^{2} \\
& B C^{2}-(7-y)^{2}=B E^{2}=B A^{2}-y^{2}
\end{aligned}
$$
Solving, we get $x=5, y=\frac{19}{7}$. Drop the perpendicular from $E$ to $D C$ at $Z$. Then $E D \cos \angle A=$ $E D \cos \angle E D Z=D Z$. But $A D \| E Z$, so $D Z=\frac{A E}{A C} \cdot D C=\frac{95}{49}$. Therefore
$$
E X=\frac{E Y}{Y B} \cdot B D=2 E D \cos \angle A=2 D Z=\frac{190}{49}
$$
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-team-solutions.jsonl",
"problem_match": "\n6. [5]",
"solution_match": "\nProposed by: Allen Liu\n\n"
}
|
ebd24559-5d1f-568a-8ea4-75193c60feca
| 609,624
|
Rachel has two indistinguishable tokens, and places them on the first and second square of a $1 \times 6$ grid of squares, She can move the pieces in two ways:
- If a token has free square in front of it, then she can move this token one square to the right
- If the square immediately to the right of a token is occupied by the other token, then she can "leapfrog" the first token; she moves the first token two squares to the right, over the other token, so that it is on the square immediately to the right of the other token.
If a token reaches the 6th square, then it cannot move forward any more, and Rachel must move the other one until it reaches the 5th square. How many different sequences of moves for the tokens can Rachel make so that the two tokens end up on the 5 th square and the 6 th square?
|
Answer: 42
We put a marker on $(i, j)$ when a token is on $i$ th and $j$ th square and $i>j$. When the token in front/behind moves one step forward to a blank square, move the marker rightward/upward one unit correspondingly. When a "leapfrog" happens, the marker moves from $(x-1, x)$ to $(x, x+1)$. We can translate this movement into: 1. move the marker upward to $(x, x) ; 2$. move the marker rightward to $(x, x+1)$. Thus, we set up a lattice path way from $(2,1)$ to $(6,5)$ staying under $y=x$. This is a bijection since every intersection of the path way and $y=x$ indicates a "leapfrog". According to the definition of Catalan Number, the answer is the number of such lattice path ways, which is $C_{5}=42$.
|
42
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
Rachel has two indistinguishable tokens, and places them on the first and second square of a $1 \times 6$ grid of squares, She can move the pieces in two ways:
- If a token has free square in front of it, then she can move this token one square to the right
- If the square immediately to the right of a token is occupied by the other token, then she can "leapfrog" the first token; she moves the first token two squares to the right, over the other token, so that it is on the square immediately to the right of the other token.
If a token reaches the 6th square, then it cannot move forward any more, and Rachel must move the other one until it reaches the 5th square. How many different sequences of moves for the tokens can Rachel make so that the two tokens end up on the 5 th square and the 6 th square?
|
Answer: 42
We put a marker on $(i, j)$ when a token is on $i$ th and $j$ th square and $i>j$. When the token in front/behind moves one step forward to a blank square, move the marker rightward/upward one unit correspondingly. When a "leapfrog" happens, the marker moves from $(x-1, x)$ to $(x, x+1)$. We can translate this movement into: 1. move the marker upward to $(x, x) ; 2$. move the marker rightward to $(x, x+1)$. Thus, we set up a lattice path way from $(2,1)$ to $(6,5)$ staying under $y=x$. This is a bijection since every intersection of the path way and $y=x$ indicates a "leapfrog". According to the definition of Catalan Number, the answer is the number of such lattice path ways, which is $C_{5}=42$.
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-team-solutions.jsonl",
"problem_match": "\n7. [6]",
"solution_match": "\nProposed by: Christopher Shao\n"
}
|
b714ae27-1d4d-5ae5-aa24-153789d7e56c
| 609,625
|
Alex has an $20 \times 16$ grid of lightbulbs, initially all off. He has 36 switches, one for each row and column. Flipping the switch for the $i$ th row will toggle the state of each lightbulb in the $i$ th row (so that if it were on before, it would be off, and vice versa). Similarly, the switch for the $j$ th column will toggle the state of each bulb in the $j$ th column. Alex makes some (possibly empty) sequence of switch flips, resulting in some configuration of the lightbulbs and their states. How many distinct possible configurations of lightbulbs can Alex achieve with such a sequence? Two configurations are distinct if there exists a lightbulb that is on in one configuration and off in another.
|
Answer: $2^{35}$
The switch flip operations are commutative, so for any given sequence of switch flips $S$, we get the same configuration regardless of the order we do them in. We can arrange the switch flips so that all of the flips of the same switch happen consecutively. Furthermore, two consecutive flips of the same switch leave the configuration unchanged, so we can remove them, resulting in a sequence of switch flips $S^{\prime}$ that involves flipping a switch for a row or column at most once that achieves the same configuration as $S$. The order of the flips in $S^{\prime}$ also doesn't matter, so we can treat $S^{\prime}$ as a set of switches that are flipped to produce the same configuration as $S$.
The desired number is then equal to the number of distinct configurations that can be obtained by flipping exactly the switches in some subset $S^{\prime}$ of the set of all of the switches. We claim that if $S_{1}$ and $S_{2}$ are distinct sets of switches that result in the same configuration of lights, then $S_{1}$ and $S_{2}$ are complements. Indeed, without loss of generality, suppose that the first row's switch is in $S_{1}$ and that it isn't in $S_{2}$. In order to have the same configuration of lights in the first row, we must have that every column switch is in $S_{1}$ if and only if it isn't in $S_{2}$. Applying the same argument to the first column yields that every row switch is in $S_{1}$ if and only if it isn't in $S_{2}$, and the claim follows. Thus, for every set of switches, there is exactly one other set that attains the same configuration as it, namely its complement. There are $2^{m+n}$ sets of switches possible, and so the total number of possible configurations is $2^{m+n} / 2=2^{m+n-1}$.
|
2^{35}
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
Alex has an $20 \times 16$ grid of lightbulbs, initially all off. He has 36 switches, one for each row and column. Flipping the switch for the $i$ th row will toggle the state of each lightbulb in the $i$ th row (so that if it were on before, it would be off, and vice versa). Similarly, the switch for the $j$ th column will toggle the state of each bulb in the $j$ th column. Alex makes some (possibly empty) sequence of switch flips, resulting in some configuration of the lightbulbs and their states. How many distinct possible configurations of lightbulbs can Alex achieve with such a sequence? Two configurations are distinct if there exists a lightbulb that is on in one configuration and off in another.
|
Answer: $2^{35}$
The switch flip operations are commutative, so for any given sequence of switch flips $S$, we get the same configuration regardless of the order we do them in. We can arrange the switch flips so that all of the flips of the same switch happen consecutively. Furthermore, two consecutive flips of the same switch leave the configuration unchanged, so we can remove them, resulting in a sequence of switch flips $S^{\prime}$ that involves flipping a switch for a row or column at most once that achieves the same configuration as $S$. The order of the flips in $S^{\prime}$ also doesn't matter, so we can treat $S^{\prime}$ as a set of switches that are flipped to produce the same configuration as $S$.
The desired number is then equal to the number of distinct configurations that can be obtained by flipping exactly the switches in some subset $S^{\prime}$ of the set of all of the switches. We claim that if $S_{1}$ and $S_{2}$ are distinct sets of switches that result in the same configuration of lights, then $S_{1}$ and $S_{2}$ are complements. Indeed, without loss of generality, suppose that the first row's switch is in $S_{1}$ and that it isn't in $S_{2}$. In order to have the same configuration of lights in the first row, we must have that every column switch is in $S_{1}$ if and only if it isn't in $S_{2}$. Applying the same argument to the first column yields that every row switch is in $S_{1}$ if and only if it isn't in $S_{2}$, and the claim follows. Thus, for every set of switches, there is exactly one other set that attains the same configuration as it, namely its complement. There are $2^{m+n}$ sets of switches possible, and so the total number of possible configurations is $2^{m+n} / 2=2^{m+n-1}$.
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-team-solutions.jsonl",
"problem_match": "\n8. [6]",
"solution_match": "\nProposed by: Christopher Shao\n"
}
|
ea4a64bc-9661-58fb-86a2-d995dc4a0b1d
| 609,626
|
A cylinder with radius 15 and height 16 is inscribed in a sphere. Three congruent smaller spheres of radius $x$ are externally tangent to the base of the cylinder, externally tangent to each other, and internally tangent to the large sphere. What is the value of $x$ ?
|
Answer: $\square$
Let $O$ be the center of the large sphere, and let $O_{1}, O_{2}, O_{3}$ be the centers of the small spheres. Consider $G$, the center of equilateral $\triangle O_{1} O_{2} O_{3}$. Then if the radii of the small spheres are $r$, we have that $O G=8+r$ and $O_{1} O_{2}=O_{2} O_{3}=O_{3} O_{1}=2 r$, implying that $O_{1} G=\frac{2 r}{\sqrt{3}}$. Then $O O_{1}=\sqrt{O G^{2}+O O_{1}^{2}}=$ $\sqrt{(8+r)^{2}+\frac{4}{3} r^{2}}$. Now draw the array $O O_{1}$, and suppose it intersects the large sphere again at $P$. Then $P$ is the point of tangency between the large sphere and the small sphere with center $O_{1}$, so $O P=\sqrt{15^{2}+8^{2}}=17=O O_{1}+O_{1} P=\sqrt{(8+r)^{2}+\frac{4}{3} r^{2}}+r$. We rearrange this to be
$$
\begin{aligned}
17-r & =\sqrt{(8+r)^{2}+\frac{4}{3} r^{2}} \\
\Longleftrightarrow 289-34 r+r^{2} & =\frac{7}{3} r^{2}+16 r+64 \\
\Longleftrightarrow \frac{4}{3} r^{2}+50 r-225 & =0 \\
\Longrightarrow r & =\frac{-50 \pm \sqrt{50^{2}+4 \cdot \frac{4}{3} \cdot 225}}{2 \cdot \frac{4}{3}} \\
& =\frac{15 \sqrt{37}-75}{4} .
\end{aligned}
$$
|
\frac{15 \sqrt{37}-75}{4}
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
A cylinder with radius 15 and height 16 is inscribed in a sphere. Three congruent smaller spheres of radius $x$ are externally tangent to the base of the cylinder, externally tangent to each other, and internally tangent to the large sphere. What is the value of $x$ ?
|
Answer: $\square$
Let $O$ be the center of the large sphere, and let $O_{1}, O_{2}, O_{3}$ be the centers of the small spheres. Consider $G$, the center of equilateral $\triangle O_{1} O_{2} O_{3}$. Then if the radii of the small spheres are $r$, we have that $O G=8+r$ and $O_{1} O_{2}=O_{2} O_{3}=O_{3} O_{1}=2 r$, implying that $O_{1} G=\frac{2 r}{\sqrt{3}}$. Then $O O_{1}=\sqrt{O G^{2}+O O_{1}^{2}}=$ $\sqrt{(8+r)^{2}+\frac{4}{3} r^{2}}$. Now draw the array $O O_{1}$, and suppose it intersects the large sphere again at $P$. Then $P$ is the point of tangency between the large sphere and the small sphere with center $O_{1}$, so $O P=\sqrt{15^{2}+8^{2}}=17=O O_{1}+O_{1} P=\sqrt{(8+r)^{2}+\frac{4}{3} r^{2}}+r$. We rearrange this to be
$$
\begin{aligned}
17-r & =\sqrt{(8+r)^{2}+\frac{4}{3} r^{2}} \\
\Longleftrightarrow 289-34 r+r^{2} & =\frac{7}{3} r^{2}+16 r+64 \\
\Longleftrightarrow \frac{4}{3} r^{2}+50 r-225 & =0 \\
\Longrightarrow r & =\frac{-50 \pm \sqrt{50^{2}+4 \cdot \frac{4}{3} \cdot 225}}{2 \cdot \frac{4}{3}} \\
& =\frac{15 \sqrt{37}-75}{4} .
\end{aligned}
$$
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-team-solutions.jsonl",
"problem_match": "\n9. [7]",
"solution_match": "\n## Proposed by: Eshaan Nichani\n\n"
}
|
e0a0fc5e-e935-50f8-b797-eff1f1936e1d
| 609,627
|
Determine the largest integer $n$ such that there exist monic quadratic polynomials $p_{1}(x), p_{2}(x)$, $p_{3}(x)$ with integer coefficients so that for all integers $i \in[1, n]$ there exists some $j \in[1,3]$ and $m \in \mathbb{Z}$ such that $p_{j}(m)=i$.
|
Answer: 9
The construction for $n=9$ can be achieved with the polynomials $x^{2}+x+1, x^{2}+x+2$, and $x^{2}+5$.
First we consider what kinds of polynomials we can have. Let $p(x)=(x+h)^{2}+k . h$ is either an integer or half an integer. Let $k=0$. If $h$ is an integer then $p(x)$ hits the perfect squares $0,1,4,9$, etc. If $h$ is half an integer, then let $k=1 / 4$. Then $p(x)$ hits the product of two consecutive integers, i.e. 0 , $2,6,12$, etc.
Assume there is a construction for $n=10$. In both of the cases above, the most a polynomial can hit out of 10 is 4 , in the $0,1,4,9$ case. Thus $p_{1}$ must hit $1,2,5,10$, and $p_{2}$ and $p_{3}$ hit 3 integers each, out of $3,4,6,7,8,9$. The only ways we can hit 3 out of 7 consecutive integers is with the sequences $0,2,6$ or $0,1,4$. The only way a $0,2,6$ works is if it hits 3,5 , and 9 , which doesn't work since 5 was hit by $p_{2}$. Otherwise, $p_{2}$ is $0,1,4$, which doesn't work as $p_{2}$ hits 3,4 , and 7 , and $p_{3}$ must hit 6,8 , and 9 , which is impossible. Thus no construction for $n=10$ exists.
|
9
|
Yes
|
Yes
|
math-word-problem
|
Algebra
|
Determine the largest integer $n$ such that there exist monic quadratic polynomials $p_{1}(x), p_{2}(x)$, $p_{3}(x)$ with integer coefficients so that for all integers $i \in[1, n]$ there exists some $j \in[1,3]$ and $m \in \mathbb{Z}$ such that $p_{j}(m)=i$.
|
Answer: 9
The construction for $n=9$ can be achieved with the polynomials $x^{2}+x+1, x^{2}+x+2$, and $x^{2}+5$.
First we consider what kinds of polynomials we can have. Let $p(x)=(x+h)^{2}+k . h$ is either an integer or half an integer. Let $k=0$. If $h$ is an integer then $p(x)$ hits the perfect squares $0,1,4,9$, etc. If $h$ is half an integer, then let $k=1 / 4$. Then $p(x)$ hits the product of two consecutive integers, i.e. 0 , $2,6,12$, etc.
Assume there is a construction for $n=10$. In both of the cases above, the most a polynomial can hit out of 10 is 4 , in the $0,1,4,9$ case. Thus $p_{1}$ must hit $1,2,5,10$, and $p_{2}$ and $p_{3}$ hit 3 integers each, out of $3,4,6,7,8,9$. The only ways we can hit 3 out of 7 consecutive integers is with the sequences $0,2,6$ or $0,1,4$. The only way a $0,2,6$ works is if it hits 3,5 , and 9 , which doesn't work since 5 was hit by $p_{2}$. Otherwise, $p_{2}$ is $0,1,4$, which doesn't work as $p_{2}$ hits 3,4 , and 7 , and $p_{3}$ must hit 6,8 , and 9 , which is impossible. Thus no construction for $n=10$ exists.
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-team-solutions.jsonl",
"problem_match": "\n10. [7]",
"solution_match": "\nProposed by: Eshaan Nichani\n"
}
|
0ba67b33-bab5-5cf3-9432-2ac8a2aeaab7
| 609,628
|
DeAndre Jordan shoots free throws that are worth 1 point each. He makes $40 \%$ of his shots. If he takes two shots find the probability that he scores at least 1 point.
|
Answer: $\frac{16}{25}$
We want to find the probability of making at least one shot. The probability he makes no shots is $\left(\frac{3}{5}\right)^{2}$, so the probability of making at least one is $1-\left(\frac{3}{5}\right)^{2}=\frac{16}{25}$.
|
\frac{16}{25}
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
DeAndre Jordan shoots free throws that are worth 1 point each. He makes $40 \%$ of his shots. If he takes two shots find the probability that he scores at least 1 point.
|
Answer: $\frac{16}{25}$
We want to find the probability of making at least one shot. The probability he makes no shots is $\left(\frac{3}{5}\right)^{2}$, so the probability of making at least one is $1-\left(\frac{3}{5}\right)^{2}=\frac{16}{25}$.
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-thm-solutions.jsonl",
"problem_match": "\n1. ",
"solution_match": "\nProposed by: Allen Liu\n"
}
|
210ccf64-9fbd-5c36-9ea4-a5fe33114710
| 609,629
|
Point $P_{1}$ is located 600 miles West of point $P_{2}$. At 7:00 AM a car departs from $P_{1}$ and drives East at a speed of 50 miles per hour. At 8:00 AM another car departs from $P_{2}$ and drives West at a constant speed of $x$ miles per hour. If the cars meet each other exactly halfway between $P_{1}$ and $P_{2}$, what is the value of $x$ ?
|
Answer: 60
Each car meets having traveled 300 miles. Therefore the first car traveled for $300 / 50=6$ hours, and so the second car traveled for 5 hours. The second car must have traveled $300 / 5=60$ miles per hour.
|
60
|
Yes
|
Yes
|
math-word-problem
|
Algebra
|
Point $P_{1}$ is located 600 miles West of point $P_{2}$. At 7:00 AM a car departs from $P_{1}$ and drives East at a speed of 50 miles per hour. At 8:00 AM another car departs from $P_{2}$ and drives West at a constant speed of $x$ miles per hour. If the cars meet each other exactly halfway between $P_{1}$ and $P_{2}$, what is the value of $x$ ?
|
Answer: 60
Each car meets having traveled 300 miles. Therefore the first car traveled for $300 / 50=6$ hours, and so the second car traveled for 5 hours. The second car must have traveled $300 / 5=60$ miles per hour.
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-thm-solutions.jsonl",
"problem_match": "\n2. ",
"solution_match": "\nProposed by: Eshaan Nichani\n"
}
|
6b58fac4-7dc8-533b-8c43-c98e9aa8ec01
| 609,630
|
The three points $A, B, C$ form a triangle. $A B=4, B C=5 A C=6$. Let the angle bisector of $\angle A$ intersect side $B C$ at $D$. Let the foot of the perpendicular from $B$ to the angle bisector of $\angle A$ be $E$. Let the line through $E$ parallel to $A C$ meet $B C$ at $F$. Compute $D F$.
|
Answer: $1 / 2$
Since $A D$ bisects $\angle A$, by the angle bisector theorem $\frac{A B}{B D}=\frac{A C}{C D}$, so $B D=2$ and $C D=3$. Extend $B E$ to hit $A C$ at $X$. Since $A E$ is the perpendicular bisector of $B X, A X=4$. Since $B, E, X$ are collinear, applying Menelaus' Theorem to the triangle $A D C$, we have
$$
\frac{A E}{E D} \cdot \frac{D B}{B C} \cdot \frac{C X}{X A}=1
$$
This implies that $\frac{A E}{E D}=5$, and since $E F \| A C, \frac{D F}{D C}=\frac{D E}{D A}$, so $D F=\frac{D C}{6}=\frac{1}{2}$.
|
\frac{1}{2}
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
The three points $A, B, C$ form a triangle. $A B=4, B C=5 A C=6$. Let the angle bisector of $\angle A$ intersect side $B C$ at $D$. Let the foot of the perpendicular from $B$ to the angle bisector of $\angle A$ be $E$. Let the line through $E$ parallel to $A C$ meet $B C$ at $F$. Compute $D F$.
|
Answer: $1 / 2$
Since $A D$ bisects $\angle A$, by the angle bisector theorem $\frac{A B}{B D}=\frac{A C}{C D}$, so $B D=2$ and $C D=3$. Extend $B E$ to hit $A C$ at $X$. Since $A E$ is the perpendicular bisector of $B X, A X=4$. Since $B, E, X$ are collinear, applying Menelaus' Theorem to the triangle $A D C$, we have
$$
\frac{A E}{E D} \cdot \frac{D B}{B C} \cdot \frac{C X}{X A}=1
$$
This implies that $\frac{A E}{E D}=5$, and since $E F \| A C, \frac{D F}{D C}=\frac{D E}{D A}$, so $D F=\frac{D C}{6}=\frac{1}{2}$.
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-thm-solutions.jsonl",
"problem_match": "\n3. ",
"solution_match": "\nProposed by: Allen Liu\n"
}
|
bdfb1588-d1c6-5564-b274-bf2658395fb7
| 609,631
|
A positive integer is written on each corner of a square such that numbers on opposite vertices are relatively prime while numbers on adjacent vertices are not relatively prime. What is the smallest possible value of the sum of these 4 numbers?
|
Answer: 60
Two opposite vertices are relatively prime, but they both share a factor with their common neighbor. So that common neighbor must have two prime factors. So each of the 4 numbers has two prime factors, which are not shared with the opposite vertex. Moreover, it suffices to choose the vertices to be the numbers $a b, b c, c d, d a$ for some prime numbers $a, b, c, d$. It's clear that we should choose them to be the smallest primes $2,3,5,7$ in some order. The order that minimizes the sum of all of the numbers gives $14,10,15,21$ for a sum of 60 .
|
60
|
Yes
|
Yes
|
math-word-problem
|
Number Theory
|
A positive integer is written on each corner of a square such that numbers on opposite vertices are relatively prime while numbers on adjacent vertices are not relatively prime. What is the smallest possible value of the sum of these 4 numbers?
|
Answer: 60
Two opposite vertices are relatively prime, but they both share a factor with their common neighbor. So that common neighbor must have two prime factors. So each of the 4 numbers has two prime factors, which are not shared with the opposite vertex. Moreover, it suffices to choose the vertices to be the numbers $a b, b c, c d, d a$ for some prime numbers $a, b, c, d$. It's clear that we should choose them to be the smallest primes $2,3,5,7$ in some order. The order that minimizes the sum of all of the numbers gives $14,10,15,21$ for a sum of 60 .
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-thm-solutions.jsonl",
"problem_match": "\n4. ",
"solution_match": "\nProposed by: Eshaan Nichani\n"
}
|
6148c587-83b6-50bf-8218-ecd2709170ec
| 609,632
|
Steph Curry is playing the following game and he wins if he has exactly 5 points at some time. Flip a fair coin. If heads, shoot a 3 -point shot which is worth 3 points. If tails, shoot a free throw which is worth 1 point. He makes $\frac{1}{2}$ of his 3 -point shots and all of his free throws. Find the probability he will win the game. (Note he keeps flipping the coin until he has exactly 5 or goes over 5 points)
|
Answer: $\frac{140}{243}$
If he misses the shot, then the state of the game is the same as before he flipped the coin. Since the probability of making a free throw is $\frac{1}{2}$ and the probability of making a 3 -point shot is $\frac{1}{4}$. Therefore, given that he earns some point, the probability it is a 3 -point shot is $\frac{1}{3}$. The possible ways of earning points are $11111,113,131$, and 311 , which have probabilities $\frac{32}{243}, \frac{4}{27}, \frac{4}{27}$, and $\frac{4}{27}$, which sum to $\frac{140}{243}$.
|
\frac{140}{243}
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
Steph Curry is playing the following game and he wins if he has exactly 5 points at some time. Flip a fair coin. If heads, shoot a 3 -point shot which is worth 3 points. If tails, shoot a free throw which is worth 1 point. He makes $\frac{1}{2}$ of his 3 -point shots and all of his free throws. Find the probability he will win the game. (Note he keeps flipping the coin until he has exactly 5 or goes over 5 points)
|
Answer: $\frac{140}{243}$
If he misses the shot, then the state of the game is the same as before he flipped the coin. Since the probability of making a free throw is $\frac{1}{2}$ and the probability of making a 3 -point shot is $\frac{1}{4}$. Therefore, given that he earns some point, the probability it is a 3 -point shot is $\frac{1}{3}$. The possible ways of earning points are $11111,113,131$, and 311 , which have probabilities $\frac{32}{243}, \frac{4}{27}, \frac{4}{27}$, and $\frac{4}{27}$, which sum to $\frac{140}{243}$.
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-thm-solutions.jsonl",
"problem_match": "\n5. ",
"solution_match": "\nProposed by: Allen Liu\n"
}
|
11686489-f2f1-56c1-99ea-7b872e912d26
| 609,633
|
Let $P_{1}, P_{2}, \ldots, P_{6}$ be points in the complex plane, which are also roots of the equation $x^{6}+6 x^{3}-216=0$. Given that $P_{1} P_{2} P_{3} P_{4} P_{5} P_{6}$ is a convex hexagon, determine the area of this hexagon.
|
Answer: $9 \sqrt{3}$
Factor $x^{6}+6 x^{3}-216=\left(x^{3}-12\right)\left(x^{3}+18\right)$. This gives us 6 points equally spaced in terms of their angles from the origin, alternating in magnitude between $\sqrt[3]{12}$ and $\sqrt[3]{18}$. This means our hexagon is composed of 6 triangles, each with sides of length $\sqrt[3]{12}$ and $\sqrt[3]{18}$ and with a 60 degree angle in between them. This yields the area of each triangle as $\frac{3 \sqrt{3}}{2}$, so the total area of the hexagon is $9 \sqrt{3}$.
|
9 \sqrt{3}
|
Yes
|
Yes
|
math-word-problem
|
Algebra
|
Let $P_{1}, P_{2}, \ldots, P_{6}$ be points in the complex plane, which are also roots of the equation $x^{6}+6 x^{3}-216=0$. Given that $P_{1} P_{2} P_{3} P_{4} P_{5} P_{6}$ is a convex hexagon, determine the area of this hexagon.
|
Answer: $9 \sqrt{3}$
Factor $x^{6}+6 x^{3}-216=\left(x^{3}-12\right)\left(x^{3}+18\right)$. This gives us 6 points equally spaced in terms of their angles from the origin, alternating in magnitude between $\sqrt[3]{12}$ and $\sqrt[3]{18}$. This means our hexagon is composed of 6 triangles, each with sides of length $\sqrt[3]{12}$ and $\sqrt[3]{18}$ and with a 60 degree angle in between them. This yields the area of each triangle as $\frac{3 \sqrt{3}}{2}$, so the total area of the hexagon is $9 \sqrt{3}$.
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-thm-solutions.jsonl",
"problem_match": "\n6. ",
"solution_match": "\nProposed by: Eshaan Nichani\n"
}
|
2a41dc70-1ff5-5c44-9401-e6c38812f1a0
| 609,634
|
Seven lattice points form a convex heptagon with all sides having distinct lengths. Find the minimum possible value of the sum of the squares of the sides of the heptagon.
|
Answer: 42
Consider the vectors corresponding to the sides of the heptagon, and call them $\left[x_{i}, y_{i}\right]$ for $i$ between 1 and 7. Then since $\sum x_{i}=\sum y_{i}=0$, and $a^{2}$ has the same parity as $a$, we have that $\sum x_{i}^{2}+y_{i}^{2}$ must be an even number. A side length of a lattice valued polygon must be expressible as $\sqrt{a^{2}+b^{2}}$, so the smallest possible values are $\sqrt{1}, \sqrt{2}, \sqrt{4}, \sqrt{5}, \sqrt{8}, \sqrt{9}, \sqrt{10}$. However, using the seven smallest lengths violates the parity constraint. If we try $\sqrt{13}$, we indeed can get a heptagon with lengths $\sqrt{1}, \sqrt{2}, \sqrt{4}, \sqrt{5}, \sqrt{8}, \sqrt{9}, \sqrt{13}$. One example is the heptagon $(0,0),(3,0),(5,1),(6,2),(3,4),(2,4),(0,2)$, and its sum of squares of side lengths is $1+2+4+5+8+9+13=42$.
|
42
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
Seven lattice points form a convex heptagon with all sides having distinct lengths. Find the minimum possible value of the sum of the squares of the sides of the heptagon.
|
Answer: 42
Consider the vectors corresponding to the sides of the heptagon, and call them $\left[x_{i}, y_{i}\right]$ for $i$ between 1 and 7. Then since $\sum x_{i}=\sum y_{i}=0$, and $a^{2}$ has the same parity as $a$, we have that $\sum x_{i}^{2}+y_{i}^{2}$ must be an even number. A side length of a lattice valued polygon must be expressible as $\sqrt{a^{2}+b^{2}}$, so the smallest possible values are $\sqrt{1}, \sqrt{2}, \sqrt{4}, \sqrt{5}, \sqrt{8}, \sqrt{9}, \sqrt{10}$. However, using the seven smallest lengths violates the parity constraint. If we try $\sqrt{13}$, we indeed can get a heptagon with lengths $\sqrt{1}, \sqrt{2}, \sqrt{4}, \sqrt{5}, \sqrt{8}, \sqrt{9}, \sqrt{13}$. One example is the heptagon $(0,0),(3,0),(5,1),(6,2),(3,4),(2,4),(0,2)$, and its sum of squares of side lengths is $1+2+4+5+8+9+13=42$.
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-thm-solutions.jsonl",
"problem_match": "\n7. ",
"solution_match": "\nProposed by: Allen Liu\n"
}
|
a880ed19-9ef3-5d6e-8909-9cd0bfe8bced
| 41,295
|
Let $P_{1} P_{2} \ldots P_{8}$ be a convex octagon. An integer $i$ is chosen uniformly at random from 1 to 7 , inclusive. For each vertex of the octagon, the line between that vertex and the vertex $i$ vertices to the right is painted red. What is the expected number times two red lines intersect at a point that is not one of the vertices, given that no three diagonals are concurrent?
|
Answer: $\frac{54}{7}$
If $i=1$ or $i=7$, there are 0 intersections. If $i=2$ or $i=6$ there are 8 . If $i=3$ or $i=5$ there are 16 intersections. When $i=4$ there are 6 intersections (since the only lines drawn are the four long diagonals).
Thus the final answer is $\frac{8+16+6+16+8}{7}=\frac{54}{7}$
|
\frac{54}{7}
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
Let $P_{1} P_{2} \ldots P_{8}$ be a convex octagon. An integer $i$ is chosen uniformly at random from 1 to 7 , inclusive. For each vertex of the octagon, the line between that vertex and the vertex $i$ vertices to the right is painted red. What is the expected number times two red lines intersect at a point that is not one of the vertices, given that no three diagonals are concurrent?
|
Answer: $\frac{54}{7}$
If $i=1$ or $i=7$, there are 0 intersections. If $i=2$ or $i=6$ there are 8 . If $i=3$ or $i=5$ there are 16 intersections. When $i=4$ there are 6 intersections (since the only lines drawn are the four long diagonals).
Thus the final answer is $\frac{8+16+6+16+8}{7}=\frac{54}{7}$
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-thm-solutions.jsonl",
"problem_match": "\n8. ",
"solution_match": "\nProposed by: Eshaan Nichani\n"
}
|
b9c85fa3-fc2c-5349-b55d-d4f77c0873cc
| 609,635
|
The vertices of a regular nonagon are colored such that 1 ) adjacent vertices are different colors and 2) if 3 vertices form an equilateral triangle, they are all different colors.
Let $m$ be the minimum number of colors needed for a valid coloring, and $n$ be the total number of colorings using $m$ colors. Determine $m n$. (Assume each vertex is distinguishable.)
|
Answer: 54
It's clear that $m$ is more than 2 since it's impossible to alternate the color of the vertices without having two of the same color adjacent (since the graph is not bipartite). However, it's possible to use 3 colors. Number the vertices 1 through 9 in order and let the colors be $A, B, C$. Coloring the vertices in the order $B C B C A C A B A$ gives a configuration that works, so $m$ is 3 . To determine $n$, we can partition the nonagon into three equilateral triangles. Vertices $1,4,7$ must be different colors, which we can choose in $3!=6$ ways. Suppose WLOG that they're $A, B, C$ respectively. Then we look at vertices $2,5,8$. Vertex 2 can be colored $B$ or $C$. If 2 is $B$, then vertex 8 must be $A$, and vertex 5 must be $C$. In this case there are two ways to color the remaining vertices $3,6,9$. Otherwise, if vertex 2 is $C$, then vertex 5 must be $A$, and vertex 8 must be $B$. This gives us only 1 possible coloring for the remaining three vertices. So $n$ is $6(2+1)=18$. So our answer is $m n=54$.
|
54
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
The vertices of a regular nonagon are colored such that 1 ) adjacent vertices are different colors and 2) if 3 vertices form an equilateral triangle, they are all different colors.
Let $m$ be the minimum number of colors needed for a valid coloring, and $n$ be the total number of colorings using $m$ colors. Determine $m n$. (Assume each vertex is distinguishable.)
|
Answer: 54
It's clear that $m$ is more than 2 since it's impossible to alternate the color of the vertices without having two of the same color adjacent (since the graph is not bipartite). However, it's possible to use 3 colors. Number the vertices 1 through 9 in order and let the colors be $A, B, C$. Coloring the vertices in the order $B C B C A C A B A$ gives a configuration that works, so $m$ is 3 . To determine $n$, we can partition the nonagon into three equilateral triangles. Vertices $1,4,7$ must be different colors, which we can choose in $3!=6$ ways. Suppose WLOG that they're $A, B, C$ respectively. Then we look at vertices $2,5,8$. Vertex 2 can be colored $B$ or $C$. If 2 is $B$, then vertex 8 must be $A$, and vertex 5 must be $C$. In this case there are two ways to color the remaining vertices $3,6,9$. Otherwise, if vertex 2 is $C$, then vertex 5 must be $A$, and vertex 8 must be $B$. This gives us only 1 possible coloring for the remaining three vertices. So $n$ is $6(2+1)=18$. So our answer is $m n=54$.
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-thm-solutions.jsonl",
"problem_match": "\n9. ",
"solution_match": "\n## Proposed by: Eshaan Nichani\n\n"
}
|
2faa9fd7-4aa0-5028-b136-306e3d4613a3
| 609,636
|
We have 10 points on a line $A_{1}, A_{2} \cdots A_{10}$ in that order. Initially there are $n$ chips on point $A_{1}$. Now we are allowed to perform two types of moves. Take two chips on $A_{i}$, remove them and place one chip on $A_{i+1}$, or take two chips on $A_{i+1}$, remove them, and place a chip on $A_{i+2}$ and $A_{i}$. Find the minimum possible value of $n$ such that it is possible to get a chip on $A_{10}$ through a sequence of moves.
|
Answer: 46
We claim that $n=46$ is the minimum possible value of $n$. As having extra chips cannot hurt, it is always better to perform the second operation than the first operation, except on point $A_{1}$. Assign the value of a chip on point $A_{i}$ to be $i$. Then the total value of the chips initially is $n$. Furthermore, both types of operations keep the total values of the chips the same, as $2 \cdot 1=2$ and $i+(i+2)=2 \cdot(i+1)$.
When $n=46$, we claim that any sequence of these moves will eventually lead to a chip reaching $A_{10}$. If, for the sake of contradiction, that there was a way to get stuck with no chip having reached $A_{10}$, then there could only be chips on $A_{1}$ through $A_{9}$, and furthermore at most one chip on each. The total value of these chips is at most 45 , which is less than the original value of chips 46.
However, if $n \leq 45$, we claim that it is impossible to get one chip to $A_{10}$. To get a chip to $A_{10}$, an operation must have been used on each of $A_{1}$ through $A_{9}$ at least once. Consider the last time the operation was used on $A_{k}$ for $2 \leq k \leq 9$. After this operation, there must be a chip on $A_{k-1}$. Additionally, since no chip is ever moved past $A_{k}$ again, there is no point to perform any operations on any chips left of $A_{k}$, which means that a chip will remain on $A_{k-1}$ until the end. Therefore, if there is a way to get a chip to $A_{10}$, there must also be a way to get a chip to $A_{10}$ and also $A_{1}$ through $A_{8}$, which means that the original value of the chips must have been already $1+2+\cdots+8+10=46$.
|
46
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
We have 10 points on a line $A_{1}, A_{2} \cdots A_{10}$ in that order. Initially there are $n$ chips on point $A_{1}$. Now we are allowed to perform two types of moves. Take two chips on $A_{i}$, remove them and place one chip on $A_{i+1}$, or take two chips on $A_{i+1}$, remove them, and place a chip on $A_{i+2}$ and $A_{i}$. Find the minimum possible value of $n$ such that it is possible to get a chip on $A_{10}$ through a sequence of moves.
|
Answer: 46
We claim that $n=46$ is the minimum possible value of $n$. As having extra chips cannot hurt, it is always better to perform the second operation than the first operation, except on point $A_{1}$. Assign the value of a chip on point $A_{i}$ to be $i$. Then the total value of the chips initially is $n$. Furthermore, both types of operations keep the total values of the chips the same, as $2 \cdot 1=2$ and $i+(i+2)=2 \cdot(i+1)$.
When $n=46$, we claim that any sequence of these moves will eventually lead to a chip reaching $A_{10}$. If, for the sake of contradiction, that there was a way to get stuck with no chip having reached $A_{10}$, then there could only be chips on $A_{1}$ through $A_{9}$, and furthermore at most one chip on each. The total value of these chips is at most 45 , which is less than the original value of chips 46.
However, if $n \leq 45$, we claim that it is impossible to get one chip to $A_{10}$. To get a chip to $A_{10}$, an operation must have been used on each of $A_{1}$ through $A_{9}$ at least once. Consider the last time the operation was used on $A_{k}$ for $2 \leq k \leq 9$. After this operation, there must be a chip on $A_{k-1}$. Additionally, since no chip is ever moved past $A_{k}$ again, there is no point to perform any operations on any chips left of $A_{k}$, which means that a chip will remain on $A_{k-1}$ until the end. Therefore, if there is a way to get a chip to $A_{10}$, there must also be a way to get a chip to $A_{10}$ and also $A_{1}$ through $A_{8}$, which means that the original value of the chips must have been already $1+2+\cdots+8+10=46$.
|
{
"resource_path": "HarvardMIT/segmented/en-201-2016-nov-thm-solutions.jsonl",
"problem_match": "\n10. ",
"solution_match": "\nProposed by: Allen Liu\n"
}
|
344cb5d2-9fcd-5971-83db-96d9760bcacf
| 609,637
|
Let $Q(x)=a_{0}+a_{1} x+\cdots+a_{n} x^{n}$ be a polynomial with integer coefficients, and $0 \leq a_{i}<3$ for all $0 \leq i \leq n$.
Given that $Q(\sqrt{3})=20+17 \sqrt{3}$, compute $Q(2)$.
|
Answer: 86
One can evaluate
$$
Q(\sqrt{3})=\left(a_{0}+3 a_{2}+3^{2} a_{4}+\ldots\right)+\left(a_{1}+3 a_{3}+3^{2} a_{5}+\ldots\right) \sqrt{3}
$$
Therefore, we have that
$$
\left(a_{0}+3 a_{2}+3^{2} a_{4}+\ldots\right)=20 \text { and }\left(a_{1}+3 a_{3}+3^{2} a_{5}+\ldots\right)=17
$$
This corresponds to the base- 3 expansions of 20 and 17. This gives us that $Q(x)=2+2 x+2 x^{3}+2 x^{4}+x^{5}$, so $Q(2)=86$.
|
86
|
Yes
|
Yes
|
math-word-problem
|
Algebra
|
Let $Q(x)=a_{0}+a_{1} x+\cdots+a_{n} x^{n}$ be a polynomial with integer coefficients, and $0 \leq a_{i}<3$ for all $0 \leq i \leq n$.
Given that $Q(\sqrt{3})=20+17 \sqrt{3}$, compute $Q(2)$.
|
Answer: 86
One can evaluate
$$
Q(\sqrt{3})=\left(a_{0}+3 a_{2}+3^{2} a_{4}+\ldots\right)+\left(a_{1}+3 a_{3}+3^{2} a_{5}+\ldots\right) \sqrt{3}
$$
Therefore, we have that
$$
\left(a_{0}+3 a_{2}+3^{2} a_{4}+\ldots\right)=20 \text { and }\left(a_{1}+3 a_{3}+3^{2} a_{5}+\ldots\right)=17
$$
This corresponds to the base- 3 expansions of 20 and 17. This gives us that $Q(x)=2+2 x+2 x^{3}+2 x^{4}+x^{5}$, so $Q(2)=86$.
|
{
"resource_path": "HarvardMIT/segmented/en-202-2017-feb-algnt-solutions.jsonl",
"problem_match": "\n1. ",
"solution_match": "\nProposed by: Yang Liu\n"
}
|
f2d2e989-28f3-5151-b522-380bf33b029f
| 609,638
|
Find the value of
$$
\sum_{1 \leq a<b<c} \frac{1}{2^{a} 3^{b} 5^{c}}
$$
(i.e. the sum of $\frac{1}{2^{a} 3^{b} 5^{c}}$ over all triples of positive integers ( $a, b, c$ ) satisfying $a<b<c$ )
|
Answer: $1 / 1624$
Let $x=b-a$ and $y=c-b$ so that $b=a+x$ and $c=a+x+y$. Then
$$
2^{a} 3^{b} 5^{c}=2^{a} 3^{a+x} 5^{a+x+y}=30^{a} 15^{x} 5^{y}
$$
and $a, x, y$ are any positive integers. Thus
$$
\begin{aligned}
\sum_{1 \leq a \leq b<c} \frac{1}{2^{a} 3^{b} 5^{c}} & =\sum_{1 \leq a, x, y} \frac{1}{30^{a} 15^{x} 5^{y}} \\
& =\sum_{1 \leq a} \frac{1}{30^{a}} \sum_{1 \leq x} \frac{1}{15^{x}} \sum_{1 \leq y} \frac{1}{5^{y}} \\
& =\frac{1}{29} \cdot \frac{1}{14} \cdot \frac{1}{4} \\
& =\frac{1}{1624}
\end{aligned}
$$
|
\frac{1}{1624}
|
Yes
|
Yes
|
math-word-problem
|
Number Theory
|
Find the value of
$$
\sum_{1 \leq a<b<c} \frac{1}{2^{a} 3^{b} 5^{c}}
$$
(i.e. the sum of $\frac{1}{2^{a} 3^{b} 5^{c}}$ over all triples of positive integers ( $a, b, c$ ) satisfying $a<b<c$ )
|
Answer: $1 / 1624$
Let $x=b-a$ and $y=c-b$ so that $b=a+x$ and $c=a+x+y$. Then
$$
2^{a} 3^{b} 5^{c}=2^{a} 3^{a+x} 5^{a+x+y}=30^{a} 15^{x} 5^{y}
$$
and $a, x, y$ are any positive integers. Thus
$$
\begin{aligned}
\sum_{1 \leq a \leq b<c} \frac{1}{2^{a} 3^{b} 5^{c}} & =\sum_{1 \leq a, x, y} \frac{1}{30^{a} 15^{x} 5^{y}} \\
& =\sum_{1 \leq a} \frac{1}{30^{a}} \sum_{1 \leq x} \frac{1}{15^{x}} \sum_{1 \leq y} \frac{1}{5^{y}} \\
& =\frac{1}{29} \cdot \frac{1}{14} \cdot \frac{1}{4} \\
& =\frac{1}{1624}
\end{aligned}
$$
|
{
"resource_path": "HarvardMIT/segmented/en-202-2017-feb-algnt-solutions.jsonl",
"problem_match": "\n2. ",
"solution_match": "\nProposed by: Alexander Katz\n"
}
|
068effc2-0889-5d57-8f4c-3d40211c9095
| 609,639
|
Kelvin the Frog was bored in math class one day, so he wrote all ordered triples $(a, b, c)$ of positive integers such that $a b c=2310$ on a sheet of paper. Find the sum of all the integers he wrote down. In other words, compute
$$
\sum_{\substack{a b c=2310 \\ a, b, c \in \mathbb{N}}}(a+b+c)
$$
where $\mathbb{N}$ denotes the positive integers.
|
Answer: 49140
Note that $2310=2 \cdot 3 \cdot 5 \cdot 7 \cdot 11$. The given sum clearly equals $3 \sum_{a b c=2310} a$ by symmetry. The inner sum can be rewritten as
$$
\sum_{a \mid 2310} a \cdot \tau\left(\frac{2310}{a}\right)
$$
as for any fixed $a$, there are $\tau\left(\frac{2310}{a}\right)$ choices for the integers $b, c$.
Now consider the function $f(n)=\sum_{a \mid n} a \cdot \tau\left(\frac{n}{a}\right)$. Therefore, $f=n * \tau$, where $n$ denotes the function $g(n)=n$ and $*$ denotes Dirichlet convolution. As both $n$ and $\tau$ are multiplicative, $f$ is also multiplicative.
It is easy to compute that $f(p)=p+2$ for primes $p$. Therefore, our final answer is $3(2+2)(3+2)(5+$ $2)(7+2)(11+2)=49140$.
|
49140
|
Yes
|
Yes
|
math-word-problem
|
Number Theory
|
Kelvin the Frog was bored in math class one day, so he wrote all ordered triples $(a, b, c)$ of positive integers such that $a b c=2310$ on a sheet of paper. Find the sum of all the integers he wrote down. In other words, compute
$$
\sum_{\substack{a b c=2310 \\ a, b, c \in \mathbb{N}}}(a+b+c)
$$
where $\mathbb{N}$ denotes the positive integers.
|
Answer: 49140
Note that $2310=2 \cdot 3 \cdot 5 \cdot 7 \cdot 11$. The given sum clearly equals $3 \sum_{a b c=2310} a$ by symmetry. The inner sum can be rewritten as
$$
\sum_{a \mid 2310} a \cdot \tau\left(\frac{2310}{a}\right)
$$
as for any fixed $a$, there are $\tau\left(\frac{2310}{a}\right)$ choices for the integers $b, c$.
Now consider the function $f(n)=\sum_{a \mid n} a \cdot \tau\left(\frac{n}{a}\right)$. Therefore, $f=n * \tau$, where $n$ denotes the function $g(n)=n$ and $*$ denotes Dirichlet convolution. As both $n$ and $\tau$ are multiplicative, $f$ is also multiplicative.
It is easy to compute that $f(p)=p+2$ for primes $p$. Therefore, our final answer is $3(2+2)(3+2)(5+$ $2)(7+2)(11+2)=49140$.
|
{
"resource_path": "HarvardMIT/segmented/en-202-2017-feb-algnt-solutions.jsonl",
"problem_match": "\n5. ",
"solution_match": "\nProposed by: Yang Liu\n"
}
|
6bb299e5-0383-588b-b78b-295f3b3c5a92
| 609,642
|
A polynomial $P$ of degree 2015 satisfies the equation $P(n)=\frac{1}{n^{2}}$ for $n=1,2, \ldots, 2016$. Find $\lfloor 2017 P(2017)\rfloor$.
|
Answer: -9
Let $Q(x)=x^{2} P(x)-1$. Then $Q(n)=n^{2} P(n)-1=0$ for $n=1,2, \ldots, 2016$, and $Q$ has degree 2017 . Thus we may write
$$
Q(x)=x^{2} P(x)-1=(x-1)(x-2) \ldots(x-2016) L(x)
$$
where $L(x)$ is some linear polynomial. Then $Q(0)=-1=(-1)(-2) \ldots(-2016) L(0)$, so $L(0)=-\frac{1}{2016!}$.
Now note that
$$
\begin{aligned}
Q^{\prime}(x) & =x^{2} P^{\prime}(x)+2 x P(x) \\
& =\sum_{i=1}^{2016}(x-1) \ldots(x-(i-1))(x-(i+1)) \ldots(x-2016) L(x)+(x-1)(x-2) \ldots(x-2016) L^{\prime}(x)
\end{aligned}
$$
Thus
$$
Q^{\prime}(0)=0=L(0)\left(\frac{2016!}{-1}+\frac{2016!}{-2}+\ldots+\frac{2016!}{-2016}\right)+2016!L^{\prime}(0)
$$
whence $L^{\prime}(0)=L(0)\left(\frac{1}{1}+\frac{1}{2}+\ldots+\frac{1}{2016}\right)=-\frac{H_{2016}}{2016!}$, where $H_{n}$ denotes the $n$th harmonic number.
As a result, we have $L(x)=-\frac{H_{2016} x+1}{2016!}$. Then
$$
Q(2017)=2017^{2} P(2017)-1=2016!\left(-\frac{2017 H_{2016}+1}{2016!}\right)
$$
which is $-2017 H_{2016}-1$. Thus
$$
P(2017)=\frac{-H_{2016}}{2017}
$$
From which we get $2017 P(2017)=-H_{2016}$. It remains to approximate $H_{2016}$. We alter the well known approximation
$$
H_{n} \approx \int_{1}^{n} \frac{1}{x} d x=\log x
$$
to
$$
H_{n} \approx 1+\frac{1}{2}+\int_{3}^{n} \frac{1}{x} d x=1+\frac{1}{2}+\log (2016)-\log (3) \approx \log (2016)+\frac{1}{2}
$$
so that it suffices to lower bound $\log (2016)$. Note that $e^{3} \approx 20$, which is close enough for our purposes. Then $e^{6} \approx 400 \Longrightarrow e^{7} \approx 1080$, and $e^{3} \approx 20<2^{5} \Longrightarrow e^{0.6} \ll 2 \Longrightarrow e^{7.6}<2016$, so that $\log (2016)>7.6$. It follows that $H_{2016} \approx \log (2016)+0.5=7.6+0.5>8$ (of course these are loose estimates, but more than good enough for our purposes). Thus $-9<2017 P(2017)<-8$, making our answer -9 .
Alternatively, a well-read contestant might know that $H_{n} \approx \log n+\gamma$, where $\gamma \approx .577$ is the EulerMascheroni constant. The above solution essentially approximates $\gamma$ as 0.5 which is good enough for our purposes.
|
-9
|
Yes
|
Yes
|
math-word-problem
|
Algebra
|
A polynomial $P$ of degree 2015 satisfies the equation $P(n)=\frac{1}{n^{2}}$ for $n=1,2, \ldots, 2016$. Find $\lfloor 2017 P(2017)\rfloor$.
|
Answer: -9
Let $Q(x)=x^{2} P(x)-1$. Then $Q(n)=n^{2} P(n)-1=0$ for $n=1,2, \ldots, 2016$, and $Q$ has degree 2017 . Thus we may write
$$
Q(x)=x^{2} P(x)-1=(x-1)(x-2) \ldots(x-2016) L(x)
$$
where $L(x)$ is some linear polynomial. Then $Q(0)=-1=(-1)(-2) \ldots(-2016) L(0)$, so $L(0)=-\frac{1}{2016!}$.
Now note that
$$
\begin{aligned}
Q^{\prime}(x) & =x^{2} P^{\prime}(x)+2 x P(x) \\
& =\sum_{i=1}^{2016}(x-1) \ldots(x-(i-1))(x-(i+1)) \ldots(x-2016) L(x)+(x-1)(x-2) \ldots(x-2016) L^{\prime}(x)
\end{aligned}
$$
Thus
$$
Q^{\prime}(0)=0=L(0)\left(\frac{2016!}{-1}+\frac{2016!}{-2}+\ldots+\frac{2016!}{-2016}\right)+2016!L^{\prime}(0)
$$
whence $L^{\prime}(0)=L(0)\left(\frac{1}{1}+\frac{1}{2}+\ldots+\frac{1}{2016}\right)=-\frac{H_{2016}}{2016!}$, where $H_{n}$ denotes the $n$th harmonic number.
As a result, we have $L(x)=-\frac{H_{2016} x+1}{2016!}$. Then
$$
Q(2017)=2017^{2} P(2017)-1=2016!\left(-\frac{2017 H_{2016}+1}{2016!}\right)
$$
which is $-2017 H_{2016}-1$. Thus
$$
P(2017)=\frac{-H_{2016}}{2017}
$$
From which we get $2017 P(2017)=-H_{2016}$. It remains to approximate $H_{2016}$. We alter the well known approximation
$$
H_{n} \approx \int_{1}^{n} \frac{1}{x} d x=\log x
$$
to
$$
H_{n} \approx 1+\frac{1}{2}+\int_{3}^{n} \frac{1}{x} d x=1+\frac{1}{2}+\log (2016)-\log (3) \approx \log (2016)+\frac{1}{2}
$$
so that it suffices to lower bound $\log (2016)$. Note that $e^{3} \approx 20$, which is close enough for our purposes. Then $e^{6} \approx 400 \Longrightarrow e^{7} \approx 1080$, and $e^{3} \approx 20<2^{5} \Longrightarrow e^{0.6} \ll 2 \Longrightarrow e^{7.6}<2016$, so that $\log (2016)>7.6$. It follows that $H_{2016} \approx \log (2016)+0.5=7.6+0.5>8$ (of course these are loose estimates, but more than good enough for our purposes). Thus $-9<2017 P(2017)<-8$, making our answer -9 .
Alternatively, a well-read contestant might know that $H_{n} \approx \log n+\gamma$, where $\gamma \approx .577$ is the EulerMascheroni constant. The above solution essentially approximates $\gamma$ as 0.5 which is good enough for our purposes.
|
{
"resource_path": "HarvardMIT/segmented/en-202-2017-feb-algnt-solutions.jsonl",
"problem_match": "\n6. ",
"solution_match": "\nProposed by: Alexander Katz\n"
}
|
3a70bb42-c9f4-5678-a7d6-95f2e660b251
| 609,643
|
Determine the largest real number $c$ such that for any 2017 real numbers $x_{1}, x_{2}, \ldots, x_{2017}$, the inequality
$$
\sum_{i=1}^{2016} x_{i}\left(x_{i}+x_{i+1}\right) \geq c \cdot x_{2017}^{2}
$$
holds.
|
Answer: $-\frac{1008}{2017}$
Let $n=2016$. Define a sequence of real numbers $\left\{p_{k}\right\}$ by $p_{1}=0$, and for all $k \geq 1$,
$$
p_{k+1}=\frac{1}{4\left(1-p_{k}\right)}
$$
Note that, for every $i \geq 1$,
$$
\left(1-p_{i}\right) \cdot x_{i}^{2}+x_{i} x_{i+1}+p_{i+1} x_{i+1}^{2}=\left(\frac{x_{i}}{2 \sqrt{p_{i+1}}}+\sqrt{p_{i+1}} x_{i+1}\right)^{2} \geq 0
$$
Summing from $i=1$ to $n$ gives
$$
\sum_{i=1}^{n} x_{i}\left(x_{i}+x_{i+1}\right) \geq-p_{n+1} x_{n+1}^{2}
$$
One can show by induction that $p_{k}=\frac{k-1}{2 k}$. Therefore, our answer is $-p_{2017}=-\frac{1008}{2017}$.
|
-\frac{1008}{2017}
|
Yes
|
Yes
|
math-word-problem
|
Inequalities
|
Determine the largest real number $c$ such that for any 2017 real numbers $x_{1}, x_{2}, \ldots, x_{2017}$, the inequality
$$
\sum_{i=1}^{2016} x_{i}\left(x_{i}+x_{i+1}\right) \geq c \cdot x_{2017}^{2}
$$
holds.
|
Answer: $-\frac{1008}{2017}$
Let $n=2016$. Define a sequence of real numbers $\left\{p_{k}\right\}$ by $p_{1}=0$, and for all $k \geq 1$,
$$
p_{k+1}=\frac{1}{4\left(1-p_{k}\right)}
$$
Note that, for every $i \geq 1$,
$$
\left(1-p_{i}\right) \cdot x_{i}^{2}+x_{i} x_{i+1}+p_{i+1} x_{i+1}^{2}=\left(\frac{x_{i}}{2 \sqrt{p_{i+1}}}+\sqrt{p_{i+1}} x_{i+1}\right)^{2} \geq 0
$$
Summing from $i=1$ to $n$ gives
$$
\sum_{i=1}^{n} x_{i}\left(x_{i}+x_{i+1}\right) \geq-p_{n+1} x_{n+1}^{2}
$$
One can show by induction that $p_{k}=\frac{k-1}{2 k}$. Therefore, our answer is $-p_{2017}=-\frac{1008}{2017}$.
|
{
"resource_path": "HarvardMIT/segmented/en-202-2017-feb-algnt-solutions.jsonl",
"problem_match": "\n7. ",
"solution_match": "\nProposed by: Pakawut Jiradilok\n"
}
|
04567318-e354-5454-b6ec-f1f4b87a1f8a
| 609,644
|
The Fibonacci sequence is defined as follows: $F_{0}=0, F_{1}=1$, and $F_{n}=F_{n-1}+F_{n-2}$ for all integers $n \geq 2$. Find the smallest positive integer $m$ such that $F_{m} \equiv 0(\bmod 127)$ and $F_{m+1} \equiv 1(\bmod 127)$.
|
Answer: 256
First, note that 5 is not a quadratic residue modulo 127. We are looking for the period of the Fibonacci numbers $\bmod 127$. Let $p=127$. We work in $\mathbb{F}_{p^{2}}$ for the remainder of this proof. Let $\alpha$ and $\beta$ be the roots of $x^{2}-x-1$. Then we know that $F_{n}=\frac{\alpha^{n}-\beta^{n}}{\alpha-\beta}$. Note that since $x \rightarrow x^{p}$ is an automorphism and since automorphisms cycle the roots of a polynomial we have that $\alpha^{p}=\beta$ and $\beta^{p}=\alpha$. Then $F_{p}=\frac{\alpha^{p}-\beta^{p}}{\alpha-\beta}=-1$ and $F_{p+1}=\frac{\alpha \beta-\beta \alpha}{\alpha-\beta}=0$ and similarly we obtain $F_{2 p+1}=1$ and $F_{2 p+2}=0$. Thus since $2 p+2$ is a power of 2 and since the period does not divide $p+1$, we must have the answer is $2 p+2=256$.
|
256
|
Yes
|
Yes
|
math-word-problem
|
Number Theory
|
The Fibonacci sequence is defined as follows: $F_{0}=0, F_{1}=1$, and $F_{n}=F_{n-1}+F_{n-2}$ for all integers $n \geq 2$. Find the smallest positive integer $m$ such that $F_{m} \equiv 0(\bmod 127)$ and $F_{m+1} \equiv 1(\bmod 127)$.
|
Answer: 256
First, note that 5 is not a quadratic residue modulo 127. We are looking for the period of the Fibonacci numbers $\bmod 127$. Let $p=127$. We work in $\mathbb{F}_{p^{2}}$ for the remainder of this proof. Let $\alpha$ and $\beta$ be the roots of $x^{2}-x-1$. Then we know that $F_{n}=\frac{\alpha^{n}-\beta^{n}}{\alpha-\beta}$. Note that since $x \rightarrow x^{p}$ is an automorphism and since automorphisms cycle the roots of a polynomial we have that $\alpha^{p}=\beta$ and $\beta^{p}=\alpha$. Then $F_{p}=\frac{\alpha^{p}-\beta^{p}}{\alpha-\beta}=-1$ and $F_{p+1}=\frac{\alpha \beta-\beta \alpha}{\alpha-\beta}=0$ and similarly we obtain $F_{2 p+1}=1$ and $F_{2 p+2}=0$. Thus since $2 p+2$ is a power of 2 and since the period does not divide $p+1$, we must have the answer is $2 p+2=256$.
|
{
"resource_path": "HarvardMIT/segmented/en-202-2017-feb-algnt-solutions.jsonl",
"problem_match": "\n9. ",
"solution_match": "\nProposed by: Sam Korsky\n"
}
|
adb0000f-a5b7-57a4-a7ee-8cf971416489
| 609,646
|
Let $\mathbb{N}$ denote the natural numbers. Compute the number of functions $f: \mathbb{N} \rightarrow\{0,1, \ldots, 16\}$ such that
$$
f(x+17)=f(x) \quad \text { and } \quad f\left(x^{2}\right) \equiv f(x)^{2}+15 \quad(\bmod 17)
$$
for all integers $x \geq 1$.
|
Answer: 12066
By plugging in $x=0$, we get that $f(0)$ can be either $-1,2$. As $f(0)$ is unrelated to all other values, we need to remember to multiply our answer by 2 at the end. Similarly, $f(1)=-1$ or 2 .
Consider the graph $x \rightarrow x^{2}$. It is a binary tree rooted at -1 , and there is an edge $-1 \rightarrow 1$, and a loop $1 \rightarrow 1$. Our first case is $f(1)=-1$. Note that if $x, y$ satisfy $x^{2}=y$, then $f(y) \neq 1$. Otherwise, we would have $f(x)^{2}=3(\bmod 17)$, a contradiction as 3 is a nonresidue. So only the 8 leaves can take the value 1 . This contributes $2^{8}$.
For $f(1)=2$, we can once again propagate down the tree. While it looks like we have 2 choices at each node (for the square roots), this is wrong, as if $f(x)=-2$ and $y^{2}=x$, then $f(y)=0$ is forced.
Given this intuition, let $a_{n}$ denote the answer for a binary tree of height $n$ where the top is either - 2 or 2 . Therefore, $a_{1}=2, a_{2}=5$. You can show the recurrence $a_{n}=a_{n-1}^{2}+2^{2^{n}-4}$. This is because if the top is 2 , then we get a contribution of $a_{n-1}^{2}$. If the top is -2 , then both entries below it must be 0 . After that, you can show that each of the remaining $2^{n}-4$ vertices can be either of 2 possible square roots. Therefore, we get the recurrence as claimed. One can compute that $a_{4}=5777$, so we get the final answer $2(256+5777)=12066$.
|
12066
|
Yes
|
Yes
|
math-word-problem
|
Number Theory
|
Let $\mathbb{N}$ denote the natural numbers. Compute the number of functions $f: \mathbb{N} \rightarrow\{0,1, \ldots, 16\}$ such that
$$
f(x+17)=f(x) \quad \text { and } \quad f\left(x^{2}\right) \equiv f(x)^{2}+15 \quad(\bmod 17)
$$
for all integers $x \geq 1$.
|
Answer: 12066
By plugging in $x=0$, we get that $f(0)$ can be either $-1,2$. As $f(0)$ is unrelated to all other values, we need to remember to multiply our answer by 2 at the end. Similarly, $f(1)=-1$ or 2 .
Consider the graph $x \rightarrow x^{2}$. It is a binary tree rooted at -1 , and there is an edge $-1 \rightarrow 1$, and a loop $1 \rightarrow 1$. Our first case is $f(1)=-1$. Note that if $x, y$ satisfy $x^{2}=y$, then $f(y) \neq 1$. Otherwise, we would have $f(x)^{2}=3(\bmod 17)$, a contradiction as 3 is a nonresidue. So only the 8 leaves can take the value 1 . This contributes $2^{8}$.
For $f(1)=2$, we can once again propagate down the tree. While it looks like we have 2 choices at each node (for the square roots), this is wrong, as if $f(x)=-2$ and $y^{2}=x$, then $f(y)=0$ is forced.
Given this intuition, let $a_{n}$ denote the answer for a binary tree of height $n$ where the top is either - 2 or 2 . Therefore, $a_{1}=2, a_{2}=5$. You can show the recurrence $a_{n}=a_{n-1}^{2}+2^{2^{n}-4}$. This is because if the top is 2 , then we get a contribution of $a_{n-1}^{2}$. If the top is -2 , then both entries below it must be 0 . After that, you can show that each of the remaining $2^{n}-4$ vertices can be either of 2 possible square roots. Therefore, we get the recurrence as claimed. One can compute that $a_{4}=5777$, so we get the final answer $2(256+5777)=12066$.
|
{
"resource_path": "HarvardMIT/segmented/en-202-2017-feb-algnt-solutions.jsonl",
"problem_match": "\n10. ",
"solution_match": "\nProposed by: Yang Liu\n"
}
|
6d8b68a4-357f-5d57-9bf4-ae3361210986
| 609,647
|
Kelvin the Frog is going to roll three fair ten-sided dice with faces labelled $0,1,2, \ldots, 9$. First he rolls two dice, and finds the sum of the two rolls. Then he rolls the third die. What is the probability that the sum of the first two rolls equals the third roll?
|
Answer:

First, there are $10^{3}=1000$ triples $(a, b, c)$. Now, we should count how many of these triples satisfy $a+b=c$. If $c=0$, we get 1 triple $(0,0,0)$. If $c=1$, we get two triples $(1,0,1)$ and $(0,1,1)$. Continuing, this gives that the total number of triples is $1+2+\cdots+10=55$. Therefore, our final answer is $\frac{55}{1000}=\frac{11}{200}$.
|
\frac{11}{200}
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
Kelvin the Frog is going to roll three fair ten-sided dice with faces labelled $0,1,2, \ldots, 9$. First he rolls two dice, and finds the sum of the two rolls. Then he rolls the third die. What is the probability that the sum of the first two rolls equals the third roll?
|
Answer:

First, there are $10^{3}=1000$ triples $(a, b, c)$. Now, we should count how many of these triples satisfy $a+b=c$. If $c=0$, we get 1 triple $(0,0,0)$. If $c=1$, we get two triples $(1,0,1)$ and $(0,1,1)$. Continuing, this gives that the total number of triples is $1+2+\cdots+10=55$. Therefore, our final answer is $\frac{55}{1000}=\frac{11}{200}$.
|
{
"resource_path": "HarvardMIT/segmented/en-202-2017-feb-comb-solutions.jsonl",
"problem_match": "\n1. ",
"solution_match": "\nProposed by: Yang Liu\n"
}
|
50161e57-7556-5e0b-a522-13205b78dbb8
| 609,648
|
How many ways are there to insert +'s between the digits of 111111111111111 (fifteen 1's) so that the result will be a multiple of 30 ?
|
Answer: 2002
Note that because there are 151 's, no matter how we insert +'s, the result will always be a multiple of 3. Therefore, it suffices to consider adding +'s to get a multiple of 10 . By looking at the units digit, we need the number of summands to be a multiple of 10 . Because there are only 15 digits in our number, we have to have exactly 10 summands. Therefore, we need to insert $9+$ 's in 14 possible positions, giving an answer of $\binom{14}{9}=2002$.
|
2002
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
How many ways are there to insert +'s between the digits of 111111111111111 (fifteen 1's) so that the result will be a multiple of 30 ?
|
Answer: 2002
Note that because there are 151 's, no matter how we insert +'s, the result will always be a multiple of 3. Therefore, it suffices to consider adding +'s to get a multiple of 10 . By looking at the units digit, we need the number of summands to be a multiple of 10 . Because there are only 15 digits in our number, we have to have exactly 10 summands. Therefore, we need to insert $9+$ 's in 14 possible positions, giving an answer of $\binom{14}{9}=2002$.
|
{
"resource_path": "HarvardMIT/segmented/en-202-2017-feb-comb-solutions.jsonl",
"problem_match": "\n2. ",
"solution_match": "\nProposed by: Yang Liu\n"
}
|
c5e6ad5a-4be3-519e-8b9a-7830a304276a
| 609,649
|
There are 2017 jars in a row on a table, initially empty. Each day, a nice man picks ten consecutive jars and deposits one coin in each of the ten jars. Later, Kelvin the Frog comes back to see that $N$ of the jars all contain the same positive integer number of coins (i.e. there is an integer $d>0$ such that $N$ of the jars have exactly $d$ coins). What is the maximum possible value of $N$ ?
|
Answer: 2014
Label the jars $1,2, \ldots, 2017$. I claim that the answer is 2014 . To show this, we need both a construction and an upper bound. For the construction, for $1 \leq i \leq 201$, put a coin in the jars $10 i+1,10 i+$ $2, \ldots, 10 i+10$. After this, each of the jars $1,2, \ldots, 2010$ has exactly one coin. Now, put a coin in each of the jars $2008,2009, \ldots, 2017$. Now, the jars $1,2, \ldots, 2007,2011,2012, \ldots, 2017$ all have exactly one coin. This gives a construction for $N=2014$ (where $d=1$ ).
Now, we show that this is optimal. Let $c_{1}, c_{2}, \ldots, c_{2017}$ denote the number of coins in each of the jars. For $1 \leq j \leq 10$, define
$$
s_{j}=c_{j}+c_{j+10}+c_{j+20}+\ldots
$$
Note that throughout the process, $s_{1}=s_{2}=\cdots=s_{j}$. It is also easy to check that the sums $s_{1}, s_{2}, \ldots, s_{7}$ each involve 202 jars, while the sums $s_{8}, s_{9}, s_{10}$ each involve 201 jars.
Call a jar good if it has exactly $d$ coins. If there are at least 2015 good jars, then one can check that it is forced that at least one of $s_{1}, s_{2}, \ldots, s_{7}$ only involves good jars, and similarly, at least one of $s_{8}, s_{9}, s_{10}$ only involves good jars. But this would mean that $202 d=201 d$ as all $s_{i}$ are equal, contradiction.
|
2014
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
There are 2017 jars in a row on a table, initially empty. Each day, a nice man picks ten consecutive jars and deposits one coin in each of the ten jars. Later, Kelvin the Frog comes back to see that $N$ of the jars all contain the same positive integer number of coins (i.e. there is an integer $d>0$ such that $N$ of the jars have exactly $d$ coins). What is the maximum possible value of $N$ ?
|
Answer: 2014
Label the jars $1,2, \ldots, 2017$. I claim that the answer is 2014 . To show this, we need both a construction and an upper bound. For the construction, for $1 \leq i \leq 201$, put a coin in the jars $10 i+1,10 i+$ $2, \ldots, 10 i+10$. After this, each of the jars $1,2, \ldots, 2010$ has exactly one coin. Now, put a coin in each of the jars $2008,2009, \ldots, 2017$. Now, the jars $1,2, \ldots, 2007,2011,2012, \ldots, 2017$ all have exactly one coin. This gives a construction for $N=2014$ (where $d=1$ ).
Now, we show that this is optimal. Let $c_{1}, c_{2}, \ldots, c_{2017}$ denote the number of coins in each of the jars. For $1 \leq j \leq 10$, define
$$
s_{j}=c_{j}+c_{j+10}+c_{j+20}+\ldots
$$
Note that throughout the process, $s_{1}=s_{2}=\cdots=s_{j}$. It is also easy to check that the sums $s_{1}, s_{2}, \ldots, s_{7}$ each involve 202 jars, while the sums $s_{8}, s_{9}, s_{10}$ each involve 201 jars.
Call a jar good if it has exactly $d$ coins. If there are at least 2015 good jars, then one can check that it is forced that at least one of $s_{1}, s_{2}, \ldots, s_{7}$ only involves good jars, and similarly, at least one of $s_{8}, s_{9}, s_{10}$ only involves good jars. But this would mean that $202 d=201 d$ as all $s_{i}$ are equal, contradiction.
|
{
"resource_path": "HarvardMIT/segmented/en-202-2017-feb-comb-solutions.jsonl",
"problem_match": "\n3. ",
"solution_match": "\nProposed by: Kevin Sun\n"
}
|
4b1d42b6-6b63-5bea-99b5-ff43e2b3c4dc
| 609,650
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.