More Maple words for working with polynomials
Subs(x=w+t,poly); replaces x with w+t throughout
subsop(2=w); replaces 2nd term with w
expand(poly); removes parentheses
factor(poly); tries to write as product
divide(poly,factor); returns true if
factor divides poly, false if not.
rem(poly,factor,x); returns remainder.