Equation: Given a random variable Z, let Z Geometric(θ), Find P(5≤Z≤9).
Attempt 1:
Try something like P(5≤Z≤9)=P(Z=9)−P(Z=5)=θ[(1−θ)9−(1−θ)5]
I know this is a valid method for continuous distributions, but I wasn't sure if it would work the same way for a discrete function, like geometric. So I tried to compute it manually in attempt #2.
Attempt 2:
P(5≤Z≤9)=P(Z=5)+P(Z=6)+P(Z=7)+P(Z=8)+P(Z=9)=Some answer
I know this one works, but I feel it's a bit too much in terms of computation. Like, if I was given an equation that asked for an interval from 3 to 1000, then there's no way I could manually compute that by hand.
Which is why I was wondering if there was a more efficient method to calculate the geometric distribution over a given interval? I tried to put everything into a summation and derive an equation, but I get stuck after pulling the theta out of the equation such that it's
n∑i=0(1−θ)iθ= θn∑i=0(1−θ)i
Anybody have a better solution?
Answer
Your original solution (first attempt) is not quite correct as written. Instead, you should be calculating P(Z≥5)−P(Z>9). Intuitively, this is "the chance that Z is at least 5, but not more than 9." For a geometric distribution, you could write this as P(Z>4)−P(Z>9). But it is actually not too difficult to compute P(Z>x) for any geometric distribution; this holds iff the first x trials are failures, so it happens with probability P(Z>x)=(1−θ)x (assuming θ is the probability of success in a single trial). In general, this means that, for geometric Z, we have:
P(a≤Z≤b)=P(Z≥a)−P(Z>b)=P(Z>a−1)−P(Z>b)=(1−θ)a−1−(1−θ)b
Also note that your summation (from the second attempt) works as well, once simplified. To find P(a≤Z≤b), we note that, from the geometric distribution, this is exactly equal to
b∑k=aθ(1−θ)k−1
But this is a geometric series with initial term θ(1−θ)a−1 and common ratio 1−θ. The sum of such a finite geometric series with b−a+1 terms is:
θ(1−θ)a−1⋅(1−(1−θ)b−a+1)1−(1−θ)=(1−θ)a−1⋅(1−(1−θ)b−a+1)=(1−θ)a−1−(1−θ)b
So the two methods agree.
No comments:
Post a Comment