Previous Up Next

11.1.16  GCD of the coefficients of a polynomial

The content of a polynomial is the GCD (greatest common divisor) of its coefficients. The content command computes the content of a polynomial.

Example

content(6*x^2-3*x+9)

or:

content([6,-3,9],x))
     
3           

Previous Up Next