survivalists [a Riddler’s riddle]
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
A neat question from The Riddler on a multi-probability survival rate:
Nine processes are running in a loop with fixed survivals rates .99,….,.91. What is the probability that the first process is the last one to die? Same question with probabilities .91,…,.99 and the probability that the last process is the last one to die.
The first question means that the realisation of a Geometric G(.99) has to be strictly larger than the largest of eight Geometric G(.98),…,G(.91). Given that the cdf of a Geometric G(a) is [when counting the number of attempts till failure, included, i.e. the Geometric with support the positive integers]
the probability that this happens has the nice (?!) representation
which leads to an easy resolution by recursion since
and
and a value of 0.5207 returned by R (Monte Carlo evaluation of 0.5207 based on 10⁷ replications). The second question is quite similar, with solution
and value 0.52596 (Monte Carlo evaluation of 0.52581 based on 10⁷ replications).
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.