Previous Up Next

11.1.17  Primitive part of a polynomial

The primitive part of a polynomial is the polynomial divided by its content (the greatest common divisor of its coefficients). The primpart command computes the primitive part of a polynomial.

Example

primpart(6x^2-3x+9)

or:

primpart([6,-3,9],x))
     
x2x+3           

Previous Up Next