Question: why order of coeffs not respected

unprotect(D); f := proc (x, y) options operator, arrow; (295849/5841396)*x^2-(29441/324522)*y*x+(33995/216348)*y^2-(5989/14751)*x+(3635/4917)*y+1 end proc; 295849 2 29441 33995 2 5989 f := (x, y) -> ------- x - ------ y x + ------ y - ----- x 5841396 324522 216348 14751 3635 + ---- y + 1 4917 coeffs(f(x, y)); -5989 3635 295849 33995 -29441 1, -----, ----, -------, ------, ------ 14751 4917 5841396 216348 324522 A, B, C, D, E, F := %; -5989 295849 33995 -29441 3635 A, B, C, D, E, F := 1, -----, -------, ------, ------, ---- 14751 5841396 216348 324522 4917
Please Wait...