LOW_POW INDEX

LOW\_POW _ _ _ _ _ _ _ _ _ _ _ _ variable

The variable low_pow is set by coeff to the lowest power of the variable of interest in the given expression. You can access this variable for use in further computation or display.

examples:


coeff((x+2*y)**6,y); 

    6
  {X ,
       5
   12*X ,
       4
   60*X ,
        3
   160*X ,
        2
   240*X ,
   192*X,
   64}


low_pow; 

  0 


coeff(x**2*(x*sin(y) + 1),x); 
			 


  {0,0,1,SIN(Y)} 


low_pow; 

  2