From d4bc8b07c74758d77148e2cfe2f06958cec5a243 Mon Sep 17 00:00:00 2001 From: vasili111 Date: Tue, 7 Jan 2020 11:21:50 -0600 Subject: [PATCH] clarification of which inverse Currently is says "inverse" which can be confused with additive inverse I think it is better to specify that we are talking here about "multiplicative inverse" which is also "reciprocal". --- 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 e281e26..264289a 100644 --- a/math_linear_algebra.ipynb +++ b/math_linear_algebra.ipynb @@ -525,7 +525,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "As you might guess, dividing a vector by a scalar is equivalent to multiplying by its inverse:\n", + "As you might guess, dividing a vector by a scalar is equivalent to multiplying by its multiplicative inverse (reciprocal):\n", "\n", "$\\dfrac{\\textbf{u}}{\\lambda} = \\dfrac{1}{\\lambda} \\times \\textbf{u}$" ]