应该是5/16. 这道题是一道标准的柏努利分布。计算如下:(5!/(3!*2!))*0.5^3*(1-0.5)^2
有关柏努利的知识,请见下面:
Bernoulli Processes and the Binomial Distribution Example: An airline reservations switchboard receives calls for reservations, and it is found that when a reservation is made, there is a good chance that the caller will actually show up for the flight. In other words, there is some probability p (say for now p = 0.9) that the caller will show up and buy the ticket the day of departure. Consider a single person making a reservation. This particular reservation can either result in the person on the flight (a success) or a “no show” (a failure). Let X (a random variable) represent the result of a particular reservation. That is, we could assign a value of 1 to X if the person shows up for the flight (X = 1), and let X = 0 if the person does not. Then, P(X = 0) = 1 - p and P(X = 1) = p. This is an example of a Bernoulli process, named for the Swiss mathematician James Bernoulli (1654-1705). A Bernoulli process is a sequence of n identical trials of a random experiment such that each trial: (1) produces one of two possible complimentary outcomes that are conventionally called success and failure and (2) is independent of any other trial so that the probability of success or failure is constant from trial to trial. Note that the success and failure probabilities are assumed to be constant from trial to trial, but they are not necessarily equal to each other. In our example, the probability of a success is 0.9 and the probability of a failure is 0.1.
The number of successes in a Bernoulli process is a binomial random variable. The probability that a binomial variable X will take on any particular value x is given by the binomial formula: If X is a Binomial(n, p) random variable, then Expected Value: | E(X) | = np | Variance: | Var(X) | = np(1 - p) | Standard Deviation: | s(X) | =  |
|