I'm trying to figure out the odds for a game where a number between 1 and 10 are drawn randomly, and the player must guess if the next number is higher or lower than the previous number. There can't be consecutive numbers. And to make the calculation more difficult, the player can make three incorrect guesses before the game ends.
What I need to calculate is the odds for the player reaching each steps up to 30 steps. I've played the game on an internal server and averaged about 8 steps so the odds for getting there must be roughly 50% but I need to know the exact step-by-step odds for getting up to 30 steps.
This is what I've done so far:
So what are the odds of the player reaching each step up to 30 steps?
What I need to calculate is the odds for the player reaching each steps up to 30 steps. I've played the game on an internal server and averaged about 8 steps so the odds for getting there must be roughly 50% but I need to know the exact step-by-step odds for getting up to 30 steps.
This is what I've done so far:
- If the first number is 1, the odds for getting the second number right are 9/9 = 100%
- If the first number is 2, the odds for getting the second number right are 8/9 = 89% etc.
- The worst odds I've got are for numbers 5 and 6 (5/9 = 56%).
- The average odds for getting the second number right = 78%.
So what are the odds of the player reaching each step up to 30 steps?