Expected number of rallies to win a game

  • Thread starter musicgold
  • Start date
  • Tags
    Game
In summary, the conversation discusses the problem of determining the average number of rallies it takes for a player to win a game of squash, based on their 60% chance of winning a rally. The initial approach was to simplify the problem and use a decision tree, but it was deemed too complicated. The conversation then shifts to using the combination formula and probability to determine the number of rallies it takes for a player to win a game. The final formula is derived and the conversation ends with confirmation of its correctness.
  • #1
musicgold
304
19
Hi,

I am not sure I am solving this problem the correct way, as my answer seems too low.

Problem: In squash (a two player racquet game), the player who gets 9 points first wins the game. Whoever wins a rally gets the point, irrespective of who served the ball. I am ignoring other rules for the time being. If player A has the 60% chance of winning a rally, how many rallies, on average, will it take her to win a game?

Simplified problem: I assumed that it takes only 3 points, instead of 9, to win a game. Then I drew a decision tree and assumed that on average X number of rallies are required for player A to win a game. Based on that, I got the following four states, where W = won, L= lost.

W W W – Rallies required to win the game= 3

W W L - Rallies required = X + 1 - 2 = X -1

(subtracting 2, to account for 2 points already won, adding 1, to account for the wasted rally)

W L - Rallies required = X + 1 – 1 = X

L - Rallies required = X + 1


Then I got the following equation.

X = 3 * (0.6)^3 + (X-1) * 0.6^2 * 0.4 + X * 0.6 * 0.4 + (X+1) * 0.4

X = 0.784 X + 0.904


X = 4.19 -The Average number of rallies to win 3 points for Player A.

Is this a correct way of looking at this problem?

Thanks,

MG.
 
Physics news on Phys.org
  • #2
Hi musicgold! :smile:

oooh, you're making this far too complicated :cry:

especially if it was 9 instead of 3 …

Hint: if the game is won on the (n+1)th rally, and needs k+1 rallies to win, then what can you say about the first n rallies? :wink:
 
  • #3
tiny-tim,

Thanks. I am still not able to figure it out.
 
  • #4
If the game is won on the (n+1)th rally,

then exactly k of the first n rallies must have been won (and n-k must have been lost),

and the probability of that is … ? :smile:
 
  • #5
tiny-tim,

Thanks. Are you pointing me to the Binomial formula?

I think there is a problem with this approach. In the table below, the chance of A winning the game on the third rally is 0.216. 'Combin' means the combination term, and 'Term2' is the product term in the binomial formula. The problem starts on the second row. The four comibations in this case also includes the case WWWL, which was accounted for in the first row. Also the third row includes the combinations on the rows 1 and 2.

PHP:
Rallies	Won-A	lost-A	Combin	Term2	Chance of winning
3       	3    	0      	1    	0.216	  0.216
4       	3    	1      	4    	0.0864	  0.3456
5       	3    	2      	10    	0.03456	  0.3456

Also, we can't add these probabilities, as they represent different events. While 0.216 represents the chance of A wining in 3 rallies, 0.3456 on the second row, represents the chance of winning 3 rallies in four rallies.
 
  • #6
musicgold said:
The four comibations in this case also includes the case WWWL …

I don't really understand what you're doing here …

for 4 rallies, the last one must be a W …

so just count the combinations for the first 3 places (which must be 2 Ws and 1 L) …

as I said before, if the game is won on the (n+1)th rally, and needs k+1 rallies to win, then what can you say about the first n rallies?
 
  • #7
if the game is won on the (n+1)th rally, and needs k+1 rallies to win, then what can you say about the first n rallies?

The chance of that occurring = 0.6^(K+1) x 0.4^(n-K)

PHP:
Rally	Win	Lose	Chance
3	    3  	0		0.216
4	    3  	1		0.086
5	    3  	2		0.035
 
  • #8
musicgold said:
The chance of that occurring = 0.6^(K+1) x 0.4^(n-K)

No, that's the chance of one way of finishing on the (n+1)th rally, isn't it? …

but there are … how many ways? :smile:
 
  • #9
That means we are using the combination formula to find the other cases. And that is what the first term in the Binomial formula do.

For example, a win in 4 rallies can occur as any of the following.

1. LWWW
2. WLWW
3. WWLW
4. WWWL

However, the fourth case doesn't make any sense, because in that case the game would have been over on the 3rd rally.
 
  • #10
