<< Chapter < Page | Chapter >> Page > |
For the joint densities in Exercises 4-11 below
(See Exercise 10 from "Problems On Random Vectors and Joint Distributions", Exercise 20 from "Problems on Mathematical Expectation", and Exercise 23 from "Problems on Variance, Covariance, Linear Regression"). for , .
The regression line of Y on X is .
The regression line of Y on X is .
tuappr: [0 1] [0 2]200 400 u<=2*(1-t)
- - - - - - - - - - - - -EYx = sum(u.*P)./sum(P);
plot(X,EYx) % Straight line thru (0,1), (1,0)
(See Exercise 13 from " Problems On Random Vectors and Joint Distributions", Exercise 23 from "Problems on Mathematical Expectation", and Exercise 24 from "Problems on Variance, Covariance, Linear Regression"). for , .
The regression line of Y on X is .
The regression line of Y on X is .
tuappr: [0 2] [0 2]200 200 (1/8)*(t+u)
EYx = sum(u.*P)./sum(P);eyx = 1 + 1./(3*X+3);
plot(X,EYx,X,eyx) % Plots nearly indistinguishable
(See Exercise 15 from "Problems On Random Vectors and Joint Distributions", Exercise 25 from "Problems on Mathematical Expectation", and Exercise 25 from "Problems on Variance, Covariance, Linear Regression"). for , .
The regression line of Y on X is .
The regression line of Y on X is .
tuappr: [0 2] [0 3]200 300 (3/88)*(2*t + 3*u.^2).*(u<=1+t)
EYx = sum(u.*P)./sum(P);eyx = (X+1).*(X+3).*(3*X+1)./(4*(1 + 4*X + X.^2));
plot(X,EYx,X,eyx) % Plots nearly indistinguishable
(See Exercise 16 from " Problems On Random Vectors and Joint Distributions", Exercise 26 from "Problems on Mathematical Expectation", and Exercise 26 from "Problems on Variance, Covariance, Linear Regression"). on the parallelogram with vertices
The regression line of Y on X is .
The regression line of Y on X is .
tuappr: [-1 1] [0 1]200 100 12*t.^2.*u.*((u<= min(t+1,1))&(u>=max(0,t)))
EYx = sum(u.*P)./sum(P);M = X<=0;
eyx = (2/3)*(X+1).*M + (2/3)*(1-M).*(X.^2 + X + 1)./(X + 1);plot(X,EYx,X,eyx) % Plots quite close
(See Exercise 17 from " Problems On Random Vectors and Joint Distributions", Exercise 27 from "Problems on Mathematical Expectation", and Exercise 27 from "Problems on Variance, Covariance, Linear Regression"). for , .
The regression line of Y on X is
The regression line of Y on X is .
tuappr: [0 2] [0 1]200 100 (24/11)*t.*u.*(u<=min(1,2-t))
EYx = sum(u.*P)./sum(P);M = X<= 1;
eyx = (2/3)*M + (2/3).*(2 - X).*(1-M);plot(X,EYx,X,eyx) % Plots quite close
Notification Switch
Would you like to follow the 'Applied probability' conversation and receive update notifications?