Previous Up Next

6.34.13  GCD in ℤ/pℤ[x]: gcd

The gcd command finds the greatest common divisor of two polynomials with coefficients in ℤ/pℤ (for prime p). (See also Section 6.5.1 and Section 6.28.5.)


Example.
Input:

gcd((2*x^2+5)%13,(5*x^2+2*x-3)%13)

Output:


1%13
x+2%13

Previous Up Next