TI-BASIC Wiki
Advertisement
:taylor(expr,var,order,point)

Returns a taylor polynomial for the expression using the specific variable to the order specified at the point specified.

Example[]

To determine a taylor polynomial for e^x around the origin, use

:taylor(e^x,x,3,0)

which would return a result of

1 + x + x^2/2 + x^3/6
Advertisement