I came across this problem online and it has been in the back of my mind ever since. I'm currently taking a probability course so please forgive my limited knowledge if I'm missing a key concept.
Problem. Let's play a dice game with two players. Both players roll a fair dice. The winner gains a number of points equal to the difference of the two dice (if same number are rolled, the round is tied and no points are won/lost). E.g. player 1 rolls a $5$, player 2 rolls a $3$, player 1 wins, and gains $(5-3=2)$ points.
The game ends if a player reaches 20 points or more. If after 10 rounds and no one has 20 points, no one wins.
Question. What is the expected number of points gained in each round by the winning player?
My Work So Far. Intuitively, I wanted to take the conditional probability of gaining $1-5$ points and multiply those probabilities with their associated points and add these products which should give me the expected number of points gained in each round.
Let event $A_i$ be the event that the winning player gains $i$ points. The chance of winning a round is $\frac{15}{36}$, so:
$A_i=P(\text{gaining i points}|\text{winning})$
So my answer is:
$\sum_{i=1}^{5}i\times A_i=\sum_{i=1}^{5}i\times\frac{(6-i)/36}{15/36}=\frac{7}{3}$
This is sadly not the answer, I feel like I'm missing a key insight or I'm tackling this problem with the wrong concepts.
Clarification It seems like my work was to just calculate a single round. I feel very lost in an analytical solution for an entire game. By "winner" I meant the winner of the entire game. The winner is determined if they ever reach 20 points or more.