M2: Matrix and Matrix algebra Flashcards

1
Q

Rectangular collection of variables or scalars contained within a set of square[] or within round brackets

A

Matrix

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

CLASSIFICATION OF MATRIX:
Number of rows=number of column

A

Square matrix

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

CLASSIFICATION OF MATRIX:
Square matrix with all zero value except for aij where i=j

1 0 0
0 5 0
0 0 9

A

Diagonal Matrix

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

Diagonal matrix with all non-zero entry equal to one
1 0 0
0 1 0
0 0 1

A

Identity matrix

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

A diagonal matrix with all non-zero entry equal to some other constant
7 0 0
0 7 0
0 0 7

A

scaler matrix

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

MATRIX MODIFICATION:
Multiply a row by a non zero constant

A

Scale operation

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

MATRIX MODIFICATION:
Use the other row to modify the other. Example: R1=R1-2R2

A

Pivot operation

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

MATRIX MODIFICATION:
Exchange two rows of the matrix

A

Swap operation

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

How to add and subtract matrices

A
  1. Ensure that they have the same order (ex both are 3x3 Row x Column)
  2. Add/Subtract values of the same position
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

How to Multiply matrices

A
  1. Note that AB != BA
  2. Check if the #column of A matches the # rows in B. Otherwise, it cannot be multiplied
  3. The order or size can be determined by multiplying the row of a and the column of b
  4. Multiply values in first row a to every values in first column b nd add the product
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

How to divide

A
  1. Get the inverse of b
  2. Multiply
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

How to calculate determinants

A
  1. Get the minor
  2. Consider the cofactor sign using (-1)^(J+K)
  3. Perform 3X2-> 2x2 process of getting determinant (depends on the process)
  4. Multiply and add values
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

___ measures how much a vector space change in a matrix transformation

A

Determinants

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

The __ indicates that the the vector space was flip after matrix transformation

A

Negative determinants

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

PROPERTIES OF DETERMINANTS MATRIX
1. If one row or column are all zeroes, ___

A

it has zero determinant

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

PROPERTIES OF DETERMINANTS MATRIX
2. If there is an identical column/row, it has ___

A

Zero determinant

17
Q

PROPERTIES OF DETERMINANTS MATRIX
3. To solve for determinant in diagonal matrix, ___

A

Multiply the product of diagonal element

18
Q

PROPERTIES OF DETERMINANTS MATRIX
4. The determinant ___ when the values of rows and columns are transposed/interchanged

A

does not change

19
Q

PROPERTIES OF DETERMINANTS MATRIX
5. If each column is multiplied by m, then ____

A

m x determinant

20
Q

PROPERTIES OF DETERMINANTS MATRIX
6. If two columns and rows are interchanged, the ___

A

sign of determinant is changed

21
Q

PROPERTIES OF DETERMINANTS MATRIX
Determinant does not change if each element of a column/row is __ by a number k and __ to the corresponding elements of a column

A

multiplied
Added/subtracted

22
Q

PROPERTIES OF DETERMINANTS MATRIX
Addition of each 1st row of two matrix equal to the ___

A

sum of the first row at the right matrix

23
Q

Inverse of a 2X2 matrix formula

A

A^(-1)= (1/(AD-BC)) | D -B |
| -C A |

24
Q

Inverse of a 3x3 matrix fomula

A
  1. Make the matrix look like this
    [Matrix a| Identity of matrix A]
  2. Make the upper and lower triangle of matrix A equal to zero (convert to diagonal matrix) and apply the solution to Identity as well
    A 0 0 | D 0 E
    0 B 0 | F G 0
    0 0 C | H P R
  3. Make the values of diagonal matrix equal to one and apply the solution to the identity

1 0 0 | D/A 0 E/A
0 1 0 | F/B G/B 0
0 0 1 | H/C P/C R/C

  1. Confirm that is is true by multiplying the AxA^(-1). If the value the an identity matrix, then it is the inverse
25
Q

Transpose of a Matrix or A^(T)

A

A=
A 1
B 1
C 1

A^(T)=
A B C
1 1 1

25
Q

Transpose of a Matrix or A^(T)

A

A=
A 1
B 1
C 1

A^(T)=
A B C
1 1 1

26
Q

How to get Eigenvalues

A
  1. Use A- Lambda (Identity) then get characteristic eq by using the rules for getting determinant
  2. Get Eigenvalues by factoring the eq
  3. Substitute the first Eigenvalue such that A-Value1(Identity)
  4. Conduct Row echelon form to get the first row values only
  5. Convert matrix to equation
  6. Get x1 and X2 via guessing the first value and substituting to the other
  7. Repeat steps 3 onwards until all eigenvalues are substituted