>

> foersteafledte:=diff(sin(x^2),x);

[Maple Math]

> andenafledte:=diff(sin(x^2),x,x);

[Maple Math]

> tredieafledte:=diff(sin(x^2),x,x,x);

[Maple Math]

>

> y1:=evalf(2*cos(2^2)*2);

[Maple Math]

> y2:=evalf(-4*sin(2^2)*2^2+2*cos(2^2));

[Maple Math]

> y3:=evalf(-8*cos(2^2)*2^3-12*sin(2^2)*2);

[Maple Math]

> y0:=evalf(sin(2^2));

>

[Maple Math]

> approx1:=y0+y1*(x-2);

[Maple Math]

> approx2:=y0+y1*(x-2)+(1/2)*y2*(x-2)^2;

[Maple Math]

> approx3:=y0+y1*(x-2)+(1/2)*y2*(x-2)^2+(1/6)*y3*(x-2)^3;

[Maple Math]

>

> plot([sin(x^2),approx1,approx2,approx3],x=0..4,y=-10..10, color=[black,blue,red,green]);

>