# # Numerical Mathematics and Computing, Fifth Edition # Ward Cheney & David Kincaid # Brooks/Cole Publ. Co. # (c) 2003 # # file: taylor-series # # Taylor series of the function f(x) about x = 2: # f := 3*x^5 -2*x^4 + 15*x^3 +13*x^2 - 12*x -5; taylor(%, x = 2); taylor(exp(x), x);