Sunday, November 8, 2020

Putting Santul through his paces

Santul completes two 20 mile training runs with different pace profiles:

1) A constant 9 minute mile pace (which is impressive both physically and for its consistency); and

2) His pace starts at 10 minutes per mile and then linearly decreases to 8 minutes per mile over the course of the race. So for instance, when Santul is halfway done with the race (in time, not distance), his pace is 9 minutes per mile.

The question is: which run did he complete faster and what were the two times?

Santul's 9 minute mile run will complete in $9 \,\text{min} \, / \, \text{mile}\, \cdot 20 \,\text{miles} = 180 \,\text{minutes}.$

Let's now look at the second run. Let $$p(t) = a + bt$$ be the linear function of Santul's pace at time $t$. From the initial data we know that $$p(0) = a = 10$$ and that if $T$ is that time that Santul finishes his second run, then $$p(T) = 10 + b T = 8.$$ So $a = 10$ and $b = -\frac{2}{T}.$

We can convert Santul's pace into distance by integrating as follows $d(s) = \int_0^t \,\frac{ds}{p(s)},$ so given the 20 mile course was finished in $T$, we have $$20 = \int_0^T \,\frac{ds}{10 - \frac{2t}{T}} = -\frac{T}{2} \ln (\frac{8}{10}).$$ Solving for $T$ we get $$T = \frac{40}{\ln 1.25} = 179.256804709...$$ which is just a shade under the constant pace time.

Von Neumann's fair coin simulator

For any $p \in (0,1)$, von Neumann showed that an unfair coin which shows heads with probability $p$ can be used to simulate a fair coin by flipping twice, ignoring/redrawing for HH or TT and associating HT with T and TH with H. The issue is that depending on the value of $p,$ one might need to ignore/redraw for HH and TT outcomes for a very large number of tries before getting either TH or HT and exiting.

For what values of $p \in (0,1)$ is it possible to simulate a fair coin in at most $N$ flips?

While the phrasing on the question is a bit vague, I will assume two main frameworks for what "possible" means:

1) For what values of $p \in (0,1)$ is the expected number of flips needed to exit less than or equal to $N$?; or

2) Given some value of $q \in (0,1),$ for what values of $p \in (0,1)$ does the probability that the simulation exists in less than or equal to $N$ exceed $q$?

Let $T$ be the number of flips of the van Neumann simulator needed to exit. The probability that the van Neumann simulator exits after in one flip is $\mathbb{P}\{T = 1\} = 2p(1-p).$ The probability for $k > 1$ that it exits in $k$ flips is $\mathbb{P}\{ T = k \} = 2p(1-p) \cdot (1 - 2p(1-p))^{k-1}.$ So the average is \begin{align*}\mathbb{E}[T] &= \sum_{k=1}^\infty k \mathbb{P} \{ T = k \} = \sum_{k=1}^\infty k 2p(1-p) (1 - 2p(1-p))^{k-1}\\ &= 2p(1-p) \frac{1}{(1 - (1-2p(1-p)))^2} = \frac{1}{2p(1-p)}.\end{align*}

So under framework 1, the question becomes solving for $p \in (0,1)$ such that $$\mathbb{E}_p [T] = \frac{1}{2p(1-p)} \leq N.$$ Thus the solution is $$p \in \left[\frac{1 - \sqrt{1-2/N}}{2}, \frac{1 + \sqrt{1 - 2/N}}{2} \right].$$

Under framework 2, the question becomes for some $q \in (0,1),$ solving for $p \in (0,1)$ such that $$\mathbb{P}_p \{ T \leq N \} = \sum_{k=1}^N 2p(1-p) (1 - 2p(1-p))^{k-1} = 1 - (1 - 2p(1-p))^N \geq q.$$ Since $2p(1-p) \in [0,0.5]$ for all $p \in (0,1),$ if $q > 1-2^{-N},$ then $\mathbb{P}_p \{T \leq N \} \lt q,$ for all $p \in (0,1).$ But for any $q \in [0, 1-2^{-N}],$ then $\mathbb{P}_p \{T \leq N \} \geq q$ for $$p \in \left[ \frac{1 - \sqrt{2 \sqrt[N]{1-q} - 1}}{2}, \frac{1 + \sqrt{ 2 \sqrt[N]{1-q} - 1}}{2} \right].$$

