I'm looking for some advice about a problem I've been assigned to solve. This is the problem. Suppose a car has to travel from P1 to P4, with intermediate points P2, P3. Say $X1$ is a r.v. that defines the travel time from P1 to P2 is normally distributed with $\mu$ = 25, $\sigma^2$ = 3, similarly $X2$ is a r.v. for the travel time from P2 to P3 and $X2 \sim N(15,3)$, finally X3 is a r,v, for the travel time from P3 to P4 and $X3 \sim N(20,1)$ . Then define a random vector $(T2,T3,T4)$ with the times when the car passes by P2,P3 and P4.
I have to define the distribution of the random vector ${\bf t}=[T2,T3,T4]$ through its covariance matrix and its $\mu$ vector of expectations. Here is what I´ve done so far:
- $T2$ would be distributed just as $X1$. $T3$ would be defined as $X1+X2$, and $T4$ would be defined as $X1+X2+X3$. Then $T3$ would also be gaussian distributed since the sum of gaussians is a gaussian, and the distribution would be $N(25+15,3+3)=N(40,6)$. Following a similar reasoning, $T4 \sim N(25+15+20,3+3+1)=N(60,7)$. Then, if I define a vector ${\bf u}=[U_1,U_2,U_3]$ where $U_i \sim N(0,1)$, then ${\bf Au+\mu}$ should define the vector ${\bf t}$. If we define ${\bf A}$ as:
$$ \begin{bmatrix} \sqrt3 & 0 & 0\\ 0 & \sqrt6 & 0\\ 0 & 0 & \sqrt7 \end{bmatrix} $$
and $\mu$ as $[15,40,60]$, then ${\bf Au+\mu}$ would define the distribution of vector ${\bf t}$, and the covariance matrix would be ${\bf \Sigma = AA^t}$. Is it correct? I am not sure because I think that somehow $T2$ would affect $T3$ and $T4$ and therefore $Cov(T2,T3), Cov(T3,T4)$ would not be zero.
Also I have to find the probability that the travel time from $P1$ to $P4$ is greater than 70. I think this would be solved as $P(T4>70)$, since $T4 \sim N(60,7)$,if this is true I just simply have to normalize and take a look and the normal distribution table or go to R and type pnorm(70,60,7). Do you think it is correct?
Finally, I have to estimate the moment when the car passed by P3, given that it is known that it arrived at P4 in 65.234 time units. Also, if I know that it passed by P2 in 26.1 time units, I have to estimate the moment when the car passed by P3. In this point I'm lost and don't know exactly what to do.
So this is it, sorry for the looong post. Thanks for reading. Any comments and suggestions are deeply apreciated.