<< Chapter < Page | Chapter >> Page > |
Customers arrive at a service center with independent interarrival times in hours, which have exponential (3) distribution. The time X for the third arrival is thus gamma . Without using tables or m-programs, determine .
Five people wait to use a telephone, currently in use by a sixth person. Suppose time for the six calls (in minutes) are iid, exponential (1/3).What is the distribution for the total time Z from the present for the six calls? Use an appropriate Poisson distribution to determine .
gamma (6,1/3).
A random number generator produces a sequence of numbers between 0 and 1. Each of these can be considered an observed value of a random variableuniformly distributed on the interval [0, 1]. They assume their values independently.A sequence of 35 numbers is generated. What is the probability 25 or more are less than or equal to 0.71? (Assume continuity. Do not make a discrete adjustment.)
p = cbinom(35,0.71,25) = 0.5620
Five “identical” electronic devices are installed at one time. The units fail independently, and the time to failure, in days, of each is a randomvariable exponential (1/30). A maintenance check is made each fifteen days. What is the probability that at least four are still operating at the maintenance check?
p = exp(-15/30) = 0.6065 P = cbinom(5,p,4) = 0.3483
Suppose . That is, X has gaussian distribution with mean and variance .
P1 = gaussian(4,81,8) - gaussian(4,81,2)
P1 = 0.2596P2 = gaussian(4,81,9) - gaussian(4,84,-1)
P2 = 0.4181
Suppose . That is, X has gaussian distribution with and . Use a table of standardized normal distribution to determine and . Check your results using the m-function gaussian.
P1 = gaussian(5,81,9) - gaussian(5,81,3)
P1 = 0.2596P2 = gaussian(5,81,10) - gaussian(5,84,0)
P2 = 0.4181
Suppose . That is, X has gaussian distribution with and . Use a table of standardized normal distribution to determine and . Check your results with the m-function gaussian.
P1 = gaussian(3,64,9) - gaussian(3,64,1)
P1 = 0.3721P2 = gaussian(3,64,7) - gaussian(3,64,-1)
P2 = 0.3829
Items coming off an assembly line have a critical dimension which is represented by a random variable N(10, 0.01). Ten items are selected at random. What is the probability that three or more are within 0.05 of themean value μ .
p = gaussian(10,0.01,10.05) - gaussian(10,0.01,9.95)
p = 0.3829P = cbinom(10,p,3)
P = 0.8036
The result of extensive quality control sampling shows that a certain model of digital watches coming off a production line have accuracy, in seconds per month,that is normally distributed with and . To achieve a top grade, a watch must have an accuracy within the range of -5 to +10 secondsper month. What is the probability a watch taken from the production line to be tested will achieve top grade? Calculate, using a standardized normal table. Checkwith the m-function gaussian.
Use the m-procedure bincomp with various values of n from 10 to 500 and p from 0.01 to 0.7, to observe the approximation of the binomial distribution by the Poisson.
Experiment with the m-procedure bincomp.
Use the m-procedure poissapp to compare the Poisson and gaussian distributions. Use various values of μ from 10 to 500.
Experiment with the m-procedure poissapp.
Random variable X has density (and zero elsewhere).
tappr
Enter matrix [a b]of x-range endpoints [-1 1]
Enter number of x approximation points 200Enter density as a function of t 1.5*t.^2
Use row matrices X and PX as in the simple casecdbn
Enter row matrix of VALUES XEnter row matrix of PROBABILITIES PX % See MATLAB plot
Random variable X has density function (and zero elsewhere).
tappr
Enter matrix [a b]of x-range endpoints [0 2]
Enter number of x approximation points 200Enter density as a function of t t - (3/8)*t.^2
Use row matrices X and PX as in the simple casecdbn
Enter row matrix of VALUES XEnter row matrix of PROBABILITIES PX % See MATLAB plot
Random variable X has density function
tappr
Enter matrix [a b]of x-range endpoints [0 2]
Enter number of x approximation points 400Enter density as a function of t (6/5)*(t<=1).*t.^2 + ...
(6/5)*(t>1).*(2 - t)
Use row matrices X and PX as in the simple casecdbn
Enter row matrix of VALUES XEnter row matrix of PROBABILITIES PX % See MATLAB plot
Notification Switch
Would you like to follow the 'Applied probability' conversation and receive update notifications?