The Fiddler Basketball Association’s All-Star Game consists of two teams: “East” and “West.” Every year these two teams play a game, each with a 50 percent chance of winning that’s independent of the outcomes of previous years.
Many, many years into the future, you look at the most recent results of the All-Star Game. On average, what is the longest current winning streak that one of the teams is on? (Here, having won only the most recent game still counts as a “streak” of one game.)
Assume true.
$$M_k = \dfrac{1}{2^k}\sum \limits_{n=1}^k 2^n$$For each streak in Year $k$ one of two things can happen:
The total sum of all max streaks thus increases by $2^{k+1}$.
\begin{align*} M_{k+1} &= \dfrac{2^k \cdot M_k + 2^{k+1}}{2^{k+1}}\\ &= \dfrac{\sum \limits_{n=1}^k 2^n + 2^{k+1}}{2^{k+1}}\\ &= \dfrac{\sum \limits_{n=1}^{k+1} 2^n}{2^{k+1}}\\ &= \dfrac{2^{k+2}-2}{2^{k+1}} \end{align*}The answer is
$$\boxed{2}$$To spice up the All-Star Game, the commissioner of the FBA has decided that there will now be three teams competing in All-Star Games: “Stars,” “Stripes,” and “International.” Each year, two of the three teams play each other. If one year has Stars vs. Stripes, the next year has Stripes vs. International, the year after that has International vs. Stars, and then the cycle repeats with Stars vs. Stripes.
Many, many years after this new format has been adopted, you look at the most recent results of the All-Star game. On average, what is the longest current winning streak that one of the teams is on? (As before, having won one game counts as a “streak.” Also, note that the team with the longest winning streak might not be one of the two teams that played in the most recent All-Star Game.)
Let $[s, t, i]$ represent the streak of wins in an outcome for “Stars,” “Stripes,” and “International”.
I wrote code that did the following :
The answer quickly converges to
$$\boxed{2.5}$$The average streak for each team is $2$, from Fiddler above. It seems to me that half the time the longest streak holder increases by 1, and half the time the longest streak is an average of 2, for the team that is not playing.
This would translate to
$$M_{k+1} = \dfrac{2^k \cdot M_k + 2^k + 2^{k+1}}{2^{k+1}}$$
which would converge to $2.5$, but I did not come up with a clean proof.