Previous Up Next

11.1.11  Trailing coefficient degree of a polynomial

The tcoeff command finds the trailing coefficient of a polynomial; that is, the coefficient of the monomial of lowest degree.

Examples

tcoeff([2,1,-1,0])
     
−1           
tcoeff(3*x^2+5*x,x)
     
5           
tcoeff(3*x^2+5*x*y^2,y)
     
x2           

Previous Up Next