Let's say that you own a biased coin that will land heads up with probability . You find someone who is willing you to offer you even odds that heads will turn up. They are also willing to bet as many times as you want.
Assume that you start off with $1000. Clearly, you would stand to gain a lot of money by betting on heads.
1. How would you maximize the final amount of money that you have?
2. If you want to reach $10000 as quickly as possible, how would you do that?
If you have no more money, then you cannot continue betting. E.g. If you bet $1000 in the first round, there is a possibility that you will end up broke and unable to continue.
Easy Math Editor
This discussion board is a place to discuss our Daily Challenges and the math and science related to those challenges. Explanations are more than just a solution — they should explain the steps and thinking strategies that you used to obtain the solution. Comments should further the discussion of math and science.
When posting on Brilliant:
*italics*
or_italics_
**bold**
or__bold__
paragraph 1
paragraph 2
[example link](https://brilliant.org)
> This is a quote
\(
...\)
or\[
...\]
to ensure proper formatting.2 \times 3
2^{34}
a_{i-1}
\frac{2}{3}
\sqrt{2}
\sum_{i=1}^3
\sin \theta
\boxed{123}
Comments
You stand to gain the most profit by betting the smallest possible amount that you can as many times as you can. This is because the Law of Large Numbers indicates that as the number of trials approaches infinity the recorded results will tend towards the expected probability.
The bigger your bet is, the more likely you are to go broke because your number of trials will be minimized. You should bet the smallest amount that the other person is willing to bet: pennies are better than dollars. If you bet a large amount of times, the rule is the following:
Let p[H] = The probability of flipping heads.
Let $ = The expected profit.
Let F = The number of flips.
$≈2F(p[H]−0.5)
Here is some Python that uses random simulations to demonstrate this rule:
The Law of Large Numbers: http://en.wikipedia.org/wiki/Lawoflarge_numbers
Log in to reply
Unfortunately, by betting a small amount, that will take you a long time to accumulate any wealth. IE you do not want to be 80 and betting 1 cent, when you could be 40 and enjoying life from a yacht.
We we also want to reduce the number of coin flips that we have to do, what kind of strategy would make sense? Say that we can only flip the coin once a day. If p=0.6, how quickly (minimum expected time) can we get from $1000 to $10, 000?