INTRODUCTION Flashcards

1
Q

distance formula

A

d = sqrt((x2-x1)^2+(y2-y1)^2+(z2-z1)^2)

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

equation of a sphere

A

d = r
center = (h, j, k), @ surface = (x, y, z)
(x-h)^2+(y-j)^2+(z-k)^2 = r^2

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

magnitude of v = <dx, dy, dz>

A

|v| = sqrt(dx^2+dy^2+dz^2)

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

unit vector

A

magnitude = 1
getting there: v/|v|

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

standard basis vectors in R3

A

i = <1, 0, 0>
j = <0, 1, 0>
k = <0, 0, 1>
ie. v = <4, 5, 6> = 4i + 5j + 6k

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

dot product: a*b
a = <xa, ya, za>
b = <xb, yb, zb>

A

a * b = xaxb + yayb + zazb

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

dot product properties (5)

A
  1. a = <a1, a2, a3>
    a * a = a1^2 + a2^2 + a3^2 = |a|^2
  2. a * b = b * a
  3. a * (b + c) = a * b + a * c
  4. s = scalar
    (sa) * b = s(a * b) = a * (sb)
  5. 0 * a = 0
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

cosine theorem
a * b =

A

|a| * |b| * cos(theta)

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

a and b are orthogonal if

A

a * b = 0

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

a and b are parallel if

A

same direction:
theta = 0 so cos(theta) = 1

opposite direction:
theta = pi so cos(theta) = -1

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

radians to degrees

A

*180/pi

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

scalar projection component of b along a

A

length or projection
projection = x = |b| cos(theta)
x = (a * b)/|a|

compa(b) = (a * b)/|a|

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

vector projection of b onto a

A

vector along a with length of projection
proja(b) = compa(b) * (a/|a|)

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

projection with an obtuse angle

A

b will project in the direction of -a to form its right triangle

compa(b) = will be negative as cos<0
multiply proja(b) by -1

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

(for cross product)
determinant of a 2 x 2 matrix
M = (a, b)
(c, d)

A

det(M) = ad - bc

|a b| = ad - bc
|c d|

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

cross product

A

a x b = i(a2b3 - a3b2) - j(a1b3 - a3b1) + k(a1b2 - a2b1)

17
Q

cross product is _____ to both vectors

A

orthogonal,
a x b = -(b x a)

18
Q

to find if a vector crosses front or back

A

follow the curve of your right hand

19
Q

sin theorem

A

|a x b| = |a| * |b| * sin(theta)

20
Q

area of a parallelogram w/ sides a and b

A

A = |a x b|

Atriangle = “ “ /2

21
Q

volume of a parallelopiped w/ sides a and b

A

V = a * (b x c)

22
Q

a line is determined by…

A

a point on the line

a direction vector(parallel and scalar multiple of v by t when v lies on the line)

23
Q

parametric equations for the line

through P0(x0, y0, z0) and any P

parallel to <a, b, c> scalar multiple by t

A

P0P = <x - x0, y - y0, z - z0>

x - x0 = at, y - y0 = bt, z - z0 = ct

x = x0 + at
y = y0 + bt
z = z0 + ct

24
Q

a plane is determined by…

A

a point on the plane

a normal vector(perpendicular and scalar multiple of v by t when v lies on the plane)

25
Q

equation of a plane

through P0 = (x0, y0, z0) and any P

w/ normal vector n = <a, b, c> scalar multiple of v by t

A

P0P = <x - x0, y - y0, z - z0>
(orthogonal to n)

a(x - x0) + b(y - y0) + c(z - z0) = 0

26
Q

angle between planes =

A

= angle between normal vectors