<< Chapter < Page | Chapter >> Page > |
(See Exercise 9 from "Problems On Random Vectors and Joint Distributions", and Exercise 19 from "Problems on Mathematical Expectation"). Data were kept on the effect of training time on the time to performa job on a production line. X is the amount of training, in hours, and Y is the time to perform the task, in minutes. The data are as follows (in file npr08_09.m ):
t = | 1 | 1.5 | 2 | 2.5 | 3 |
u = 5 | 0.039 | 0.011 | 0.005 | 0.001 | 0.001 |
4 | 0.065 | 0.070 | 0.050 | 0.015 | 0.010 |
3 | 0.031 | 0.061 | 0.137 | 0.051 | 0.033 |
2 | 0.012 | 0.049 | 0.163 | 0.058 | 0.039 |
1 | 0.003 | 0.009 | 0.045 | 0.025 | 0.017 |
npr08_09 Data are in X, Y, P
jcalc- - - - - - - - - - - -
EX = dot(X,PX);EY = dot(Y,PY);
VX = dot(X.^2,PX) - EX^2VX = 0.3319
CV = total(t.*u.*P) - EX*EYCV = -0.2586
a = CV/VXa = -0.77937/6;
b = EY - a*EXb = 4.3051 % Regression line: u = at + b
For the joint densities in Exercises 23-30 below
(See Exercise 10 from "Problems On Random Vectors and Joint Distributions", and Exercise 20 from "Problems on Mathematical Expectation"). for , .
tuappr: [0 1] [0 2]200 400 u<=2*(1-t)
EX = dot(X,PX);EY = dot(Y,PY);
VX = dot(X.^2,PX) - EX^2VX = 0.0556
CV = total(t.*u.*P) - EX*EYCV = -0.0556
a = CV/VXa = -1.0000
b = EY - a*EXb = 1.0000
(See Exercise 13 from "Problems On Random Vectors and Joint Distributions", and Exercise 23 from "Problems on Mathematical Expectation"). for , .
tuappr: [0 2] [0 2]200 200 (1/8)*(t+u)
VX = 0.3055 CV = -0.0278 a = -0.0909 b = 1.2727
(See Exercise 15 from "Problems On Random Vectors and Joint Distributions", and Exercise 25 from "Problems on Mathematical Expectation"). for , .
tuappr: [0 2] [0 3]200 300 (3/88)*(2*t + 3*u.^2).*(u<=1+t)
VX = 0.2036 CV = 0.1364 a = 0.6700 b = 0.6736
(See Exercise 16 from "Problems On Random Vectors and Joint Distributions", and Exercise 26 from "Problems on Mathematical Expectation"). on the parallelogram with vertices
tuappr: [-1 1] [0 1]400 200 12*t.^2.*u.*(u>= max(0,t)).*(u<= min(1+t,1))
VX = 0.2383 CV = 0.1056 a = 0.4432 b = 0.5553
(See Exercise 17 from "Problems On Random Vectors and Joint Distributions", and Exercise 27 from "Problems on Mathematical Expectation"). for , .
tuappr: [0 2] [0 1]400 200 (24/11)*t.*u.*(u<=min(1,2-t))
VX = 0.1425 CV =-0.0409 a = -0.2867 b = 0.8535
Notification Switch
Would you like to follow the 'Applied probability' conversation and receive update notifications?