diff --git a/math_linear_algebra.ipynb b/math_linear_algebra.ipynb index 501a176..48ff1db 100644 --- a/math_linear_algebra.ipynb +++ b/math_linear_algebra.ipynb @@ -1347,7 +1347,7 @@ "source": [ "Looks good! You can check the other elements until you get used to the algorithm.\n", "\n", - "We multiplied a $2 \\times 3$ matrix by a $3 \\times 4$ matrix, so the result is a $2 \\times 4$ matrix. The first matrix's number of columns has to be equal to the second matrix's number of rows. If we try to multiple $D$ by $A$, we get an error because D has 4 columns while A has 2 rows:" + "We multiplied a $2 \\times 3$ matrix by a $3 \\times 4$ matrix, so the result is a $2 \\times 4$ matrix. The first matrix's number of columns has to be equal to the second matrix's number of rows. If we try to multiply $D$ by $A$, we get an error because D has 4 columns while A has 2 rows:" ] }, {