Taylorreihen
> restart;
Entwickeln von in eine Taylorreihe bezüglich 2:
> taylor(sqrt(x), x = 2, 3 );
Entwickeln von sin(x) in eine Taylorreihe bezüglich π:
> taylor(sin(x), x = Pi, 5);
> f:= t -> sin(t)/t;
> F(x):= Int(f(t), t = 0..x );
> F(x):= taylor(F(x), x = 0, 8);