Himanshu
unread,Feb 8, 2021, 7:38:57 AM2/8/21Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Discussion forum for Introduction to Probability with examples using R, vina...@gmail.com, Himanshu
Yes, if we have total of n trials and we want to compute the probability of the event (Ck) that success first appear at the k-th trial. Then upto k-1 there is failure and at k there is success, it is common in all the elements of the event. After that we can have success/failure at any place.
If we take into account the last (n-k) trials of all the elements of Ck, so we can relate it with binomial (n-p, p) distribution, as the result of any trial can be success/ failure. So sum of the probability of all the elements of Ck is 1 (considering trials from k+1 place).
The probability of every element of Ck has (1-p)^(k-1)*p term in common.
P(Ck) = sum over all the elements {(1-p)^(k-1)*p X terms coming after kth trial)}
So, P(Ck) = (1-p)^(k-1)*p X sum over all the elements {terms coming after kth trial)}
Hence, p(Ck) =
(1-p)^(k-1)*p
Thanks @Vinay, now I have understood.