1
Use the next_prime()
command to construct two different 8-digit prime numbers and save them in variables named a
and b
.
📚 The CoCalc Library - books, templates and other resources
Important: to view this notebook properly you will need to execute the cell above, which assumes you have an Internet connection. It should already be selected, or place your cursor anywhere above to select. Then press the "Run" button in the menu bar above (the right-pointing arrowhead), or press Shift-Enter on your keyboard.
ParseError: KaTeX parse error: \newcommand{\lt} attempting to redefine \lt; use \renewcommand
These exercises are about investigating basic properties of the integers, something we will frequently do when investigating groups. Sage worksheets have extensive capabilities for making new cells with carefully formatted text, include support for LaTeX syntax to express mathematics. So when a question asks for explanation or commentary, make a new cell and communicate clearly with your audience.
Use the next_prime()
command to construct two different 8-digit prime numbers and save them in variables named a
and b
.
Use the .is_prime()
method to verify that your primes a
and b
are really prime.
Verify that is the greatest common divisor of your two primes from the previous exercises.
Find two integers that make a “linear combination” of your two primes equal to Include a verification of your result.
Determine a factorization into powers of primes for
Write a compute cell that defines the same value of c
again, and then defines a candidate divisor of c
named d
. The third line of the cell should return True
if and only if d
is a divisor of c
. Illustrate the use of your cell by testing your code with and in a new copy of the cell, testing your code with