Anda di halaman 1dari 8

CONTOH SOAL:

1. tentukan turunan parsial pertama fx , fy dan fz dari fungsi f (x,y,z)= xy-yz-xz

> f:=(x,y,z)->(x*y-y*z-x*z);

f := ( x, y, z )x yy zx z


> diff(f(x,y,z),x);
yz
> diff(f(x,y,z),y);
xz
> diff(f(x,y,z),z);
xy
Jadi turunan pertama dari fungsi f (x,y,z)= xy-yz-xz terhadap x adalah y-z, terhadap y adalah
x-z dan terhadap z adalah –x-y.

2. Tentukan turunan parsial fx , fy , fxx dan fyy dari fungsi f (x,y)= √ x 3+ y3


> f:=(x,y)->sqrt(x^3+y^3);
f := ( x, y ) x 3y 3
> diff(f(x,y),x);
3 x2
2 x 3y 3
> diff(f(x,y),y);
3 y2
2 x 3y 3
> diff(diff(f(x,y),x),x);
9 x4 3x
 ( 3/2 )

4 ( x 3y 3 ) x 3y 3

> diff(diff(f(x,y),y),y);
9 y4 3y
 ( 3/2 )

4 ( x 3y 3 ) x 3y 3
3 x2 3 y2

Jadi turunan parsial fx , fy , fxx dan fyy berturut-turut adalah 2 x y , 2 x y ,
3 3 3 3

9 x4 3x 9 y4 3y
 ( 3/2 )
  ( 3/2 )

3 3
4 ( x 3y 3 ) x y 4 ( x 3y 3 ) x 3y 3
, .

3. Tentukan turunan parsial fx , fy , fz , fxx, , fxxz , , fxxx dan fyyz dari fungsi f (x,y,z)=
√ 18 x 2 +8 y + 4 z
> f:=(x,y,z)->sqrt(18*x^2+8*y+4*z);
f := ( x, y, z ) 18 x 28 y4 z
> diff(f(x,y,z),x);
18 x
18 x 28 y4 z
> diff(f(x,y,z),y);
4
18 x 8 y4 z
2

> diff(f(x,y,z),z);
2
2
18 x 8 y4 z
> diff(diff(f(x,y,z),x),x);
324 x 2 18
 ( 3/2 )

2
( 18 x 28 y4 z ) 18 x 8 y4 z

> diff(diff(diff(f(x,y,z),x),x),z);
1944 x 2 36
( 5/2 )
 ( 3/2 )
( 18 x 28 y4 z ) ( 18 x 28 y4 z )
> diff(diff(diff(f(x,y,z),x),x),x);
17496 x 3 972 x
( 5/2 )
 ( 3/2 )
( 18 x 28 y4 z ) ( 18 x 28 y4 z )
> diff(diff(diff(f(x,y,z),y),y),z);
96
( 5/2 )
( 18 x 28 y4 z )
Jadi turunan parsial fx , fy , fz , fxx, , fxxz , , fxxx dan fyyz dari fungsi f (x,y,z)= √ 18 x 2 +8 y + 4 z
adalah

fx= ,
4

fy= 18 x 28 y4 z ,


2

fz= 18 x 28 y4 z


324 x 2 18
 ( 3 /2 )

( 18 x 28 y4 z ) 18 x 28 y4 z
fxx=
1944 x 2 36
( 5/2 )
 ( 3/2 )
,fxxz= ( 18 x 8 y4 z ) ( 18 x 28 y4 z )
2

17496 x 3 972 x
( 5/2 )
 ( 3/2 )
2
fxxx= ( 18 x 8 y4 z ) ( 18 x 28 y4 z )
96
( 5/2 )
2
fyyz= ( 18 x 8 y4 z )
LATIHAN SOAL:

1. Tentukan turunan parsial pertama dari fumgsi f(x,y,z)= x3+2y


2z
2. Tentukan turunan parsial fx, fy,fxxy dari fungsi f(x,y,z))= √ x 2+ 8 y

3. Tentukan turunan parsial fxx dan fxxz dari fungsi f(x,y,z)= 2x3-3y
3z
4. Tentukan turunan parsial f x, fy, fz, fxz, fyz, fxy dari fumgsi f(x,y,z)=xy+2yz-xz

5. tentukan turunan parsial fyx , fxxx , fyxx ,dan fxyz dari fungsi f(x,y,z)= x3× zcos(xy)×
cos(2z)
LAMPIRAN III

1. Tentukan turunan parsial pertama dari fumgsi f(x,y,z)= x3+2y


2z
> f:=(x,y)->(x^3+2*y)/(2*z);
1 x 32 y
f := ( x, y )
2 z
> diff(f(x,y,z),x);
3 x2
2z
> diff(f(x,y,z),y);
1
z
> diff(f(x,y,z),z);
x 32 y

