From Bishop's Pattern Recognition and Machine Learning:
$t_n = y_n + \epsilon_n$, where $\epsilon_n$ is a random noise variable whose value is chosen independently for each observation $n$. Consider
$$p(t_n|y_n)= {\cal N}(t_n|y_n,\beta^{-1})$$
Because noise is independent for each data point, we have
$$p(\textbf t | \textbf{y}) = {\cal N} (\textbf t|\textbf y,\beta^{-1}I_N)$$
where $\textbf t = (t_1,...,t_N)^T$, and $\textbf y = > (y_1,....,y_N)^T$
Question: Why the covariance matrix is equal to $\beta^{-1}I_N$? I know if two random variables are marginal independent then their covariance is zero (identity in this case), but it only gives $\epsilon_n$ are independent of each other, not $t_n$ are independent of each other. I hope someone could clarify this question, please.