(If you could add a more suitable title, I'd be very grateful to you)
My friend gave me this question:
In the game of hand-cricket (hand baseball, if you like it :D) two players $X$ - the batsman and $Y$ - the bowler, randomly choose numbers from $1$ to $6$ (simultaneously). Now, if both put the same number, then player $X$ is declared out and the game ends (for $X$). If both put different numbers, then the score of $X$ is incremented by the number he chose. Before starting, the score of $X$ is $0$. If the game goes on like this, what is the most probable score of $X$?
For example, if $X$ and $Y$ start by choosing $1$ and $6$, then the score of $X$ is 1. If $X$ puts $3$ and $Y$ puts $1$, then the score of $X$ becomes $4$. If $X$ and $Y$ both put $5$, then $X$ is out and the final score is $4$.
The question was just to write a program to find the average score - nothing big at all. But I wondered if there should be an expected score.
The Question: Now, my question is why should there be a 'most probable score' at all? To investigate this, I just wrote a small program and it turns out that the average score is about $12$. Then, I changed the parameter $6$ to various numbers and I got various answers. If the parameter is increased, I get a greater average score and on reducing it, I get a lower average score. This seems quite sensible as by increasing the parameter, we are effectively reducing the chances of 'collision'. But is there any mathematical way to estimate the average score given a parameter $K$ such that the numbers chosen are between $1$ and $K$?
Please note that I am not familiar with 'advanced' probability and such stuff, so if possible, give the answer in an intuitive way! Maybe I am asking too much. In that case, you may just tell that it is way above my current 'level'.
Let $a$ be the expected score. Let's start the game. With probability $\frac{1}{6}$, the game will be over in one round, with score $0$. With probability $\frac{5}{6}$, we will get a score with expected value $\frac{7}{2}$, and get to play again, with expected additional score $a$. Thus $$a=\frac{1}{6}(0)+\frac{5}{6}\left(\frac{7}{2}+a\right).$$ Solve for $a$. We get $a=\frac{35}{2}$.