Vectors & Space Geometry (Part 1) Flashcards

1
Q

How many octants does the space have?

A

It has 8

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

How can you get the distance between two points?

A

By using Pythagoras. That is, using the square root of the squares of the difference between the coordinates of the points

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

What is the equation of a sphere?

A

Like the one for the circumference but with an extra term that depends on z

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

How can we describe the coordinates planes XY, YZ, XZ?

A

Z =0
X = 0
Y = 0

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

What is the norm of a vector?

A

It is the distance from the origin to the point.

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

How can we get the angle of a vector?

A

By using arctangent of y divided by x.

It can also be found by solving for theta both for the dot product or cross product

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

What is the dot product?

A

It’s the sum of the product between the respective coordinates of the involved vectors

It’s the product of the norms of the vectors times the cosine of the angle between them

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

What is the cross product?

A

It’s another vector that is orthogonal to the vectors involved in the product

It’s the product of the norms of the vectors times the sine of the angle between them

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

Cauchy-Schwartz and Triangular Inequality

A

|a*b| <= ||a|| ||b||

||a+b|| <= ||a|| + ||b||

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

Projection of a vector onto the other?

A

(a * b)/norm(a) Times a/norm(a)

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

What happens if we do the cross product between two vectors that are collinear?

A

It will result in the zero vector.

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

Equations of a line?

A

(x,y,z) = (xo, yo, zo) + t(a,b,c)

Parametric one from the one before

Symmetric one from parametric one

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

When are two lines parallel, orthogonal or crossed?

A

They are either parallel or perpendicular if their respective director vectors are either parallel or perpendicular

The cross if they’re not parallel and do not intersect

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

Equations for a plane

A

We need a point where it passes through and an orthogonal vector to the plane

n(p -po) = 0

a(x - xo) + b(y - yo) + c(z - zo) = 0

ax + by + cz - d = 0

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

When are two planes parallel or orthogonal?

A

When their respective normal vectors are parallel or orthogonal.

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

When two planes cross, what happens?

A

It generates a line that can be found by providing a value to one of the coordinates and solving for theta both remaining two.

17
Q

Distance from a point to a plane?

A

|axo + byo + czo- d| divided by norm of normal vector

18
Q

Distance from a point P1 to a line L with director vector v that passes through P0?

A

||(P1P0) x V|| divided ||V||

19
Q

How to determine if a line intersects a plane?

A

If a line intersects a plane, then there must be a parameter t_{0} so that when substituted in the coordinates of L it also satisfies the equation of the plane