Final Answer:
The probability that X is at least n, denoted as P(X ≥ n), for a geometric distribution with parameter p, is (1 - p)^(n-1).
Step-by-step explanation:
The geometric distribution models the number of trials needed to achieve the first success in a sequence of independent Bernoulli trials, each with probability of success p. For a given random variable X following a geometric distribution, the probability of X being at least n (P(X ≥ n)) can be computed as the complement of the probability of X being less than n.
The probability of X being less than n is the cumulative probability of not achieving success in the first n-1 trials, which is (1 - p)^(n-1). Therefore, to find the probability of X being at least n, we subtract this cumulative probability from 1, giving us P(X ≥ n) = 1 - (1 - p)^(n-1).
For instance, if the probability of success in a single trial is 0.3 and we want to find the probability that the first success occurs on or after the 5th trial, the probability P(X ≥ 5) would be 1 - (1 - 0.3)^4, which simplifies to 1 - 0.7^4, resulting in the probability that X is at least 5.
This formula is derived from understanding that in a geometric distribution, the probability decreases exponentially with each additional trial until the first success occurs, making P(X ≥ n) easily calculable using the complement of the cumulative probability of failure over n-1 trials.