Revision as of 02:56, 24 June 2024 by Admin (Created page with "If a coin is tossed a sequence of times, what is the probability that the first head will occur after the fifth toss, given that it has not occurred in the first two tosses? '''References''' {{cite web |url=https://math.dartmouth.edu/~prob/prob/prob.pdf |title=Grinstead and Snell’s Introduction to Probability |last=Doyle |first=Peter G.|date=2006 |access-date=June 6, 2024}}")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
ABy Admin
Jun 24'24

Exercise

If a coin is tossed a sequence of times, what is the probability that the first head will occur after the fifth toss, given that it has not occurred in the first two tosses?

References

Doyle, Peter G. (2006). "Grinstead and Snell's Introduction to Probability" (PDF). Retrieved June 6, 2024.

ABy Admin
Jun 26'24

Solution: C

Let [math]T[/math] equal the number of tosses until the first head appears. [math]T[/math] has distribution [math]P(T=k) = (1/2)^k [/math] for [math]k\geq 1 [/math]. The probability that the first head appears on the fifth toss, given that it has not appeared in the first two tosses, equals

[[math]] P(T=5|T\gt2) = \frac{P(T=5)}{P(T\gt2)} = \frac{(1/2)^5}{1-0.5-0.25} = \frac{(1/2)^5}{(1/2)^2} = (1/2)^3 = 0.125. [[/math]]

00