musicgold said:
That means we are using the combination formula to find the other cases. And that is what the first term in the Binomial formula do.

For example, a win in 4 rallies can occur as any of the following.

1. LWWW
2. WLWW
3. WWLW
4. WWWL

However, the fourth case doesn't make any sense, because in that case the game would have been over on the 3rd rally.

No … use the combination formula for the first 3 rallies, not all 4.
 
  • #11
Thanks.

I get it now.

3 rallies - possible combinations 2C2 =1, probability = 0.216

4 rallies - 3C2 = 3, proability =0.259

5 rallies - 4C2 = 6 , probability = 0.207


However these probabilities are not from the same event, and so I can't use them as weights to calculate the expected number of rallies to win a game.
 
Last edited:
  • #12
Just got up … :zzz:
musicgold said:
Thanks.

I get it now.

3 rallies - possible combinations 2C2 =1, probability = 0.216

4 rallies - 3C2 = 3, proability =0.259

5 rallies - 4C2 = 6 , probability = 0.207

That's right! :smile:

So the general formula for n+1 rallies is … ?
However these probabilities are not from the same event, and so I can't use them as weights to calculate the expected number of rallies to win a game.

What event?

There's no double-counting, so just plug the probabilities into the expectation formula. :smile:
 
  • #13
tiny-tim

Thanks for working with me on this. I never thought that the binomial formula can be used for situations in which events occur sequentially.

The probability of winning a game on n+1th rally and kth point

= n C k-1 * 0.6 k * 0.4n+1-k

One needs to get probailities for rallies between k and 2k-1.

Note that these probailities can't be directly used with the rally numbers to calculate the expected value. They need to be weighted based on the probability of player A winning the game.


As a result, the expected number of rallies to for A to win a 9 point game is 13.80 or 14.
 
  • #14
musicgold said:
The probability of winning a game on n+1th rally and kth point

= n C k-1 * 0.6 k * 0.4n+1-k

One needs to get probailities for rallies between k and 2k-1.

Yes. :smile:

Note that you can simplify it to 0.4n n C k-1 (0.6/0.4)k-1 :wink:
Note that these probailities can't be directly used with the rally numbers to calculate the expected value. They need to be weighted based on the probability of player A winning the game.

Not following you :confused:

the only weight needed is (n+1) :wink:
As a result, the expected number of rallies to for A to win a 9 point game is 13.80 or 14.

that was sudden!

where did that come from? :smile:
 
  • #15
Thanks.
the only weight needed is (n+1)
This is what I understand. In the three point game, if you simply multiply the # of rallies with the chance of winning and add those terms you get 2.719 as the answer. That is not the correct answer.
You need to convert these chances as a % of 0.682. Then use those percentages to weight the rallies and you get the answer : 3.99 or 4.
PHP:
Rallies	Chance of winning	Wt. Avg
3	      0.216	                 0.648
4	      0.259                    1.036
5	      0.207	                 1.035

Total      0.682	                 2.719

where did that come from?
I used the formula.
 
  • #16
musicgold said:
You need to convert these chances as a % of 0.682. Then use those percentages to weight the rallies and you get the answer : 3.99 or 4.

oh of course! :rolleyes:

i'd forgotten how the question was worded! :redface:
 
  • #17
tiny-tim,

I am trying to make the situation more realistic. In some countries, squash rules are a bit different, in that the server gets the point. For example, if Player A serves the ball and wins the rally, he gets the point. If Player A loses the rally, nobody gets a point, and Player B gets to serve, and so on. Again, the player who gets 9 points first wins the game.
Player A has a 60% chance of winning a rally, and we want to know the expected number of rallies to win a game for Player A.

Is it possible to find a solution to this problem the way we did it earlier or it gets too complicated?

Thanks,

MG.
 
  • #18
musicgold said:
Is it possible to find a solution to this problem the way we did it earlier or it gets too complicated?
It's possible, even easy. Just manipulate the probabilities until they match what you had before.

Before: probability p of winning a point, probability 1-p of the opponent winning a point.

Now: probability a of winning a point and 1-a of turning over the serve, at which point the probability is 1-b of the opponent winning a point and b of getting the serve back.

So p = a + (1-a)*b*a + (1-a)^2*b^2*a + ...

Let c = b(1 - a). Then p = a(1 + c + c^2 + ...) = a/(1-c) = a/(1 - b(1 - a)) = a/(1 + ab - b).

