Hello all,

Sage changes expression which is converted from Maxima. As a
consequence, the linear term in taylor polynomial is allway expanded
into f'(a)*x+const instead of f'(a)*(x-a)+f(a).

Can someone explain this behavior? How to get rid of this?

See the code below and trac http://trac.sagemath.org/sage_trac/ticket/7472

Many thanks
Robert Marik

----------------------------------------------------------------------
| Sage Version 4.3, Release Date: 2009-12-24                         |
| Type notebook() for the GUI, and license() for information.        |
----------------------------------------------------------------------
sage: maxima("taylor(x^3,x,2,1)")
8+12*(x-2)
sage: maxima("taylor(x^3,x,2,1)").sage()
12*x - 16
sage: taylor(x^3,x,2,1)
12*x - 16
sage:
-- 
To post to this group, send an email to sage-devel@googlegroups.com
To unsubscribe from this group, send an email to 
sage-devel+unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/sage-devel
URL: http://www.sagemath.org

Reply via email to