<< Chapter < Page | Chapter >> Page > |
Suppose uniform on 1 through n and conditionally binomial , given .
n = 50; p = 0.3; X = 1:n; Y = 0:n;
P0 = zeros(n,n+1); % Could use randbernfor i = 1:n
P0(i,1:i+1) = (1/n)*ibinom(i,p,0:i);end
P = rot90(P0);jcalc: X Y P
- - - - - - - - - - -EY = dot(Y,PY)
EY = 7.6500 % Comparison with part (a): 0.3*51/2 = 0.765
A number X is selected randomly from the integers 1 through 100. A pair of dice is thrown X times. Let Y be the number of sevens thrown on the X tosses. Determine the joint distribution for and then determine .
n = 100; p = 1/6; X = 1:n; Y = 0:n; PX = (1/n)*ones(1,n);
P0 = zeros(n,n+1); % Could use randbernfor i = 1:n
P0(i,1:i+1) = (1/n)*ibinom(i,p,0:i);end
P = rot90(P0);jcalc
EY = dot(Y,PY)EY = 8.4167 % Comparison with part (a): 101/12 = 8.4167
A number X is selected randomly from the integers 1 through 100. Each of two people draw X times, independently and randomly, a number from 1 to 10. Let Y be the number of matches (i.e., both draw ones, both draw twos, etc.). Determine thejoint distribution and then determine .
Same as [link] , except . .
n = 100; p = 0.1; X = 1:n; Y = 0:n; PX = (1/n)*ones(1,n);
P0 = zeros(n,n+1); % Could use randbernfor i = 1:n
P0(i,1:i+1) = (1/n)*ibinom(i,p,0:i);end
P = rot90(P0);jcalc
- - - - - - - - - -EY = dot(Y,PY)
EY = 5.0500 % Comparison with part (a): EY = 101/20 = 5.05
Suppose the pair is independent, with Poisson and Poisson . Show that X is conditionally binomial , given . That is, show that
Poisson , Poisson , Use of property (T1) and generating functions shows that Poisson
Put and to get the desired result.
Use the fact that , where does not vary with v . Extend property (CE10) to show
A shop which works past closing time to complete jobs on hand tends to speed up service on any job received during the last hour before closing. Suppose the arrivaltime of a job in hours before closing time is a random variable uniform . Service time Y for a unit received in that period is conditionally exponential , given . Determine the distribution function for Y .
Time to failure X of a manufactured unit has an exponential distribution. The parameter is dependent upon the manufacturing process. Suppose the parameter isthe value of random variable uniform on[0.005, 0.01], and X is conditionally exponential , given . Determine . Determine and use this to determine .
A system has n components. Time to failure of the i th component is X i and the class
is iid exponential . The system fails if any one or more of the components fails. Let W be the time to system failure. What is the probability the failure is due to the i th component?
Suggestion . Note that iff for all . Thus
Let . Then
If F X is continuous, strictly increasing, zero for , put , . , . Then
Notification Switch
Would you like to follow the 'Applied probability' conversation and receive update notifications?