Chapter 3 (Vectors) Flashcards

1
Q

Length of a vector (norm)

A

sqrt[(v1^2) + (v2^2) + … + (vn^2)]

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

What is a unit vector and how do you find the direction of a vector?

A
  1. Unit vector = vector of length 1
  2. Direction of a vector = [1/ ||v||] x v
    –> unit vector in direction of vector
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

U (dot) V = ?

A

U (dot) V = ||U|| ||V|| cos (theta)

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

proj aU (projection of U on a) = ?

A

pro aU = [(U (dot) a)/ ||a||2)] x a

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

vector component of U orthogonal to a

A

U - proj aU

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

norm of proj aU = ?

A

[|U (dot) a|]/||a||2

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

distance between a point and a line

A

D = |axo + byo + czo + d|/sqrt[(a^2) + (b^2) + (c^2)]

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

Steps for plane passing through 3 points

A
  1. cross product of both vectors starting from one initial point
    –> to find n
  2. Point normal form
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Steps for plane through one point and perpendicular to 2 planes

A
  1. cross product of n1 and n2 (of the two other planes)
    –> to find n
  2. Point normal form
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Steps for plane through 2 point and perpendicular to one plane

A
  1. cross product of (L –> AB) and (P2) (since v // n2)
    –> to find n
  2. Point normal form
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Vector equation of a plane

A

(p) = po + v1t1 + v2t2
–> v1 and v2 = noncollinear vectors

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

Vector equation of a line

A

p = po + vt

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

Parametric equation of a line

A

x = xo +ta
y = yo + tb
z = zo + tc

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

Intersection of (L) and (P)

A
  1. Entire line –> (L) is in (P)
    –> (L) // (P) <–> v perp n
    –> v (dot) n = 0
  2. Empty set –> (L) // (P) but outside of (P)
    –> (L) // (P) <–> v perp n
    –> v (dot) n =0
  3. Point –> (L) NOT // (P) and intersects (P)
    –> v (dot) n NOT EQUAL to 0
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Intersection of 2 (P)

A
  1. Line –> (P1) NOT // (P2)
    –> n1 NOT // n2
  2. Plane –> (P1) // (P2) + coincides (identical!)
    –> n1 // n2
  3. Empty set –> (P1) // (P2) BUT DON’T coincide
    –> n1 // n2
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Direction vector of the line of intersection of 2 (P)

A

v = n1 x n2 (cross product)

17
Q

Intersection of 2 (L)

A
  1. Empty set –> (L1) // (L2) BUT DON’T coincide
    v1 // v2
    –> (L1) NOT // (L2) + DON’T coincide
    (skew lines)
  2. Line –> (L1) // (L2) and coincide (identical!)
    –> v1 // v2
  3. Point –> (L1) NOT // (L2) BUT both in same (P)
    –> lie on same plane
18
Q

Distance between point to (P)

A

D = |axo + byo + czo + d|/sqrt[(a^2) + (b^2) + (c^2)]

19
Q

Steps distance between 2 // (P)

A

D ((P1), (P2)) = D ((A), (P1))

  1. Find A = (xo, yo, zo) from (P2)
    –> set y, z = 0 and solve for x
  2. Find (a, b, c) from (P1)
    –> n = (a, b, c)
  3. D =|axo + byo + czo + d|/sqrt[(a^2) + (b^2) + (c^2)]
20
Q

Steps distance between (P) and // (L)

A

D ((L), (P)) = D ((A), (P))

  1. Find A = (xo,yo,zo) from (L)
  2. Find (a, b, c) from (P)
    –> n = (a, b, c)
  3. D =|axo + byo + czo + d|/sqrt[(a^2) + (b^2) + (c^2)]
21
Q

Steps distance between point and (L)

A
  1. Find AB from distance between point given and point on (L)
  2. Find v from eq of line
    D = ||AB x v||/||v||
22
Q

Point on (P) closest to given point

A

Point of intersection between (P) and (L) perp to (P) and passing through given point

Method:
1. v=n of (P)
2. Find eq of (L)
3. Plug (x,y,z) in (P) eq and solve for t and then replace in eq to get point of intersection

23
Q

Point on (L) closest to given point

A

Point on (L) such that vector from given point to point on (L) is perp to (L)

Method:
1. Point on (L) : same eq as the (L)
2. Solve for t using dot product (with the point on (L) and v of (L))
3. Replace in eq

24
Q

What are skew lines?

A

(L1) NOT // (L2) and DO NOT intersect
–> on different planes

25
Q

Distance between skew lines

A

D = ||proj (v1 x v2) PQ||
= |PQ (dot) (v1 x v2)|/||v1 x v2||
–> tripe scalar product

26
Q

||U x V ||= ?

A

||U x V|| = ||U|| ||V|| sin(theta)

27
Q

Area of parallelogram

A

A = ||U x V||

28
Q

Triple scalar product

A

U (dot) (V x W) = V (dot) (W x U) = W (dot) (U x V)

29
Q

Volume of parallelepiped

A

V = U (dot) (V x W)

NOTE: if U (dot) (V x W) = 0
–> vectors don’t lie on the same plane