Sunday, November 1, 2020

A Game of Hot Pumpkin, or How I Was Left Holding the Chinese Remainder

In a game of Hot Pumpkin with $61$ people, the players count off clockwise upward from $1$ to $N$, eliminating the $N$th player and then then beginning again with the player to the left of the most recently eliminated. The integer value of $N$ is mutually agreed upon prior to beginning the game.

I start and say $1$, with the first eliminated player sitting $18$ spots to my left. Then Ricky starts up the next round and the person $31$ spots to her left is eliminated next. Zach both begins and is eliminated in the third round.

Based on the first three eliminations, what is the smallest value of $N$?

This game sets up as an example of the Chinese remainder theorem, which states that the system of congruences involved in this game, namely \begin{align*} N & \equiv 19 \mod 61 \\ N & \equiv 32 \mod 60 \\ N & \equiv 1 \mod 59,\end{align*} has a single unique solution in $\mathbb{Z}_{59 \cdot 60 \cdot 61} = \mathbb{Z}_{215940}.$

For any two congruences, $N \equiv a_1 \mod n_1$ and $N \equiv a_2 \mod n_2,$ with $\text{gcd}(n_1,n_2) = 1,$ we can use Euclidean algorithm to calculate the integer solution to $$m_1 n_1 + m_2 n_1 = 1$$ that is asserted by B\'{e}zout's identity. From here, we note that $$N = a_1 m_2 n_2 + a_2 m_1 n_1 \mod n_1 \cdot n_2 $$ is a solution to both congruences.

So in particular, we see that $(m_1, m_2) = (1, -1)$ is a solution to $61m_1 + 60m_2 = 1$ and hence $$N = 19 \cdot (-1) \cdot 60 + 32 \cdot 1 \cdot 61 \mod 61 \cdot 60 = 812 \mod 3660$$ is a solution to the first two congruences of our game of Hot Pumpkin.

Continuing onward, we can use the extended Euclidean algorithm to find that the solution to $3660m_1 + 59m_2 = 1$ is $(m_1, m_2) = (-29, 1799).$ This gives the smallest possible solution to all three congruences as \begin{align*}N &= 812 \cdot 1799 \cdot 59 + 1 \cdot (-29) \cdot 3660 \mod 3660 \cdot 59\\ &= 86080352 \mod 215940 \equiv 136232.\end{align*}

Sunday, September 13, 2020

Climbing the mountains of Tour de FiveThirtyEight

You and three other, equally talented bicyclists are competing to get up the mountain to accrue points: 5 for first, 3 for second, 2 for third and 1 for last places, respectively.
Since you are all equally talented, the relative rankings of your average speeds for this stage should all be equally likely outcomes. However, two of your competitors are on a team and through a clever use of drafting off of one another will be able to both finish at roughly the same time as the faster of the two teammates.

Given that two of your competitors are working together, what is your expected number of points on this stage?
Let's call your average speed $A,$ the average speeds of the two teammates $B$ and $B^\prime,$ and the average speed of other individual competitor $C.$ Given that there only $24$ possible, equally likely orderings of $A,$ $B,$ $B^\prime,$ and $C,$ we will go with brute force to calculate the expected number of points for this stage.

If $A > \max\{ B, B^\prime \}$, then all of the teammate's schemings are for nought, and you will get the place that you rightfully deserve. There are 6 orderrings with $A > C$ and $A > \max \{B, B^\prime\}$, where you are in first and get $5$ points.
There are another 2 orderrings where $C > A > \max\{B, B^\prime\}$, where you place 2nd and receive $3$ points.

