8
Part of 2021 MOAA
Problems(4)
Speed P8
Source:
10/16/2021
Andrew chooses three (not necessarily distinct) integers , , and independently and uniformly at random from . Let be the probability that is divisible by . If can be written as for relatively prime positive integers and , then compute .Proposed by Andrew Wen
MOAA 2021speed
Accuracy P8
Source:
10/16/2021
Will has a magic coin that can remember previous flips. If the coin has already turned up heads times and tails times, the probability that the next flip turns up heads is exactly . Suppose that the coin starts at flips. The probability that after coin flips, heads and tails have both turned up exactly times can be expressed as for relatively prime positive integers and . Compute .Proposed by Nathan Xiong
MOAA 2021Accuracy
Team Round P8
Source:
10/16/2021
Evaluate
Proposed by Nathan Xiong
MOAA 2021team
Gunga P8
Source:
10/16/2021
Compute the number of triangles of different sizes which contain the gray triangle in the figure below.[asy]
size(5cm);
real n = 4;
for (int i = 0; i < n; ++i) {
draw((0.5*i,0.866*i)--(n-0.5*i,0.866*i));
}
for (int i = 0; i < n; ++i) {
draw((n-i,0)--((n-i)/2,(n-i)*0.866));
}
for (int i = 0; i < n; ++i) {
draw((i,0)--((n+i)/2,(n-i)*0.866));
}
filldraw((1.5,0.866)--(2,2*0.866)--(2.5,0.866)--cycle, gray);
[/asy]Proposed by Nathan Xiong
MOAA 2021Gunga