You are on page 1of 1

Matematika

Praktikum
-deret maclaurin :

> f:=x->cos(x);
f := xcos( x )
> series(f(x),x=0,4);
1
1 x2O( x4 )
2
-deret taylor :

> f:=x->1/(1-x);
1
f := x
1x
> series(f(x),x=3,4);
1 1 1 1
( x3 ) ( x3 ) 2 ( x3 ) 3O( ( x3 ) 4 )
2 4 8 16
-turunan parsial 2 varaiabel :

> f:=(x,y)->x^2*sin(x*y^2);
f := ( x, y )x2 sin ( x y2 )
> diff(f(x,y),x);
2 x sin ( x y2 )x2 cos( x y2 ) y2
> diff(f(x,y),y);
2 x3 cos( x y2 ) y

You might also like