diff --git a/05-Multivariate-Gaussians.ipynb b/05-Multivariate-Gaussians.ipynb index e59c7bd..73d87d2 100644 --- a/05-Multivariate-Gaussians.ipynb +++ b/05-Multivariate-Gaussians.ipynb @@ -1237,7 +1237,7 @@ "$$\\Sigma = \\begin{bmatrix}\\sigma_H^2 & \\sigma_{H,W} \\\\\n", "\\sigma_{W,H} & \\sigma_{W}^2\\end{bmatrix}$$\n", "\n", - "We just computed the variance of the height, and it will go in the upper left hand corner of the matrix. The lower right corner contains the variance in heights. Using the same equation we get:\n", + "We just computed the variance of the height, and it will go in the upper left hand corner of the matrix. The lower right corner contains the variance in weights. Using the same equation we get:\n", "\n", "$$\\begin{aligned}\n", "\\mu_W &= \\frac{1}{5}(70.1 + 91.2 + 59.5 + 93.2 + 53.5) = 73.5 \\\\\n", @@ -2975,7 +2975,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "We see that the variance is smaller in relation to the variances, reflecting the lower correlation between $X$ and $Y$. We can still fit a straight line through this data, but there is much greater variation in the data.\n", + "We see that the covariance is smaller in relation to the variances, reflecting the lower correlation between $X$ and $Y$. We can still fit a straight line through this data, but there is much greater variation in the data.\n", "\n", "Finally, here is the covariance between completely random data." ]