14.1
Functions of
Two or More Variables
Find function values X1-5, 13, 17-18
Compositions X5-8, 14-16
Chart reading X9-12
Domain19-24
3D graphs 25-34
Contour maps35-37
Level curves, "isobars," "isotherms."
Level surfaces
"Ant on a hotplate" problem like 57: T=y/x^3, ant starts at (2,–3), wants to keep same temp: what is the temp and what is the path?
14.2
Limits and
Continuity
14.3
Partial
Derivatives
For y=f(x), def of derivative (both forms) and graphical representation
Partial derivative at a
point (x0,y0): ![]()
Similar expression for the partial with respect to y
Partial derivative in
general: ![]()
Similar expression for the partial with respect to y
Problem with surface: consider slopes along lines parallel to x-axis and parallel to y-axis
Calculations: hold y constant or x constant
Ex: z=f(x,y)=x2y - x3
Notation
Numerical example: X9b
Second derivatives, mixed partials
Calculations and both notational styles
Note mixed partials are equal
Geometric interpretation of second derivatives
Concavity (unmixed partials)
Rate at which slope changes (twisting of a surface) (mixed partials)
Notice what is happening along the edges of these graphs.
plot3d(x^3*y - y^2,x=-5..5,y=-5..5); plot3d(x^2-3*x*y-y^2,x=-2..2,y=-2..2);


Implicit partial differentiation
For zx:
z is a function of x: chain rule results in multiplication by zx
x is a variable
y is a constant
Example #56: Find zx for ln(2x2+y-z3)=x (in this case it is possible to solve for z and compare)
X98 is like example10; start by expanding the summation
14.4
Differentiability, Local Linearity, and Differentials
Def of differentiability for a function of one variable
Geometric significance: contrast dy vs delta y if delta x (same as dx) is small and non-zero:
Difference between the actual change in a function vs linear approximation of the change
Extension of def to two or three vars:
Denom is distance
Num is diff between actual function vs local linear approx, where...
Local linear approx is f(x0,y0,z0) + fx(x-x0)+fy(y-y0)+fz(z-z0) i.e. z + dz
The dz portion of that last expression can be expressed as the "total differential"
fxdx + fydy +fzdz
Use def and also use thm 5 to show that a func is differentiable
Ex: Show that f(x,,y) = xz2sin(y) is differentiable by showing that the partials are continuous
Ex: Show that a plane (z=3x-2y+4) is differentiable at (x0,y0) using the definition
Examples:
Given a func of two vars, estimate f(2.03,3.98) using differentials
First, find the value of the function at (2,3)
Then, estimate the change in the function
Find the percentage change in the area of an ellipse if the major axis is increased by 3.0% and the minor axis is decreased by 1.0% : a2 = .030 a1 and b2 = .010 b1
What is the max error in the calculated volume of a pyramid (built on a square base) if the sides are measured at 100 m ± 1 cm and the height is estimated at 50 m ± 10cm
Exercises 25, 40
14.5
Chain Rule
Conical sandpile is being formed, as material is added, dr/dt = 6 in/min, dh/dt = 4 in/min
Find dV/dt when r = 12 in, h = 36 in V=1/3 pr2h
Vt = Vr rt + Vh ht
14.6
Directional
Derivatives and Gradients
Geometrically, Du = slope of the surface z=f(x,y) in the direction of u at the point (x0,y0,z0)
u must be a unit vector
See def in text and work through example: Note: it's really a limit process
More practical: Du = <fx,fy,fz> dot <u1,u2,u3>
=
"
Note u may be written as <cosq,sinq> where q is the angle of inclination of u with the x-axis
Thm 5,6: Important properties
If
Otherwise
a
vector in the opposite direction to
the
max rate of increase is the norm of
Apps: Find the path of a heat-seeking particle (Example 6)
14.7
Tangent
Planes and
14.8
Maxima and
Minima of Functions of Two Variables
Defs:
Interior point: Point P for which there is some disk or ball centered at P that contains only points inside the set. Interior of a set is the set of all interior points.
Boundary point: Point P for which every disk or ball centered at P contains both points inside and points outside the set. Boundary of a set is the set of all boundary points.
Open set: contains none of its boundary points
Closed set: contains all its boundary points
Bounded set: Entire set can be contained in some finite rectangle (2-space) or box (3-space)
Extreme value thm: if f(x,y) is continuous on a closed and bounded set R, then f has both an absolute max and an absolute min on R
Thm: If f has a relative extremum at a point P, and both fx and fy are defined at P, then both are 0.
Def of critical point: point for which both fx and fy are 0, or either partial derivative does not exist.
Facts:
Relative extrema must occur at critical points (but not all critical points are locations of extrema)
Absolute extrema must occur either
1. In the interior, in which case they are also relative extrema, or
2. On the boundary (So we must restrict the set to the boundary an then find the extrema)
Second Partials Test
Let D = fxxfyy-fxy2. For a point P,
If D is positive, f has a relative extremum
If fxx [or fyy] is positive, it is a minimum
If fxx [or fyy] is negative, it is a maximum
If D is negative, f has a saddle point
Ex: Hyperbolic paraboloid z = x2-y2
[But also consider the cylinder z=y4 at the origin]
If D = 0, no conclusion can be drawn from this test.
Ex: Example 6
Discussion before Exercise 45: Deriving equations for a regression line;
Show how to use Cramer's rule for #45c
14.9
Lagrange
Multipliers
Typical problem: Maximize a function S = xy+2xz+2yz subject to the constraint xyz-32=0
in general, maximize the function f(x,y,z) subject to the constraint g(x,y,z) = some constant.
Typical application: Find the point on a given surface where the temperature is maximum,
given a function that describes the temperatures throughout the space containing the surface.
Typical application: Find the maximum and min values on the boundary of a region.
Fundamental principle: gradients of functions f and g are scalar multiples of each other
Setup:
This yields simultaneous equations
An additional equation is needed to solve the system: use the constraint equation.
Ex 4: Find the dimensions of a rectangular box, open at the top, having vol=32 ft3,
requiring the least amount of material for its construction. (Eqns: see "typical problem" above)
Ex: minimize dist from x2-yz=5 to the origin; Lagrange multipliers give us two sets of points: (±sqrt5,0,0) and (0,±sqrt5,-+sqrt5). The first set gives the minimum distance; the second set does not give the max distance (which doesn't exist): it does give a minimax point: a sphere centered at the origin would have the same tangent plane as the surface at the second set of points.
Maple views:
> with(plots):
> implicitplot3d(x^2-y*z=5,x=-5..5,y=-5..5,z=-5..5);

Return to: Merced College; Don Power Updated 02/28/07 by Don Power