- #1
whitejac
- 169
- 0
Homework Statement
Suppose you take a pass-fail test repeatedly. Let Sk be the event that you are successful in your kth try, and Fk be the event that you fail the test in your kth try. On your first try, you have a 50% chance of passing the test.
P(S1)=1−P(F1)=1/2.
Assume that as you take the test more often, your chance of failing the test goes down. In particular,
P(Fk)=1/2*P(Fk-1), for k=2,3,4,⋯
However, the result of different exams are independent. Suppose you take the test repeatedly until you pass the test for the first time. Let X be the total number of tests you take, so Range(X)={1,2,3,⋯}.
- Find P(X=1),P(X=2),P(X=3).
- Find a general formula for P(X=k) for k=1,2,⋯.
- Find the probability that you take the test more than 2 times.
- Given that you take the test more than once, find the probability that you take the test exactly twice.
Homework Equations
I would say the geometric PDF: Px(k) = p(q)k-1 for integer k's, but after doing the problem I do not think it is exactly like that.
P(A|B) = P(A∩B) / P(B)
The Attempt at a Solution
This problem seemed a little too straightforward for my comfort zone, so I'm seeing if anyone will check my logic here.
P(X = 1): this is easy, it's given by the problem to be 1/2 chance that we take this test 1 time.
P(X = 2): If I solved the first part correctly, then this is equally easy - we have S2 = 1 - (1/2)(1/2) = 3/4
P(X = 3): Similarly, S3 = 7/8
This implies that P(X = k) = 1 - 1/22
Finding the probability that the test will be taken more than 2 times would be the probability that we fail on the second time which is F2 = 1/2 * F1 = 1/4
Finding the probability of 2 tests given more than 1 test is trickier for me...
Finding P(A∩B) is the intersection between X = 2 and X > 1, which is X = 2. Dividing this probability by the probability of X > 1 then is where I realize that either my initial answers were wrong or my interpretation of part 4 is wrong, but I'm leaning more towards part 1 being wrong:
P(A∩B) / P(B) = P(S2) / P(F1) = (3/4) / (1/2) = 6/4 which is impossible.