Section 7 Chapter 43 - Vectors Flashcards

1
Q

Vector

A

A quantity with both direction and magnitude

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

How vectors can be represented as a list

A

[a, b, c] where a, b, c each represent the vectors magnitude along the x, y, z axes

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

How vectors can be represented in terms of sets

A

A 4-vector over ℝ can be written as ℝ<span>4</span>

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

How a vector can be represented as a function

A

A vector can be considered as a function that maps {0, 1, 2, 3} to {x, y, z, w}

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

How a vector as a function can be represented in programming

A

With a dictionary

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

How a vector can be represented visually

A

A vector can be represented as an arrow from the origin to the point that the vector represents

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

Graphical result of vector addition

A

Translation

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

Graphical result of scalar-vector multiplication

A

Scaling

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

Convex combination of two vectors

A

If u and v are vectors then their convex combination is in the form αu + βv, where α+β

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

How vectors can be used as a parity bit checker

A

u = [1,1,1,1,1]

v = [0,1,1,0,1]

v dot u (where you replace + with XOR and * with AND) will give you the parity bit to achieve even parity

When you sum the products you are essentially taking the last bit as if you were summing binary

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