Now just solve the original problem with this value of p.
 
  • #19
tiny-tim,

I am kinda stuck with multiple questions and not able to think through this problem.

p = a/(1 + ab - b)

if a= 0.6, b =0.4 , then p= 0.714

Question 1 p=0.714. I understand the calculation part, but I find it a bit counter-intuitive that the chance of winning a point has increased even though the receiver has to struggle more to get a point, i.e he has to now win two consecutive rallies to earn a point.

If we use p and 1-p and calculate probabilities of winning a game as a certain combination of points, we the following table.

PHP:
A's points	B's points	Total points     Combin	Factor 2	Probability

9	          0	          9	          1	         0.048400	 5%
9	          1	          10	         9	         0.013829	12%
9	          2	          11	         45	         0.003951	18%
9	          3	          12	         165	         0.001129	19%
9	          4	          13	         495	         0.000323	16%
9	          5	          14	         1287         0.000092	12%
9	          6	          15	         3003         0.000026	8%
9	          7	          16	         6435         0.000008	5%
9	          8	          17	         12870       0.000002	3%

					                                    Total          97%

Thus almost 50% of the time, A will win the game on between 11 and 13 total points (not rallies).

Question 2. I do not understand how the probability of A winning has increased to 97%.



Calculating the number of rallies to win a game.

Winning a point could involve playing multiple rallies, sometimes as the server and sometimes as the receiver.

As we are interested in the average number of rallies A needs to play to win a 9 point game. I used the decision tree method to find average number of rallies (x) to win a point.

x = 0.6 + ( 0.4 * 0.6 *( x+2 ) )
x = 1.08 / 0.76 = 1.42

Question 3. This answer (x=1.42) seems counter-intutive as it is lower than the 1.67 we got in the case of the game where either server or receiver could win a rally ( one rally per won or lost point).

Now if we assume that x=1.42 rallies per point is the correct answer, how do I incorporate to find the average number of rallies to win a game?

Question 4. Should I find the expected number of rallies to win a point for B as well, and use it along with X=1.42 to calculate the average number of rallies in each case in the table above? I don’t know if this is making any sense to you.

Thanks,

MG.
 
  • #20
CRGreathouse,

I am sorry. I missed that you had replied to my last question on Feb 2. I mistakenly assumed that tiny-tim had replied it and I addressed the message to him.

Do you have any pointers for the questions in my last message on Feb 4?

Thanks,

MG.
 

What is the expected number of rallies to win a game?

The expected number of rallies to win a game depends on several factors, including the skill level of the players, the type of game being played, and the specific rules of the game. Generally, the higher the skill level of the players, the fewer rallies it takes to win a game.

How is the expected number of rallies to win a game calculated?

The expected number of rallies to win a game is calculated using a mathematical formula that takes into account the probability of winning each rally and the total number of rallies in a game. This formula can vary slightly depending on the specific game and rules being played.

Does the length of a game affect the expected number of rallies to win?

Yes, the length of a game can affect the expected number of rallies to win. In general, longer games will have a higher expected number of rallies to win, as there are more opportunities for both players to win rallies and extend the game.

Can the expected number of rallies to win a game be influenced by external factors?

Yes, external factors such as weather conditions, court surface, and equipment can potentially affect the expected number of rallies to win a game. For example, a game played on a slower court surface may have a higher expected number of rallies compared to a game played on a faster surface.

Is the expected number of rallies to win a game the same for all players?

No, the expected number of rallies to win a game can vary for different players. This is because each player has their own unique skill level and playing style, which can affect the outcome of each rally and ultimately, the expected number of rallies needed to win a game.

Similar threads

  • Set Theory, Logic, Probability, Statistics
Replies
7
Views
1K
  • Set Theory, Logic, Probability, Statistics
Replies
1
Views
796
  • Set Theory, Logic, Probability, Statistics
Replies
9
Views
1K
  • Set Theory, Logic, Probability, Statistics
Replies
1
Views
826
  • Set Theory, Logic, Probability, Statistics
Replies
1
Views
922
  • Set Theory, Logic, Probability, Statistics
Replies
4
Views
375
  • Set Theory, Logic, Probability, Statistics
Replies
3
Views
955
  • Set Theory, Logic, Probability, Statistics
Replies
2
Views
1K
  • General Math
Replies
6
Views
468
  • Set Theory, Logic, Probability, Statistics
Replies
5
Views
876
Back
Top