Similarly, if $\min \{B, B^\prime\} > A,$ then the cooperative advantage is also nill from your perspective. These cases cover the 6 orderings where $C > A$ and $\min\{ B, B^\prime\} > A$ where you were in last place and receive $1$ point.

There are also 2 orderings where $\min\{B, B^\prime\} > A > C$ and you finish in 3rd place receiving $2$ points.

The teamwork only affects you when either $B > A > B^\prime$ or $B^\prime > A > B.$ There are four possible orderings with $A$ between $B$ and $B^\prime$ and $A$ the second largest number in $\{A, B, B^\prime, C\}.$ In this case, though rightfully you should have finished in second place the slower of $B$ and $B^\prime$ gets pulled ahead of you by the faster and you place in 3rd, receiving $2$ points.
Similarly, there are 4 possible orderings with $A$ between $B$ and $B^\prime$ and $A$ the third largest number in $\{A, B, B^\prime, C\}.$ In this case, though rightfully you should have finished in third place, the slower of $B$ and $B^\prime$ gets pulled ahead of you by the faster and you place last, receiving $1$ point.

Summing up all of the points, we get $$6 \cdot 5 + 2 \cdot 3 + 6 \cdot 1 + 2 \cdot 2 + 4 \cdot 2 + 4 \cdot 1 = 58 \text{points,}$$ for an average of $2.41\bar{6}$ points.

Meanwhile in the absences of the teammate shenaniganry, your expected points is the simple average of the points $\frac{5+3+2+1}{4} = 2.75,$ so teammates cost you only a third of a point.

Saturday, September 12, 2020

Pickup basketball teams

The number of ballers from each of Blacksburg, Greensboro and Silver Spring who show up to a pickup basketball game each week is identically and independently distributed as the uniform distribution on $\{1, 2, 3, 4, \dots, N\},$ for some integer $N.$

What is the probability that, on any given week, it’s possible to form two equal teams with everyone playing, where two towns are pitted against the third?

Let $B,$ $G$ and $S$ be the number of players who showed up from Blacksburg, Greensboro and Silver Spring, respectively. Without loss of generality, let's assume that $S$ is the largest and we seek the number of configurations where $B+G=S.$

First note that if $S$ is the maximum, then no such configurations can occur if $S=1(=B=G).$ For any $S = 2, \dots, N,$ there are $S-1$ different combinations of integers $B$ and $G,$ such that $B+G=S;$ those being $(B,G) \in \{ (1,S-2), (2, S-3), \dots, (S-3, 2), (S-1, 1) \}.$ So the total number of games where $B+G=S$ is $$\sum_{S=2}^N (S-1) = \frac{N(N-1)}{2}.$$
From symmetry, we get three times this number (since we arbitrarily assumed that $S$ was the maximum, but it could equally likely be $B$ or $G$), so the total number of configurations where two equal teams where two towns are pitted against the third are $3 \frac{N(N-1)}{2}.$ The total number of possible configurations of players to show up on a given week is $N^3,$ so the probability is \[p_N = \frac{3(N-1)}{2N^2}.\]
In particular, if $N = 5,$ then the probability is $p_5 = 24\%.$

Sunday, July 26, 2020

Electoral College Shenanigans

