<< Chapter < Page | Chapter >> Page > |
(See Exercise 1 from "Problems on Distribution and Density Functions ", and Exercise 1 from "Problems on Mathematical Expectation", m-file npr07_01.m ). The class is a partition. Random variable X has values on C 1 through C 10 , respectively, with probabilities 0.08, 0.13, 0.06, 0.09, 0.14, 0.11, 0.12, 0.07, 0.11, 0.09.Determine .
npr07_01 Data are in T and pc
EX = T*pc'EX = 2.7000
VX = (T.^2)*pc' - EX^2VX = 1.5500
[X,PX]= csort(T,pc); % Alternate
Ex = X*PX'Ex = 2.7000
Vx = (X.^2)*PX' - EX^2Vx = 1.5500
(See Exercise 2 from "Problems on Distribution and Density Functions ", and Exercise 2 from "Problems on Mathematical Expectation", m-file npr07_02.m ). A store has eight items for sale. The pricesare $3.50, $5.00, $3.50, $7.50, $5.00, $5.00, $3.50, and $7.50, respectively. A customer comes in. She purchasesone of the items with probabilities 0.10, 0.15, 0.15, 0.20, 0.10 0.05, 0.10 0.15. The random variable expressing the amount of her purchase may be written
Determine .
npr07_02 Data are in T, pc
EX = T*pc';VX = (T.^2)*pc' - EX^2
VX = 2.8525
(See Exercise 12 from "Problems on Random Variables and Probabilities", Exercise 3 from "Problems on Mathematical Expectation", m-file npr06_12.m ). The class has minterm probabilities
Consider , which counts the number of these events which occur on a trial. Determine .
npr06_12 Minterm probabilities in pm, coefficients in c
canonicEnter row vector of coefficients c
Enter row vector of minterm probabilities pmUse row matrices X and PX for calculations
Call for XDBN to view the distributionVX = (X.^2)*PX' - (X*PX')^2
VX = 0.7309
(See Exercise 4 from "Problems on Mathematical Expectation"). In a thunderstorm in a national park there are 127 lightning strikes. Experience shows that the probability of each lightning strike starting a fire is about0.0083. Determine .
binomial (127,0.0083). .
(See Exercise 5 from "Problems on Mathematical Expectation"). Two coins are flipped twenty times. Let X be the number of matches (both heads or both tails). Determine .
binomial (20,1/2). .
(See Exercise 6 from "Problems on Mathematical Expectation"). A residential College plans to raise money by selling “chances” on a board. Fifty chances are sold. A player pays $10 to play; he or she wins $30with probability . The profit to the College is
Determine .
binomial (50,0.2). . .
(See Exercise 7 from "Problems on Mathematical Expectation"). The number of noise pulses arriving on a power circuit in an hour is a random quantity X having Poisson (7) distribution. Determine .
Poisson (7). .
(See Exercise 24 from "Problems on Distribution and Density Functions", and Exercise 8 from "Problems on Mathematical Expectation"). The total operating time for the units in Exercise 24 from "Problems on Distribution and Density Functions" is a random variable gamma (20, 0.0002). Determine .
gamma (20,0.0002). .
Notification Switch
Would you like to follow the 'Applied probability' conversation and receive update notifications?