February 2020
Beginner
621 pages
19h 34m
English
To find the greatest common divisor, type the following first line and then evaluate:
gcd(119, 259)7
To find the next prime greater than or equal to a number:
next_prime(1000)1009
To factor an integer:
factor(2468)2^2 * 617
Let’s solve the simultaneous congruences :
crt(1,3,5,7)31
To solve the three simultaneous congruences :
a= crt(1,3,5,7)crt(a,0,35,11)66
Compute :
mod(123,789)456699
Compute so that :
mod(65,987)(-1)410
Let’s check the answer:
mod(65*410, 987)1
Read now
Unlock full access