MAXIMA :: TAYLOR / Taylor Expansion INDEX
    INPUT: taylor( ,x , 0, 7 );
    Function: taylor (expr, x, a, n)
    Function: taylor (expr, [x_1, x_2, ...], a, n)
    Function: taylor (expr, [x, a, n, 'asymp])
    Function: taylor (expr, [x_1, x_2, ...], [a_1, a_2, ...], [n_1, n_2, ...])
    Function: taylor (expr, [x_1, a_1, n_1], [x_2, a_2, n_2], ...)

    • Expands of the expression expr in a truncated Taylor or Laurent series in the variable x around the point a, containing terms through (x - a)^n.

    Example:
MAXIMA :: TAYLOR