Quiz 2 Flashcards

1
Q

What are the conditions that need to be fulfilled for something to be considered a vector space?

A

Define a set of objects V = {u, v, w, …}. It is a vector space if
Addition
(A1) Closure under addition: If u and v belong to V then so too does u ⊕ v.
(A2) Commutative law for addition: If u and v belong to V, then u ⊕ v = v ⊕ u.
(A3) Associative law for addition: If u, v, and w belong to V, then u ⊕ (v ⊕ w) = (u ⊕ v) ⊕ w.
(A4) There exists a zero vector in V denoted by 0 such that for every vector u in V, u ⊕ 0 = u.
(A5) For every vector u in V there exists a vector –u, called the additive inverse of u, such that u ⊕ –u = 0.
Multiplication
(S1) Closure under scalar multiplication: If u belongs to V, then so too does α ⊙ u for any scalar α.
(S2) For any two scalars α and β and any vector u in V, α ⊙ (β ⊙ u) = (αβ) ⊙ u.
(S3) For any vector u in V, 1 ⊙ u = u.
(S4) For any two scalars α and β and any vector u in V, (α + β) ⊙ u = (α ⊙ u) ⊕ (β ⊙ u).
(S5) For any scalar α and any two vectors u and v in V, α ⊙ (u ⊕ v) = (α ⊙ u) ⊕ (α ⊙ v).

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

What do you need to do when working with vectors?

A

Surround + and . with a circle to make ⊕ and ⊙ for addition and multiplication. It signifies that the addition and multiplication may be non-normal

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

What is a tuple and an n-tuple?

A

A tuple is a 1 x n row matrix which denotes a point in a R^n space. n is the dimension of the space.

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

What chapter did you not make notes on?

A

2.1 in Bronson and thus I should look at to ensure I am confident

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

What is the magnitude of a tuple?

A

Define a tuple n = [a_1 a_2 … a_n]
The magnitude is
m = sqrt((a_1)^2 + (a_2)^2 + (a_n)^2))

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

When is a n-tuple normalized?

A

When its magnitude is equal to 1

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

What is ∈ and | in set notation?

A

∈ means belongs to and | means such that

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

What is a subspace and how can you use it to cut down the number of steps in proving a set of objects is a vector space?

A

A subspace is a vector space which is completely contained by another vector space. An example of this might be to define a set
S = [{x y x} ∈ R^3 | y = 0]
This obviously is a subset of the vector space R^3 which is already proved to be a vector space.
Due to this knowledge, we now only have to prove 3 properties
Closure under addition: Define u, v ∈ S, then u + v ∈ S

Closure under multiplication: Define u ∈ S and also the variable a which is some arbitrary scalar. If these are both true then a * u ∈ S
If you can prove both of these to be true then S is a vector space

That the zero vector for the larger set is also contained within the subset (So for the example provided [0 0 0] is the zero vector for R^3, and so for S to be a subset [0 0 0] must also be contained in S)

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

What does it mean for u to be a linear combination of vectors v w and x?

A

It means that for some scalars a, b, and c
u = av + bw + cx

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

What is the span of a set of vectors?

A

It is the set of all linear combinations of those vectors

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

When is a set of vectors linearly independent?

A

When the only solution to c1v1 + c2v2 + … + cnvn = 0 is
c1 = c2 = … = cn = 0

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