Matrices Flashcards

1
Q

Dimensions of a matrix

A

Written as x X y
No. of rows x no. of columns

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

Matrix vs column vector vs row vector

A

A matrix has 2+ rows and columns
A column vector has one column
A row vector has one row

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

If the value of a variable is a matrix

A

Use bold, capital letters or a Tilda under the letter

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

Adding/subtracting matrices

A

Must be the same dimensions meaning its conformable for addition
Add/subtract the elements in corresponding positions

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

Scalar multiplication

A

Multiply everything in the matrix by the scalar

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

Square matrix

A

Has the same amount of rows and columns

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

Zero matrix

A

A matrix where all the elements are zero

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

Identity matrix

A

A square matrix where the diagonal from the top left is filled with 1s, every other value is 0

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

How to find an element in a multiplied matrix?

A
  • Take the corresponding row from the first matrix
  • Take the corresponding column from the second matrix
  • Multiply first in row by first in column and so on
  • Sum the answers
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What must be true to be able to multiply matrices

A

Columns in matrix 1 = rows in matrix 2 so its conformable under multiplication

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

Does AB = BA for matrix multiplication?

A

No, as matrix multiplication is non-commutative.

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

Dimensions of a multiplied matrix

A

Rows in a x columns in b

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

What is the relation between the determinant/magnitude and the area scale factor of a matrix transformation?

A

The determinant of a matrix represents the area scale factor of the transformation. The area of the image can
be found by multiplying the area of the object by the determinant.

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

How to write determinant of matrix A

A

det(A) or |A|

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

If det(A) = 0

A

A is a singular matrix and doesn’t have an inverse

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

If det(A) is not equal to 0

A

A is non-singular and does have an inverse

17
Q

Determinant of matrix a b
c d

A

ad-bc

18
Q

Determinant of matrix a b c
d e f
g h i

A

a | e f | - b | d f | + c | d e |
| h i | | g i | | g h |

Do the 2x2 determinant of matrices not in the same row/column as the factor

19
Q

The minor of an element in a 3x3 matrix

A

The determinant of the matrix remaining when the row/column it is in are eliminated

20
Q

Inverse of a matrix

A

Written as M^-1, undoes the effect of a matrix
MM^-1 = M^-1M = I

21
Q

Inverse of a 2x2 matrix

A

1 ( d -b)
———-
det(A) ( -c a)

22
Q

What must you do when multiplying by an inverse matrix

A

Do it to the front of both sides of the equation or the back of both
Write that MM^-1 = I before removing

23
Q

A^T

A

Transpose of matrix A, inverted rows and columns, keeping the leading diagonal entires the same.

24
Q

Inverting a general matrix

A

1) find det(A)
2) make a matrix of minors
3) use that matrix with each second sign reversed
4) transpose it
5) multiply by 1/det(A)

25
Q

What are the three configuration of planes, if there are no solutions to the simultaneous equations?

A
26
Q

What is the one configuration of planes, if there are infinitely many solutions to the simultaneous equations?

A
27
Q

What is the one configuration of planes, if there is one unique solution?

A
28
Q

How can you spot when planes are parallel?

A

If two or more planes are parallel, they can be written so that the coefficients of x, y and z are the same but the constant term is different in Cartesian form.

e.g.:
x + 2y + 3z = 1 and x + 2y + 3z = 2 are parallel planes

x + 2y + 3z = 1 and 2x + 4y + 6z = 2 are the same plane

29
Q

What is true about the configuration of the planes, if the determinant is zero and none of the planes are parallel?

A

This means there is no unique solution, and if none of the planes are parallel, there are two possibilities:

  • The equations are consistent, in which case there are infinitely many solutions and the planes for a sheaf.
  • The equations are inconsistent, in which case there are no solutions and the planes must form a triangular prism.
30
Q

How do you distinguish the two possibilities if the determinant is zero for simultaneous equations?

A

Eliminate one of the variables so that you have two equations in two unknowns. Then check if the two equations are consistent or not (represent the same equation).

31
Q

How do you find the equation of the line that represents a sheaf in simultaneous equations?

A

Set one variable as a parameter in the three equations, then solve them simultaneously to find a vector equation of a line for x y and z.

e.g.

32
Q

What does conformability mean in matrices?

A

It means the dimensions are suitable for defining some operation (e.g. addition or multiplication)

33
Q

What are the steps to find invariant points or lines of invariant points of a matrix, T

A

T (x) = (x)
(y) = (y)
then solve for x and y

34
Q

What are the steps to find invariant lines of a matrix, T?

A

T (x) = (x’)
(y) = (y’)

then substitute y = mx+c after the matrix multiplication.

then produce an equation: y’ = mx’ + c by subbing in equations found

then solve for coefficients of x and then the term that includes c.