Chapter 13 Flashcards

1
Q

Unit vector

A

vector with length equal to 1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

|u| =

A

sqr root of (u1^2 + u2^2 + u^3), magnitude/length/norm

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

what scalar multiple of v gives a unit vector in the same direction as v?

A

(1/(|v|))(|v|), v != 0

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

dot product of u and v

A

u1(v1) + u2(v2) + u3(v3) -> gives a scalar (number)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

if two vectors, u and v, are orthogonal

A

then the dot product of u and v = 0

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

projvU (vector projection of u onto v) =

A

scalvU(v/|v|)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

the work done by a constant force F moving an object along the displacement vector D =

A

(the amount of force in d direction) (|d|) = |F||D|cos theta = F*d

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

cross product of u and v, u x v is

A

the vector with magnitude |u x v| = |u|*|v| sin(theta) –> scalar as answer

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

cross product given u = <u1, u2, u3> and v = <v1, v2, v3>

A

u x v = <u3v2 - u2v3, u3v1 - u1v3, u1v2 - u2v1> –> vector as answer

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

volume =

A

base area * height = |(u x v)| * |w||cos theta| =

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

In R^3, determine a line by

A

A) a point on it and B) direction via vector parallel to the line

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

In R^3, any two ____ determine _____

A

points, line

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

In R^3, any three ____ determine _____

A

non-collinear points, plane

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

In R^3, determine an equation for plane from

A

A) a point on it and B) a vector normal/orthogonal to it

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Let (x0, y0, z0) be a point on line l and vector v = <a, b, c> be in the directional of l. An arbitrary point on l must satisfy

A

vector P = vector P0 + t(vector v)
<x, y, z> = <x0+ ta, y0 + tb, z0 + tc> –> vector equation
x = x0 + a y = y0 + b z = z0 + z –> parametric equations
eliminate parameter: t = (x - x0)/a = (y-y0)/b = (z-z0)/c –> symmetric equations

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Let (x0, y0, z0) be a point on a plane and n = <a, b, c> be a vector that is orthogonal (a normal vector) to the plane. An arbitrary point (x, y, z) on the plane must satisfy

A

P0P * n = 0,
<x-x0, y-y0, z-z0> * <a, b, c> = 0
= a(x - x0) + b(y - y0) + c(z - z0) = 0
ax + by + cz = d, where d = ax0 + by0 + cz0

17
Q

Give an equation for the plane containing points: P, Q, and R.

A

vector PQ, vector QR, vector PR would be in the plane, so the cross product of any 2 is normal to the plane
1) Find the vectors PQ, QR, PR (any two of them)
ex) vector PQ = <q1-p1, q2-p2, q3-p3>
vector RQ = <q1-r1, q2-r2, q3-r3>
2) Find the cross product of those vectors
ex) vector PQ x vector RQ:
<(q2-p2) * (q3-p3) - (q3-p3) * (q2-r2) i,
(q1-p1) * (q3-r3) - (q2-p2) * (q1-r1) j,
(q1-p1) * (q2-r2) - (q2-p2) * (q1-r1) k >
Simplifies to vector v = <#, #, #>
3) Plug into formula for equation:
a(x - x0) + b(y - y0) + c(z - z0) = ax + by + zc =
constant

18
Q

Normal/orthogonal =

A

perpendicular to the tangent line to the curve at the point

19
Q

Vector valued function is

A

a function of a real variable that results in a vector
Notation = vector r(t) = <x(t), y(t), z(t)>, x y and z are real valued functions of a single variable

20
Q

ellipsoid

A

((x - h)^2/ a^2) + ((y - k)^2/b^2) + ((z - l)^2/c^2) = 1
center: (h, k, l)

21
Q

cone

A

((x - h)^2/ a^2) + ((y - k)^2/b^2) = ((z - l)^2/c^2)
center: (h, k, l)

22
Q

cylinder

A

((x - h)^2/ a^2) + ((y - k)^2/b^2) = 1
center: (h, k)

23
Q

elliptical paraboloid

A

((x - h)^2/ a^2) + ((y - k)^2/b^2) = ((z - l)/c)
center: (h, k, l)

24
Q

hyperbolic paraboloid

A

((x - h)^2/ a^2) - ((y - k)^2/b^2) = ((z - l)/c)
center: (h, k, l)

25
Q

unit vector =

A

vector u/|u|

26
Q

vector S =

A

vector b (speed) + vector w (water)

27
Q

angle between 2 vectors =

A

cos theta = |uv|/(|u||v|), theta = arccos(|uv|/(|u||v|))

28
Q

radius of sphere given center and pt

A

r = square root ( (x1-x2)^2+(y1-y2)^2+(z1-z2)^2 )

29
Q

unit tangent vector =

A

derivative of r(t)/|derivative of r(t)

30
Q

definite integral that gives length of curve given r(t)

A

integral from a to b (|derivative of r(t)| dt

31
Q

if r(t) is parametrized by arc length

A

then |derivative of r(t)| = 1