<
Goals:
1 Distinguish vectors from scalars (real numbers) and points.
2 Add and subtract vectors, multiply by scalars.
3 Express real world vectors in terms of their components.
Question 5.1.9
How Do We Denote Vectors in Higher Dimensions?
In three space, we add another standard basis vector
k.
Standard basis for 3-vectors
i = ⟨1, 0, 0⟩
j = ⟨0, 1, 0⟩
k = ⟨0, 0, 1⟩
Example
⟨3, −5, 2⟩ = 3
i − 5
j + 2
k
Higher dimensions still have a standard basis, but at this point the
naming conventions are less standard. {
e
1
,
e
2
,
e
3
, . . . ,
e
n
} is common for
n-vectors.
351
Section 5.2
The Dot Product
Goals:
1 Calculate the dot product of two vectors.
2 Determine the geometric relationship between two vectors based on
their dot product.
3 Calculate vector and scalar projections of one vector onto another.
Section 5.3
Normal Equations of Planes
Goals:
1 Give equations of planes in both vector and normal forms.
2 Use normal vectors to measure the distance to a plane.
Section 5.4
The Gradient Vector
Goals:
1 Calculate the gradient vector of a function.
2 Relate the gradient vector to the shape of a graph and its level
curves.
3 Compute directional derivatives.
Question 5.4.1
How Do We Compute Rates of Change in Another Direction?
Recall that we compute D
x
f by comparing the values of f at (x, y) to
the value at (x + h, y ), a displacement of h in the x-direction.
D
x
f (x, y) = lim
h→0
f (x + h, y) −f (x, y )
h
To compute D
u
f for
u = a
i + b
j, we compare the value of f at (x, y ) to
the value at (x + ta, y + tb), a displacement of t in the
u-direction.
Limit Formula
D
u
f (x, y) = lim
t→0
f (x + ta, y + tb) −f (x, y )
t
390
Question 5.4.2
What Is the Gradient Vector?
Definition
The gradient vector of f at (x, y ) is
∇f (x, y) = ⟨f
x
(x, y ), f
y
(x, y )⟩
Remarks:
1 The gradient vector is a function of (x, y ). Different points have
different gradients.
2
u
max
, which maximizes D
u
f , points in the same direction as ∇f .
3
u
0
, which is tangent to the level curves, is orthogonal to ∇f .
393
Section 5.4
Suppose that f (x, y , z) is a differentiable function, and f (3, 5, −2) = 13.
Suppose further that the vectors ⟨3, 1, 0⟩ and ⟨0, 2, 5⟩ both lie in the
tangent plane to the surface f (x, y, z) = 13 at (3, 5, −2). If the
maximum value of D
u
f (3, 5, −2) is 20, find all possible values of
∇f (3, 5, −2).
409
Section 5.5
The Chain Rule
Goals:
1 Use the chain rule to compute derivatives of compositions of
functions.
2 Perform implicit differentiation using the chain rule.
Section 5.5 The Chain Rule
Motivational Example
Suppose Jinteki Corporation makes widgets which is sells for $100 each.
It commands a small enough portion of the market that its production
level does not affect the demand (price) for its products. If W is the
number of widgets produced and C is their operating cost, Jinteki’s
profit is modeled by
P = 100W − C
The partial derivative
∂P
∂W
= 100 does not correctly calculate the effect of
increasing production on profit. How can we calculate this correctly?
411
Question 5.5.4
What If We Have More Variables?
We can also modify it for functions of more than two variables.
Theorem
Given f (x, y, z), x(t), y(t) and z(t), all differentiable, we have
df
dt
=
∂f
∂x
dx
dt
+
∂f
∂y
dy
dt
+
∂f
∂z
dz
dt
or
df
dt
= ∇f (x, y, z) ·⟨x
′
(t), y
′
(t), z
′
(t)⟩
419
Section 5.6
Maximum and Minimum Values
Goals:
1 Find critical points of a function.
2 Test critical points to find local maximums and minimums.
3 Use the Extreme Value Theorem to find the global maximum and
global minimum of a function over a closed set.
Section 5.7
Lagrange Multipliers
Goals:
1 Find minimum and maximum values of a function subject to a
constraint.
2 If necessary, use Lagrange multipliers.
Question 5.7.7
Can This Lagrange Apply to More Than One Constraint?
If we have two constraints in three-space, g (x, y, z) = c and
h(x, y, z) = d, then their intersection is generally a curve.
Figure: The intersection of the constraints g (x , y, z) = c and h(x, y, z) = d
465
Question 5.7.7
Can This Lagrange Apply to More Than One Constraint?
Remark
You can check the reasonableness of this method by noting that it gives
us a system of 5 variables, x, y , z, λ, µ, and five equations:
f
x
(x, y , z) = λg
x
(x, y , z) + µh
x
(x, y , z) g(x, y, z) = c
f
y
(x, y , z) = λg
y
(x, y , z) + µh
y
(x, y , z) h(x, y, z) = d
f
z
(x, y , z) = λg
z
(x, y , z) + µh
z
(x, y , z)
We therefore generally expect this system to have a finite number of
solutions, though there are plenty of counterexamples to this expectation.
468
>