Intro lecture Flashcards

1
Q

what is the dot product of two vectors a (a1, a2, a3) and b (b1, b2, b3)?

A

a.b =a1b1 + a2b2 + a3b3

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

what is the dot product of two vectors a and b, given their magnitudes and the angle between them

A

a.b = |a||b|cos (theta)

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

what two properties does the dot product have?

A

linearity: (alphaa + betab).c = alphaa.c + betab.c
symmetry: a.b = b.a

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

how do you calculate the magnitude of a vector? (otherwise known as norm or length)

A

|a| = \sqrt(a.a) = \sqrt(a1^2 + a2^2 + a3^2)

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

how can you tell if two vectors are orthogonal?

A

their dot product is zero

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

how can you give the equation of a plane, given a vector that is normal to it (a) and any point (r) on the plane (P)?

A

r.a = constant
this is because if r0 is a fixed point on the plane, then r-r0 must definitely be perpendicular to a, so (r-r0).a=0, so r.a=r0.a=constant

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

how can you easily check if a plane passes through the origin

A

it’s constant will be equal to zero, when you determine the coefficients of (x,y,z) by the vector a, and the values of (x,y,z) by a point r0

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

how can you write the equation of a plane in a way that looks cartesian?

A

a.r = a1x + a2y + a3z = constant
(with r = (x,y,z) )

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

what does the cross product give you?

A

a vector denoted a x b that is orthogonal to both a and b and thus orthogonal to the plane spanned by a and b

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

how do you calculate the magnitude of the cross product?

A

|a x b| = |a||b|sin(theta_{ab})

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

to work out the direction of the cross product, which fingers equate to which vectors in the right hand rule?

A

a is the first finger
b is the middle finger
a x b is the thumb

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

what is the magnitude of the cross product equal to

A

|a x b| is the area of the parallelogram that is spanned by the two vectors a and b

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

what are the two properties of the cross product?

A

linearity: a x (alphab + betac) = alphaa x b + betaa x c
anti-symmetry: b x a = - a x b

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

what is the cross product of a vector with itself?

A

the zero vector, i.e. a x a = 0

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

what is the cross product of a vector with any parallel vector and why?

A

0, as sin(theta_{ab})=0 with theta_{ab} either zero or pi

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

how do you find the area of a triangle given it’s vertices?

A

using one point as a basis, determine the vectors toward each other point (i.e. (B-A) and (C-A))
the magnitude of the x product gives the parallelogram area of these vectors
divide this area by 2 to get the triangle area

17
Q

given three vectors, a,b and c in R^3, what is the scalar triple product?

A

(a x b) . c

18
Q

properties of the scalar triple product

A

cyclically symmetric:
i.e. a.(bxc) = b.(cxa) = c.(axb)
pairwise anti-symmetric:
[a,b,c] =-[a,c,b]

19
Q

how do you find the volume of a parallelepiped given 3 vectors?

A

compute the determinant of the 3 vectors

20
Q

what is the vector triple product?

A

a x (b x c)

21
Q

what is the vector triple product equal to?

A

a x (b x c) = (a.c)b - (a.b)c

22
Q

what is a scalar field?

A

an assignment of a number (scalar) to every point in space
e.g. T(x) is the temperature at every point in a room

23
Q

what is a vector field

A

an assignment of a vector (usually in R^3) to a every point in space

24
Q

how might we write the vector field A(r) which is in R^3?

A

A(r)=A_x(r)i + A_y(r)j +A_z(r)k
where the components A_x, A_y and A_z are scalar functions of the position vector r = xi + yj + zk

note that the symbol r is commonly used for the position vector in R^2 or R^3