Merge pull request #25 from shredz7/patch-1

Change module to modulo in Beal.ipynb
This commit is contained in:
Peter Norvig 2017-12-05 19:01:10 -08:00 committed by GitHub
commit 9b67beaee6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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",