2 z2
Jadi turunan parsial pertama dari fumgsi f(x,y,z)= x3+2y adalah
2z
3 x2
fx= 2 z
1
fy= z
x 32 y

fz= 2 z2

2. Tentukan turunan parsial fx, fy,fxxy dari fungsi f(x,y,z))= √ x 2+ 8 y


> f:=(x,y)->sqrt(x^2+8*y);
f := ( x, y ) x 28 y
> diff(f(x,y),x);
x
x 8 y
2

> diff(f(x,y),y);
4
x 8 y
2

> diff(diff(diff(f(x,y),x),x),y);
12 x 2 4
( 5/2 )
 ( 3/2 )
( x 28 y ) ( x 28 y )

Jadi turunan parsial fx, fy,fxxy dari fungsi f(x,y,z))= √ x 2+ 8 y adalah

fx= x 8 y
2

fy= x 8 y
2

12 x 2 4
( 5/2 )
 ( 3/2 )
fxxy= ( x 8 y ) ( x 28 y )
2

3. Tentukan turunan parsial fxx dan fxxz dari fungsi f(x,y,z)= 2x3-3y
3z

> f:=(x,y,z)->(2*x^2-3*y)/(3*z^3);
1 2 x 23 y
f := ( x, y, z )
3 z3
> diff(diff(f(x,y,z),x),x);
4
3 z3
> diff(diff(diff(f(x,y,z),x),x),z);
4
 4
z
Jadi turunan parsial fxx dan fxxz dari fungsi f(x,y,z)= 2x3-3y adalah
3z
4
3
fxx= 3 z
4
 4
fxxz= z
4. Tentukan turunan parsial f x, fy, fz, fxz, fyz, fxy dari fumgsi f(x,y,z)=xy+2yz-xz

> f:=(x,y,z)->x*y+(2*y*z)-x*z;
f := ( x, y, z )x y2 y zx z
> diff(f(x,y,z),x);
yz
> diff(f(x,y,z),y);
x2 z
> diff(f(x,y,z),z);
x2 y
> diff(diff(f(x,y,z),x),z);
-1
> diff(diff(f(x,y,z),y),z);
2
> diff(diff(f(x,y,z),x),y);
1
Jadi turunan parsial f x, fy, fz, fxz, fyz, fxy dari fumgsi f(x,y,z)=xy+2yz-xz adalah

fx= y-z

fy= x+2z

fz= -x+2y

fxz= -1

fyz= 2

fxy= 1

5. tentukan turunan parsial fyx , fxxx , fyxx ,dan fxyz dari fungsi f(x,y,z)= x3× zcos(xy)×
cos(2z)
> f:=(x,y,z)->x^3*z*cos(x*y)*cos(2*z);
f := ( x, y, z )x 3 z cos( x y ) cos( 2 z )
> diff(diff(f(x,y,z),y),x);
4 x 3 z sin( x y ) cos( 2 z )x 4 z cos( x y ) y cos( 2 z )
> diff(diff(diff(f(x,y,z),x),x),x);
6 z cos( x y ) cos( 2 z )18 x z sin( x y ) y cos( 2 z )9 x 2 z cos( x y ) y 2 cos( 2 z )
x 3 z sin( x y ) y 3 cos( 2 z )
> diff(diff(diff(f(x,y,z),y),x),x);
12 x 2 z sin( x y ) cos( 2 z )8 x 3 z cos( x y ) y cos( 2 z )x 4 z sin( x y ) y 2 cos( 2 z )
> diff(diff(diff(f(x,y,z),x),y),z);
4 x 3 sin( x y ) cos( 2 z )8 x 3 z sin( x y ) sin( 2 z )x 4 cos( x y ) y cos( 2 z )
2 x 4 z cos( x y ) y sin( 2 z )
Jadi turunan parsial fyx , fxxx , fyxx ,dan fxyz dari fungsi f(x,y,z)= x3× zcos(xy)× cos(2z) adalah
fyx= 4 x z sin( x y ) cos( 2 z )x z cos( x y ) y cos( 2 z )
3 4

2 2
fxxx= 6 z cos( x y ) cos( 2 z )18 x z sin( x y ) y cos( 2 z )9 x z cos( x y ) y cos( 2 z )
x 3 z sin( x y ) y 3 cos( 2 z )

2 3 4 2
fyxx= 12 x z sin( x y ) cos( 2 z )8 x z cos( x y ) y cos( 2 z )x z sin( x y ) y cos( 2 z )

fxyz= 4 x 3 sin( x y ) cos( 2 z )8 x 3 z sin( x y ) sin( 2 z )x 4 cos( x y ) y cos( 2 z )


2 x 4 z cos( x y ) y sin( 2 z )

Anda mungkin juga menyukai