From 4aa8c0b0d847aa8962944d5dc87968ebf819d2b8 Mon Sep 17 00:00:00 2001 From: hattackk <36685328+hattackk@users.noreply.github.com> Date: Sun, 15 Nov 2020 17:17:47 -0500 Subject: [PATCH] Updated wording from Multiple to Multiply Corrected wording from "multiple $D$ by" to "multiply $D$ by" --- math_linear_algebra.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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:" ] }, {