Stuff Other Flashcards

1
Q

Linear Combinations

A

a1x1 + a2x2 + a3x3
Set of vectors where each vector is multiplied by a weight

Ax is a linear combination of the vectors in A

a1x1 + a2x2 + a3x3, a is a vector, x is a weight

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

Span {v1, v2, v3}

A

“Set of all linear combinations”
v1 is a base but
2v1, 5v1, and -v1 are
also answers

The linear combinations are simply the solutions

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

Linear Independence

A

Only has a trivial solution
v1 != 0, no 0 vector
v1 and v2 cant be multiples
n <= m

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

Parametric Form

A

x = p + x3v
x = [#] + x3[# in x3]
_
x = 3 + x2[5]
x1 = 3 + 5x2

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

Homogeneous

A

Ax = 0

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

Identity Matrix

A

Square matrix
1’s on diaginal
0’s elsewhere (sans b)

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

Consistancy

A

Not consistant if 0x = #

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

m x n

A

m = rows
n = columns

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

RREF

A

1’s mostly on diaginal
1’s are leading entries
1’s are the only non zero entry in column

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

Pivot Posistion

A

Leading non zero number in row

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

Row Operations

A
  1. R1 == R2
  2. R1 + 3R2 => R1
  3. R1 * (1/2) => R1
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Uniqueness

A

Is the found solution the only one

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

Domain

A

Entirety/span of R^n

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

Co Domain

A

Entirety of R^m

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

Trivial Solution

A

x = 0

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

Solution Set

A

An x(s) in Ax=b

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

Image

A

x after some transformation
T(x), Ax, b

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

Range

A

span of R^m
Set of all images of T(x)

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

Standard Matrix

A

A = [ T(e1), T(e2), T(e3) ]

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

T: R^n -> R^m is onto R^m

A

R^n = R^m

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

T: R^n -> R^m is one to one

A

If T(x) = 0 has one solution
Aka if A is linearly independent

22
Q

Diagonal Matrix

A

Non zeros only on main diagonal
Square matrix

23
Q

AB

A

A[ b1, b2, b3 ]
Amxn * Bnxp

24
Q

Transpose

A

Amxn becomes Anxm

25
Q

Inverse Matrix

A

A * A^-1 = ID

26
Q

2x2 Invertable Matrix Rule

A

detA = ad - bc != 0 then invert
invertA = 1/detA [d -b, -c a]

27
Q

Elementary Matrix

A

An ID matrix after only one row operation

28
Q

Inverse Elementary Matrix

A

The matrix that turns E into a ID matrix

29
Q

(3x3+) Invertable Matrix Rule

A

[ A | I ] => [ I | A^-1]

30
Q

Subspace

A

Any set with a zero vector
H = span{ v1, v2, v3 }

31
Q

Column Space

A

ColA = span{ a1, a2, a3 }
R dimension and column height need to match

32
Q

Null Space

A

All solutions for Ax=0

33
Q

Basis for Subspace

A

The linearly independent set, no span

34
Q

Standard Basis

A

{ e1, e2, e3 }

35
Q

Basis for NullA

A
  1. Ax = 0
  2. RREF
  3. Parametic form
  4. Vectors go into { v1, v2, v3 }
36
Q

Basis for ColA

A
  1. RREF
  2. Take pivot columns, discard free columns
  3. Use original A, not RREF
37
Q

Coordinate Vector of x relative to B

A

xB = [c1, c2, c3]
x = c1v1 + c2v2 + c3v3
Find xB

38
Q

Dimensions of Subspace

A

dimH = Number of vectors in Basis

39
Q

Rank

A

Number of pivot columns
(Dimensions of ColA)

40
Q

Rank Theroem

A

rankA + dim(NullA) = n
n = # of A columns

41
Q

Determinats

A

detA = (-1)^i+j * aij * detAij
detA = ad - bc

42
Q

Cofactor Expansion

A

detA = a11C11 + a12C12 + a13C13

43
Q

Triangular detA

A

Multiply the main diagional

44
Q

detA Row Operations

A

Addition (detB = detA)
Swapping (detB = -detA)
Multiplication (detB = k detB)

45
Q

Cramer’s Rule

A

xi = detAi (b) / detA
detA but replace column Ai with b

46
Q

Adjugate Invertable Matrix Rule

A

For square invert
A^-1 = (1 / detA) adjA

47
Q

Adjugate

A

adjA = [aij]^T =
C11 … Cn1
C1m … Cnm

48
Q

Area or Volumn of Matrix

A

detA

49
Q

S vector space

A

(-∞, …, v-2, v-1, 0, v1, v2, …, ∞)
Written as a row

50
Q

P vector space

A

p(t) = a0 + a1 * t + a2 * t^2 + … an * t^n

51
Q
A