Question: How many times must a fair coin be tossed so that the probability of at least one head exceeds 0.9?
I have no clue what to do. From what I have tried:
I might have to consider nCr $(1/2)^r(1/2)^{n-r} > 0.9$ but i dont see how that takes me anywhere?
Let's consider a single coin toss. The probability of not gettings heads is $0.5$. This means the probability of not getting heads $n$ times in a row is $0.5^n$.
Say that after $m$ coin tosses, the chance of getting heads at least once is $0.9$. This means that the chance of getting $m$ tails in a row is less than $0.1$, so: $$0.1>0.5^m$$ One could find the lowest such $m$ by simply trying out some possibilities, or taking the logarithm base $0.5$ of both sides: $$3.32\approx\log_{0.5}0.1>m$$ So the answer is $4$ times.