Given the division of Riddler Township into 10 unevenly populated shire, what is the lowest popular vote total that a winning candidate can achieve?
First, let's note that there are a total of $(3 + 4 + \dots + 12) = 75$ electors, so the winning candidate must amass at least $38$ electors.
If shire $k$ has population $P_k$, the lowest popular vote within shire $k$ for a winning candidate is achieved by receiving $\frac{P_k+1}{2}$ votes if shire $k$ is won and $0$ if shire $k$ is lost by that candidate.
Let $x_k \in \{0,1\}$ with $x_k=1$ denoting ``candidate wins shire $k$''. Then the minimal number of votes to achieve the outcome $x = (x_1, \dots, x_{10}) \in \{0,1\}^{10}$ is $$c(x) = \sum_{k=1}^{10} \frac{P_k+1}{2} x_k = \sum_{k=1}^{10} (5k+1) x_k.$$ Additionally, the formula for the number of electors achieved by the outcome $x$ is $E(x) = \sum_{k=1}^{10} (2+k) x_k.$
This electoral problem can be recast as the following knapsack problem:
$$\min \left\{ c(x) = \sum_{k=1}^{10} (5k+1) x_k : E(x) = \sum_{k=1}^{10} (2+k) x_k \geq 38, x \in \{0,1\}^{10} \right\}.$$ Solving this knapsack problem, we see that if a candidate wins $1-$, $2-$, $3-$, $4-$, $7-$, and $9-$shires with the minimal number of votes, then they would receive $38$ electors based on $136$ votes, or just $24.3\%$ of the popular vote.

Sunday, July 19, 2020

The Indianapolis F(t)

Can the Hare Beat the Tortoise? Given his ability to outpace Tortoise by $25\%$, the mathematically minded Hare wants to minimize his margin of victory over his longtime foe. The magical racetrack expands proportionally by 10 miles instantaneously at each minute. Based on the magically expanding track length, Hare wants to know:
How long after the race has begun should Hare wait so that both Tortoise and Hare will cross the finish line at the same exact moment?
First, we will figure out how long it will take Tortoise to finish. To do so, since the total length is dynamic but expands proportionally, we will instead focus on the ratio of the track completed at time $t$. The total track length is $$F(t) = 10 (1 + \lfloor t \rfloor).$$ Thus, while the Tortoise's speed may be fixed at $60$ mph with respect to a fixed vantage point, Tortoise's closing speed with respect to the track length is $$v_T(t) = \frac{ 1 \,\,\text{miles / minute} }{ F(t)\,\, \text{miles / track}} = \frac{1}{10 (1 + \lfloor t \rfloor)}\,\, \text{track / minute}.$$ Tortoise will then finish the track at time $\tau$ such that $$\int_0^\tau v_T(t) \,dt = \sum_{k=0}^{\lfloor \tau \rfloor} \frac{1}{10(k+1)} + \frac{\tau - \lfloor \tau \rfloor}{10 (1 + \lceil\tau \rceil)} = 1.$$ Ignoring the ceilings and floors, gives us roughly $\frac{1}{10} H_{\tau+1} \approx \frac{ \ln (\tau+1) + \gamma }{10} = 1,$ so $\tau \approx \lceil e^{10 - \gamma} \rceil - 1 = 12366$ where $\gamma=0.57721....$ is the Euler-Mascheroni constant. Root solving further gives $\tau = 12365.4681....$

Knowing when Tortoise will complete the track allows our very mathematically inclined Hare to back into when he should start. Hare's relative velocity is $$v_H(t) = \frac{3}{2(1+\lfloor t\rfloor)},$$ if $t \geq t_0$ and $v_H(t) = 0$ if $t \leq t_0.$ So then we need to find $t_0$ such that \begin{align*}\int_0^\tau v_H(t) \, dt &= \int_{t_0}^\tau v_H(t) \,dt \\&= \frac{ 3(\lceil t_0 \rceil - t_0) }{20 (1 + \lfloor t_0 \rfloor)} + \sum_{k=\lceil t_0 \rceil}^{\lfloor \tau \rfloor} \frac{3}{20(k+1)} + \frac{3(\tau - \lfloor \tau \rfloor)}{20(1 + \lceil \tau \rceil)} = 1.\end{align*} If we ignore the first and last terms then we have approximately $\frac{3}{20} \ln \frac{\tau}{t_0} \approx 1,$ which should give $t_0 \approx \tau e^{-20/3} \approx 15.$ Root solving further gives $$\mathbf{t_0 = 15.2416....} \,\, \textbf{minutes}.$$