Daily Maths Challenges
Share your cool maths problems.
Complete a challenge:
- Post your solution in comments, if it is exactly the same as OP's solution, let us know.
- Have fun.
Post a challenge:
- Doesn't have to be original, as long as it is not a duplicate.
- Challenges not riddles, if the post is longer than 3 paragraphs, reconsider yourself.
- Optionally include solution in comments, let it be clear this is not a homework help forums.
- Tag [unsolved] if you don't have a solution yet.
- Please include images, if your question includes complex symbols, attach a render of the maths.
Feel free to contribute to a series by DMing the OP, or start your own challenge series.
Are all games played to completion? Assuming yes,
answer
P(A) = Sum[1/4^n,{n,1,∞}] = 0.333...
P(B) = 1/8
P(C) = 1/16
One of A,B or A,C is dependent, as it'd flip the polarity of the remaining games, the other is independent, as it wouldn't. I'm not too worried about which is which, as it's just an off-by-one error. xD
Assuming no, You'd have to know the distribution of when games were abandoned, I'd think.
Games are always played to completion, though if you wanna make it (barely) more challenging you can add in a 5% chance for both players to get bored and give up on each round (before flipping), leading to a loss. Though it seems unlikely - after flipping a quarter 20 times and getting Tails every time, I'd be inclined to keep flipping if anything.
response
These are correct. It is possible to reason out which of B and C is independent of A without going into the numbers.
after flipping a quarter 20 times and getting Tails every time, I'd be inclined to keep flipping if anything.
It's a sunk cost fallacy, it's never too late to get bored and give up. ;)
solution
Say Omega = N\{0}, sigma algebra is power set of N and the probability mass function is p(n)=2^-n .
Then A is all the even numbers, B all numbers at least 4, C all numbers at least 5.
P(A)=sum{2^-n^ | n is even} = sum{2^-2n^ | n is at least 1} = sum{4^-n^ | n is at least 1} = 1/(1-1/4)-1=1/3
P(B) = P(N\{1,2,3}) = 1 - 1/2 - 1/4 - 1/8 = 1/8
P(C) = 1/16 similarly
P(A and B) = P(A\{2}) = 1/3 - 1/4 = 1/12 =/= P(A)P(B) therefore not independent
P(A and C) = P(A\{2,4}) = P(A)P(C) with a similar calculation and therefore independent
I read the other answers in the thread, and I definitely would have gotten this wrong without that. This answer stands a chance at least
Independence
A and C are independent, A and B are not. Since you have a chance to win on turn 4 that you do not have on turn 1, P(A|B) = 1/2 + 1/16 + 1/64... = 7/12 != P(A). Conversely, P(A|C) = 1/4 + 1/16 + 1/64... = 1/3 = P(A)
response
This is the correct answer, although P(A|B) should actually be 2/3 rather than 7/12 - I think you meant 1/2 + 1/8 + 1/32 + ...?
The reasoning is good, either way. Since past flips won't affect future flips, if the player has made it to turn 5, an odd turn, then their future prospects are no different than they were on turn 1, another odd turn - so A and C are independent. Similarly, A and B are dependent because your chances of winning and losing effectively flip: If you've made it to an even turn, then you now win if it takes an odd number of flips from there to get Heads.
So it should be an almost paradoxical-seeming situation: You win 1/3 games overall, you win 2/3 games that make it to turn 2, you win 1/3 games that make it to turn 3, you win 2/3 games that make it to turn 4, 1/3 that make it to turn 5, etc.
response
Thanks for the catch! Once I noticed that the probability of winning on the initial flip was the difference between the two, I stopped thinking about the other terms...