Question: coeff question regarding asymptotic expansions

Why can the coeff operator return the coefficient of 1/b, namely -1/x in the example below correctly,

but cannot return the coefficient of 1/x , which should be -1/b?

dummy := asympt(x*1/(1 - a*x - b*x^2), x);
coeff(dummy, 1/x);
coeff(dummy, 1/b);

What one generally wants is to be able to return the coefficients of the orders of an asymptotic expansion, but coeff seems unable to do that as soon as you want the coefficients of 1/x^n

Maple help pages is silent about this.

Please Wait...