this post was submitted on 22 May 2024
17 points (94.7% liked)

Daily Maths Challenges

206 readers
1 users here now

Share your cool maths problems.



Complete a challenge:


Post a challenge:


Feel free to contribute to a series by DMing the OP, or start your own challenge series.

founded 9 months ago
MODERATORS
17
Coin-flipping game (lemmy.world)
submitted 8 months ago* (last edited 8 months ago) by zkfcfbzr@lemmy.world to c/dailymaths@lemmy.world
 

We're playing a game. I flip a coin. If it lands on Tails, I flip it again. If it lands on Heads, the game ends.

You win if the game ends on an even turn, and lose otherwise.

Define the following events:

A: You win the game

B: The game goes on for at least 4 turns

C: The game goes on for at least 5 turns

What are P(A), P(B), and P(C)? Are A and B independent? How about A and C?

you are viewing a single comment's thread
view the rest of the comments
[โ€“] zkfcfbzr@lemmy.world 3 points 8 months ago* (last edited 8 months ago) (1 children)

responseThis is close, but you've got an off-by-one error where you calculate the probability of making it to the nth round as 1/2^n. Consider that that would imply you have a probability of 1/2 for the game to make it to round 1, or 1/4 to make it to round 2, etc - it should be 1/2^(n-1). Correcting this would give you the correct answers for P(B) and P(C).

As for the dependence question, I'm not sure I followed your arguments there - but saying both are dependent is not correct.