From 0d156a73d9e5d9f8798680db630c73cb96823739 Mon Sep 17 00:00:00 2001 From: Nicholas C <34197135+shredz7@users.noreply.github.com> Date: Tue, 5 Dec 2017 20:40:51 -0600 Subject: [PATCH] Change module to modulo in Beal.ipynb --- ipynb/Beal.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipynb/Beal.ipynb b/ipynb/Beal.ipynb index 2e60a2d..71cad1f 100644 --- a/ipynb/Beal.ipynb +++ b/ipynb/Beal.ipynb @@ -819,7 +819,7 @@ "\n", "# Faster Arithmetic (mod *p*)\n", "\n", - "Arithmetic is slow with integers that have thousands of digits. If we want to explore much further, we'll have to make the program more efficient. An obvious improvement would be to do all the arithmetic module some number $m$. Then we know:\n", + "Arithmetic is slow with integers that have thousands of digits. If we want to explore much further, we'll have to make the program more efficient. An obvious improvement would be to do all the arithmetic modulo some number $m$. Then we know:\n", "\n", "$$\\mbox{if} ~~ \n", "A^x + B^y = C^z\n",