Lecture 08 and 09 - Function of Multivariables and Multivariable Calculus
Lecture 08 and 09 - Function of Multivariables and Multivariable Calculus
Lecture 08&09
Function of Multivariable and Multivariable Calculus
Overall Picture
ü Multivariable functions
ü Level curves
ü Partial derivatives
Many functions depend on more than one independent variable. The function 𝑉 = 𝜋𝑟 ! ℎ
calculates the volume of a right circular cylinder from its radius and height. The function 𝑇 =
𝑓(𝑥, 𝑦, 𝑧) may be used to calculate the temperature distribution on the fins of a motorcycle
engine. In this lecture, we will look at functions of more than one independent variable.
Definition:
Suppose 𝐷 is a set of 𝑛-tuples of real numbers (𝑥" , 𝑥! , … , 𝑥# ). A multivariable function is
given as
𝑤 = 𝑓(𝑥" , 𝑥! , … , 𝑥# )
The set 𝐷 is the function’s domain. The symbol 𝑤 is the dependent variable of ƒ, and ƒ is said
If we think of function 𝑓 as a representation of certain system, then 𝑥" to 𝑥# are the inputs
dependent variable are determined by the values of one or more independent variables.
Function means the dependent variable is determined by the independent variable(s). Example
of functions,
𝑦 = 𝑓(𝑥), 𝑧 = 𝑥 ! + 𝑦 ! , 𝑦 = 𝑘𝑥 + 𝑏
So for a function, the single dependent variable is on one side of the equal sign, and the
variable and the independent variable (s). Equation may contain only one variable, but it must
consist of the expressions that have to be equal on opposite sides of an equal sign.
$!% $%
ü Differential equation: 𝑚 $&
+ 𝑏 $& + 𝑘𝑥 = 𝑦
$!' (
ü Nonlinear equation: $& !
+ ) sin 𝜃 = 0 (pendulum motion when there is no force
A system can be described using an equation to illustrate the relationship between input
and output. The objective is to solve the equation for a given input. For example, if the system
$!% $%
description of the system (𝑚 $&
+ 𝑏 $& + 𝑘𝑥 = 𝑦). One may want to know the system response
(𝑥(𝑡)) for a certain input (e.g. 𝑦 = 0, 𝑦 = 𝑢(𝑡) unit step function, or 𝑦 = 𝛿(𝑡) impulse input
etc.).
Example:
Ø One can rewrite an equation into a function form. Say you have linear equation
*
5𝑥 + 6𝑦 = 12. Then in function form, 𝑦 = 2 − + 𝑥.
𝑧 − 𝑓(𝑥, 𝑦) = 0
Cubic equation: 𝑎𝑥 , + 𝑏𝑥 ! + 𝑐𝑥 + 𝑑 = 0
Example 1:
𝑧 = 𝑓(𝑥, 𝑦) = −𝑦
This is a plane!
Maple command:
with(plots)
plot3d(-y, x = -2..2, y =-2..2, axes =
boxed)
Matlab:
ezmesh(@(x,y)-y);
view(130, 25);
Example 2
Surface: an elliptic paraboloid
𝑧 = 𝑓(𝑥, 𝑦) = 1 − 𝑥 ! − 𝑦 !
Maple command:
with(plots)
plot3d(1-x^2-y^2, x = -2..2, y =-2..2,
axes = framed)
Matlab:
ezmesh(@(x,y)1-x^2-y^2); hold on
view(130, 25);
%ezcontour('1-x^2-y^2');
ezcontourf('1-x^2-y^2');
In 𝑦𝑧-plane, 𝑥 = 0, we have 𝑧 = 1 − 𝑦 !
𝑧 = 𝑓(𝑥, 𝑦) = 𝑥 ! − 𝑦 !
Matlab method 1:
[x,y,z]=meshgrid(-1.5:0.1:1.5);
val=(x.^2+(9/4)*y.^2+z.^2-1).^3-
x.^2.*z.^3-(9/80)*y.^2.*z.^3;
[f,v]=isosurface(x,y,z,val,0);
p=patch('Faces',f,'Vertices',v,'CData',v(:,3),
'FaceColor','w','EdgeColor','flat');
isonormals(x,y,z,val,p);
view([45 95 45])
grid on
axis equal
Matlab method 2:
syms x y z
range = [-2,2,-2,2,-2, 2];
ezimplot3('(x^2+4/9*y^2+z^2-1)^3-
x^2*z^3-9/80*y^2*z^3');
Contour Plot for function of two variables
Given a function of two variables, 𝑧 = 𝑓(𝑥, 𝑦), contour plot is basically a cluster of plot of
𝑓(𝑥, 𝑦) = 𝐶, 𝐶 is a constant
It shows all the points where 𝑓(𝑥, 𝑦) = 𝐶 and 𝐶 is chosen at a regular interval (e.g., 𝐶 =
Equivalently, we can say that contour plot is generated by slicing the 3D-surface (the 3D
Contour example 1:
𝑧 = 𝑓 (𝑥, 𝑦) = −𝑦
𝑓 = −1
𝑓 = 1.5
This is an evenly spaced contour. The contour plot shows that the surface has constant slope as
Contour example 2:
𝑧 = 𝑓 (𝑥, 𝑦) = 1 − (𝑥 ! + 𝑦 ! )
Maple command:
contourplot(1-x^2-y^2, x = -8 .. 8, y = -8 .. 8, coloring = [red, blue], thickness = 2)
Contour example 3:
! ./ !
𝑧 = 𝑥𝑒 -%
0.5
0.2
0.4 0.3
0 -0.2 0.1
-0.4
-0.3 0
-0.1
-0.5
2
2
0 1
0
-1
-2 -2
Matlab Code:
v = -2:0.1:2;
[x,y] = meshgrid(v);
z = x .* exp(-x.^2 - y.^2);
mesh(x,y,z);
hidden off; %to make it transparent
hold on;
C = contour(x,y,z,'linewidth',2, 'color','b');
%C = contour3(x,y,z);
clabel(C); %label the contour
Contour example 4: 𝑧 = 𝑥 ! − 𝑦 !
2
-4 -3 -2 -1 0 1 2 3
4
0
4
-2 3 2 1 0 -1 -2 -3 -4
-4
2
2
0 1
0
-1
-2 -2
Contour example 5:
Comments:
• How contours space out will tell us how steep things are (see contour example 3).
• Contour plot can also tell us whether 𝑓(𝑥, 𝑦) increases or decreases when changing
𝑥 or 𝑦. However, you need to label the values of 𝐶 for each contour. Maple does
ü From contour example 1, we can see that the change of 𝑥 does not affect
• Contour plot gives only qualitative analysis. If we need to know how fast 𝑓(𝑥, 𝑦)
Given a function of three variables, 𝑤 = 𝑓(𝑥, 𝑦, 𝑧). It is not possible to graph this function.
spheres.
Recall that for functions of one variable, 𝑓(𝑥). The derivative of 𝑓(𝑥) is defined as
This can also be said as “rate of change with respect to change of 𝑥”.
Approximation formula at 𝑥3 :
Given a multi-variable function, say 𝑓(𝑥, 𝑦, 𝑧), the rate of change of 𝑓(𝑥, 𝑦, 𝑧) with respect to 𝑥-
45
ü No changes in 𝑦, 𝑧 directions. 𝑦 and 𝑧 are treated as constant when computing 4%.
45
ü A short-hand notation for partial derivative is 𝑓% = 4%.
45
ü 4%
is a function of 𝑥, 𝑦, and 𝑧.
variables one at a time. When we hold all but one of the independent variables of a
function constant and differentiate with respect to that one variable, we get a “partial”
derivative.
Similarly,
𝜕!𝑓 𝜕 𝜕𝑓
!
= K N = 𝑓%% = (𝑓% )%
𝜕𝑥 𝜕𝑥 𝜕𝑥
𝜕!𝑓 𝜕 𝜕𝑓
= K N = 𝑓%/ = (𝑓% )/
𝜕𝑦𝜕𝑥 𝜕𝑦 𝜕𝑥
𝜕 𝜕 𝜕𝑓
𝑓%/6 = W𝑓%/ X6 = W(𝑓% )/ X6 = ` K Na
𝜕𝑧 𝜕𝑦 𝜕𝑥
𝜕 ! 𝜕
𝑓% = (𝑥 (𝑦 + 2𝑧)) = (𝑦 + 2𝑧) (𝑥 ! ) = 2𝑥(𝑦 + 2𝑧)
𝜕𝑥 𝜕𝑥
𝑓/ = 𝑥 ! (1 + 0) = 𝑥 !
𝑓6 = 𝑥 ! (0 + 2) = 2𝑥 !
"#
Example 2: 𝑓(𝑥, 𝑦) = 𝑦 sin(𝑥𝑦), find "$.
𝜕𝑓 𝜕𝑣 𝜕𝑢
=𝑢 + 𝑣
𝜕𝑦 𝜕𝑦 𝜕𝑦
Then
𝜕𝑓 𝜕
= (𝑦 sin(𝑥𝑦))
𝜕𝑦 𝜕𝑦
𝜕 𝜕
=𝑦 (sin(𝑥𝑦)) + sin(𝑥𝑦) (𝑦)
𝜕𝑦 𝜕𝑦
𝜕
= 𝑦 cos(𝑥𝑦) (𝑥𝑦) + sin(𝑥𝑦)
𝜕𝑦
= 𝑥𝑦 cos 𝑥𝑦 + sin 𝑥𝑦
45 45
• Geometric meaning of 4%c or 4/c for a surface 𝑧 = 𝑓(𝑥, 𝑦)
(%" ,/" ) (%" ,/" )
Definition:
𝑓(𝑥3 + ℎ, 𝑦3 ) − 𝑓(𝑥3 , 𝑦3 )
= lim
:→3 ℎ
ℎ = Δ𝑥
If (𝑥3 , 𝑦3 ) is in the domain of function 𝑓(𝑥, 𝑦), then the coordinate of the point 𝑃 on the
surface 𝑧 = 𝑓(𝑥, 𝑦) is 𝑃 W𝑥3 , 𝑦3 , 𝑓(𝑥3 , 𝑦3 )X. There are infinite number of tangent lines to the
Suppose that there is someone walking back and forth along the line 𝑦 = 𝑦3 in the 𝑥𝑦-
plane (keeping 𝑦 constant and changing 𝑥). The corresponding movement of point 𝑃 on the
surface will be a curve 𝑧 = 𝑓(𝑥, 𝑦3 ), which is essentially the intersection of the plane 𝑦 = 𝑦3 and
45
c
4% (%" ,/" )
= 𝑓% (𝑥3 , 𝑦3 ) is the slope of the tangent line to the curve intersected by the
45
obtained for 4/c . The following figure shows the two tangent lines to the surface at point
(%" ,/" )
𝑃 W𝑥3 , 𝑦3 , 𝑓(𝑥3 , 𝑦3 )X. Note that a plane can be determined by these two tangent lines which is
𝜕 𝜕𝑓 𝜕!𝑓
K N = ! = 𝑓%%
𝜕𝑓 𝜕𝑥 𝜕𝑥 𝜕𝑥
𝜕𝑥 𝜕 𝜕𝑓 𝜕!𝑓
K N= = 𝑓%/
𝜕𝑦 𝜕𝑥 𝜕𝑦𝜕𝑥 Mixed
𝑓 (𝑥, 𝑦) partial
𝜕 𝜕𝑓 𝜕!𝑓 derivatives
K N= = 𝑓/%
𝜕𝑓 𝜕𝑥 𝜕𝑦 𝜕𝑥𝜕𝑦
𝜕𝑦
𝜕 𝜕𝑓 𝜕!𝑓
K N = ! = 𝑓//
𝜕𝑦 𝜕𝑦 𝜕𝑦
If 𝑓% , 𝑓/ , 𝑓%/ , and 𝑓/% are continuous in some neighborhood (aka “nice” function) of (𝑥3 , 𝑦3 ),
If the mixed partial derivatives exist and are continuous at a point (𝑥3 , 𝑦3 ), then they are equal at
In this class, it is assumed that we will be dealing with “nice” functions only.
𝑓% = 3𝑥 ! 𝑦 ; , 𝑓%/ = 12𝑥 ! 𝑦 ,
𝑓/ = 4𝑥 , 𝑦 , , 𝑓/% = 12𝑥 ! 𝑦 ,
Here 𝑓%/ and 𝑓/% are “nice” functions or they are continuous at every point. Hence 𝑓%/ = 𝑓/% .
' ! ($ !
Example 4: let 𝑓(𝑥, 𝑦) = 𝑥𝑦 '! )$! if (𝑥, 𝑦) ≠ (0,0) and 𝑓(0,0) = 0.
𝑓(ℎ, 𝑘) − 𝑓(ℎ, 0) ℎ! − 𝑘 !
𝑓/ (ℎ, 0) = lim = lim ℎ ! =ℎ
<→3 𝑘 <→3 ℎ + 𝑘!
And
𝑓/ (ℎ, 0) − 𝑓/ (0,0)
𝑓/% (0,0) = lim =1
:→3 ℎ
$ "! # "! #
Example 5: show that 𝑓 (𝑥, 𝑦) = tan(* 3 4 satisfies + = 0.
' "' ! "$ !
Solution:
/
Let 𝑢 = % .
𝜕𝑓 𝑑𝑓 𝜕𝑢 1 𝑦 𝑦
= = g− h = −
𝜕𝑥 𝑑𝑢 𝜕𝑥 1 + 𝑢! 𝑥! 𝑥! + 𝑦!
𝜕𝑓 𝑑𝑓 𝜕𝑢 1 1 𝑥
= = K N =
𝜕𝑦 𝑑𝑢 𝜕𝑦 1 + 𝑢! 𝑥 𝑥! + 𝑦!
Hence
𝜕!𝑓 𝜕!𝑓
+ =0
𝜕𝑥 ! 𝜕𝑦 !
𝜕! 𝜕! 𝜕!
∇! = + +
𝜕𝑥 ! 𝜕𝑦 ! 𝜕𝑧 !
As we’ll learn later in this course, the Laplace operator or Laplacian is a differential operator
given by the divergence (∇ ∙) of the gradient (∇𝑓) of a function. It is usually denoted by symbols
∆, ∇ ∙ ∇, or ∇! .
It occurs in the differential equations that describe many physical phenomena, such as electric
and gravitational potentials, the diffusion equation for heat and fluid flow, wave propagation, and
quantum mechanics. The Laplacian represents the flux density of the gradient flow of a function.
For instance, the net rate at which a chemical dissolved in a fluid moves towards or away from
some point is proportional to the Laplacian of the chemical concentration at that point; expressed
symbolically, the resulting equation is the diffusion equation. For these reasons, it is extensively
46
Example 6: Find 4% given equation
𝑦𝑧 − ln 𝑧 = 𝑥 + 𝑦
in which 𝑧 is a function of the two independent variables 𝑥 and 𝑦. Assume the partial
derivative exists.
𝜕 𝜕
(𝑦𝑧 − ln 𝑧) = (𝑥 + 𝑦)
𝜕𝑥 𝜕𝑥
𝜕 𝜕 𝜕𝑥 𝜕𝑦
(𝑦𝑧) − (ln 𝑧) = +
𝜕𝑥 𝜕𝑥 𝜕𝑥 𝜕𝑥
𝜕𝑧 1 𝜕𝑧
𝑦 − =1+0
𝜕𝑥 𝑧 𝜕𝑥
1 𝜕𝑧
K𝑦 − N =1
𝑧 𝜕𝑥
𝜕𝑧 𝑧
=
𝜕𝑥 𝑦𝑧 − 1
𝑑𝑓 𝑑𝑓 𝑑𝑢
=
𝑑𝑥 𝑑𝑢 𝑑𝑥
𝑑𝑓 𝜕𝑓 𝑑𝑥 𝜕𝑓 𝑑𝑦
= +
𝑑𝑡 𝜕𝑥 𝑑𝑡 𝜕𝑦 𝑑𝑡
𝑑𝑥 𝑑𝑦
= 𝑓% + 𝑓/
𝑑𝑡 𝑑𝑡
or
𝑑𝑓 𝜕𝑓 𝑑𝑥 𝜕𝑓 𝑑𝑦 𝜕𝑓 𝑑𝑧
= + +
𝑑𝑡 𝜕𝑥 𝑑𝑡 𝜕𝑦 𝑑𝑡 𝜕𝑧 𝑑𝑡
𝑑𝑥 𝑑𝑦 𝑑𝑧
= 𝑓% + 𝑓/ + 𝑓6
𝑑𝑡 𝑑𝑡 𝑑𝑡
𝑧 = 𝑓(𝑥, 𝑦)
𝜕𝑧 𝜕𝑧 𝜕𝑥 𝜕𝑧 𝜕𝑦
= +
𝜕𝑢 𝜕𝑥 𝜕𝑢 𝜕𝑦 𝜕𝑢
𝜕𝑧 𝜕𝑧 𝜕𝑥 𝜕𝑧 𝜕𝑦
= +
𝜕𝑣 𝜕𝑥 𝜕𝑣 𝜕𝑦 𝜕𝑣
46 45
Note: 4=
or 4= means “how does 𝑓 change if 𝑢 is changed a little bit”. 𝑓 changes when 𝑢
𝑔 = 𝑓(𝑢, 𝑣, 𝑤)
𝜕𝑓 𝜕𝑓 𝜕𝑢 𝜕𝑓 𝜕𝑣 𝜕𝑓 𝜕𝑤
= + +
𝜕𝑥 𝜕𝑢 𝜕𝑥 𝜕𝑣 𝜕𝑥 𝜕𝑤 𝜕𝑥
𝜕𝑓 𝜕𝑓 𝜕𝑢 𝜕𝑓 𝜕𝑣 𝜕𝑓 𝜕𝑤
= + +
𝜕𝑦 𝜕𝑢 𝜕𝑦 𝜕𝑣 𝜕𝑦 𝜕𝑤 𝜕𝑦
𝜕𝑓 𝜕𝑓 𝜕𝑢 𝜕𝑓 𝜕𝑣 𝜕𝑓 𝜕𝑤
= + +
𝜕𝑧 𝜕𝑢 𝜕𝑧 𝜕𝑣 𝜕𝑧 𝜕𝑤 𝜕𝑧
Remarks:
46 46 4% 46 4/
• In the chain rule case 2, 4= = 4% 4= + 4/ 4=. It is tempting to cancel 𝜕𝑥 or 𝜕𝑦 in this
equation. Apparently, it won’ work. The reason is that they are partial derivatives,
45
ü 4%
exists. It means the rate of change of 𝑓 with respect to 𝑥.
ü “𝑑𝑓” which is differential for single variable function, and total differential for
ü “𝑑𝑓” as we’ll later, is the total variation of 𝑓. It accounts for all the partial
"#
Example 7: polar coordinates, 𝑥 = 𝑟 cos 𝜃, 𝑦 = 𝑟 sin 𝜃. Given 𝑓(𝑥, 𝑦), find "+
"#
and "'
𝜕𝑓 𝜕𝑓 𝜕𝑥 𝜕𝑓 𝜕𝑦
= + = cos 𝜃 𝑓% + sin 𝜃 𝑓/
𝜕𝑟 𝜕𝑥 𝜕𝑟 𝜕𝑦 𝜕𝑟
45
To find 4%, we use following chain rule.
𝜕𝑓 𝜕𝑓 𝜕𝑟 𝜕𝑓 𝜕𝜃
= +
𝜕𝑥 𝜕𝑟 𝜕𝑥 𝜕𝜃 𝜕𝑥
Since 𝑟 = Y𝑥 ! + 𝑦 ! , we have
𝜕𝑟 1 ! " 𝑥 𝑟 cos 𝜃
= (𝑥 + 𝑦 ! )-! (2𝑥) = = = cos 𝜃
𝜕𝑥 2 Y𝑥 ! + 𝑦 ! 𝑟
/
Since 𝜃 = arctan g% h, we have
𝜕𝜃 1 −𝑦 𝑦 −𝑟 sin 𝜃 1
= = − = = − sin 𝜃
𝜕𝑥 𝑦! 𝑥! 𝑥! + 𝑦! 𝑟! 𝑟
1+ !
𝑥
Thus
𝜕𝑓 𝜕𝑓 1 𝜕𝑓
= cos 𝜃 − sin 𝜃
𝜕𝑥 𝜕𝑟 𝑟 𝜕𝜃
𝜕𝑓 𝜕𝑓 1 𝜕𝑓
= sin 𝜃 + cos 𝜃
𝜕𝑦 𝜕𝑟 𝑟 𝜕𝜃
", ",
Example 8: 𝑇 (𝑥, 𝑦) = 𝑥 % − 𝑥𝑦 + 𝑦 % , 𝑥 = 𝑟 cos 𝜃, 𝑦 = 𝑟 sin 𝜃. Find "+ and "-
Solution:
𝜕𝑇 𝜕𝑇 𝜕𝑥 𝜕𝑇 𝜕𝑦
= +
𝜕𝑟 𝜕𝑥 𝜕𝑟 𝜕𝑦 𝜕𝑟
𝜕𝑇 𝜕𝑇 𝜕𝑥 𝜕𝑇 𝜕𝑦
= +
𝜕𝜃 𝜕𝑥 𝜕𝜃 𝜕𝑦 𝜕𝜃
* ./
Example 9: 𝐻 (𝑥, 𝑦) = sin(3𝑥 − 𝑦), 𝑥 = 2𝑡 ! − 3, 𝑦 = 𝑡 ! − 5𝑡 + 1. Find .
! .0
Solution:
𝑑𝐻 𝜕𝐻 𝑑𝑥 𝜕𝐻 𝑑𝑦
= +
𝑑𝑡 𝜕𝑥 𝑑𝑡 𝜕𝑦 𝑑𝑡
11 !
= (11𝑡 + 5) cos K 𝑡 + 5𝑡 − 10N
2
𝑑𝑓 𝑑(𝑢𝑣) 𝑑𝑢 𝑑𝑣 𝑑𝑢 𝑑𝑣
= = 𝑓= + 𝑓> =𝑣 +𝑢
𝑑𝑡 𝑑𝑡 𝑑𝑡 𝑑𝑡 𝑑𝑡 𝑑𝑡
Or 𝑓 0 = 𝑣𝑢0 + 𝑢𝑣′
=
• Quotient rule, 𝑓 = > , 𝑢 = 𝑢(𝑡), 𝑣 = 𝑣(𝑡)
𝑑𝑓 𝑑𝑢 𝑑𝑣
= 𝑓= + 𝑓>
𝑑𝑡 𝑑𝑡 𝑑𝑡
1 𝑑𝑢 𝑢 𝑑𝑣
= + g− ! h
𝑣 𝑑𝑡 𝑣 𝑑𝑡
>=# -=> #
Or 𝑓 0 = >!
For function of single variable, 𝑦 = 𝑓(𝑥), we define the change in 𝒇 as 𝑥 changes from 𝑥 to 𝑥 +
Δ𝑥 by
The differential of 𝒇 as
Δ𝑦 = 𝑓 0 (𝑎)Δ𝑥 + 𝜖 Δ𝑥, 𝜖 → 0 as Δ𝑥 → 0
The geometric meaning of “differential” 𝑑𝑓 for single variable function is the change Δ𝐿 in the
𝑎 is
Δ𝑧 = 𝑓(𝑥, 𝑦) − 𝑓(𝑥3 , 𝑦3 )
Definition:
A change in 𝐿 from point (𝑥3 , 𝑦3 ) to nearby point (𝑥, 𝑦) = (𝑥3 + Δ𝑥, 𝑦3 + Δ𝑦) is
differential of 𝑓.
Definition:
If moving from point (𝑥3 , 𝑦3 ) to nearby point (𝑥3 + 𝑑𝑥, 𝑦3 + 𝑑𝑦), the resulting change in
the linearization of 𝑓 is
𝜕𝑓 𝜕𝑓 𝜕𝑓
𝑑𝑓 = 𝑑𝑥 + 𝑑𝑦 + 𝑑𝑧
𝜕𝑥 𝜕𝑦 𝜕𝑧
Remarks:
and 𝑧.
Δ𝑓 ≈ 𝑓% Δ𝑥 + 𝑓/ Δ𝑦 + 𝑓6 Δ𝑧
When Δ𝑥, Δ𝑦, and Δ𝑧 are very very small, we got 𝑑𝑓 = 𝑓% 𝑑𝑥 + 𝑓/ 𝑑𝑦 + 𝑓6 𝑑𝑧.
Example 11: If the radius of a cone is changed from 10cm to 10.1 cm, and
the height is changed from1m to 0.99m, use total differential to
approximate Δ𝑉.
Solution:
1
𝑉 = 𝜋𝑟 ! ℎ
3
Δℎ = 𝑑𝑟 = −1 cm, ℎ = 100cm
𝜕𝑉 𝜕𝑉 2 1
𝑑𝑉 = 𝑑𝑟 + 𝑑ℎ = K 𝜋𝑟ℎN 𝑑𝑟 + K 𝜋𝑟 ! N 𝑑ℎ
𝜕𝑟 𝜕ℎ 3 3
2 1 100𝜋
Δ𝑉 ≈ 𝑑𝑉 = • 𝜋(10)(100)€ 0.1 + K 𝜋(10)! N (−1) = cm,
3 3 3
'
Example 12: 𝑓 (𝑥, 𝑦) = , find the total differential 𝑑𝑓 =?
1' ! )$ !
𝜕𝑓 𝜕 𝑥
= • €
𝜕𝑥 𝜕𝑥 Y𝑥 ! + 𝑦 !
1 𝜕 𝜕 1
= (𝑥) + 𝑥 • €
Y𝑥 ! + 𝑦 ! 𝜕𝑥 𝜕𝑥 Y𝑥 ! + 𝑦 !
1 1 1 𝜕
= + 𝑥 •− , ‚ (𝑥 ! )
Y𝑥 ! + 𝑦 ! 2 (𝑥 ! 𝜕𝑥
+ 𝑦 ! )!
𝑥! + 𝑦! − 𝑥! 𝑦!
= , = ,
(𝑥 ! + 𝑦 ! )! (𝑥 ! + 𝑦 ! )!
𝜕𝑓 𝜕 𝑥 𝑥𝑦
= • €=− ,
𝜕𝑦 𝜕𝑦 Y𝑥 ! + 𝑦 ! (𝑥 ! + 𝑦 ! )!
𝜕𝑓 𝜕𝑓 𝑦! 𝑥𝑦
𝑑𝑓 = 𝑑𝑥 + 𝑑𝑦 = , 𝑑𝑥 − , 𝑑𝑦
𝜕𝑥 𝜕𝑦 (𝑥 ! + 𝑦 ! )! (𝑥 ! + 𝑦 ! )!