Matrices Flashcards

1
Q

Describe Gaussian elimination in terms of systems of equations rather than matrices

A

Eliminating values of x, y, and z until you have one variable (say z) which equals a value and then work you way back up solving for the remaining variables

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

What must a system of equations be for there to be a arbitrary value and hence infinitely many solutions?

A

The system must be homogeneous

all systems must equal zero

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

How do you turn systems of equations into a matrix?

A

Take the coefficients of the variables and put them in a m by n array

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

What does Mmxn(F) mean?

A

Defines all matrices of rows m and columns n over a field F

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

What is meant by:

  • a square matrix ?
  • the identity matrix ?
  • a diagonal matrix ?
A
  • Square is where m = n
  • Identity only has coefficients 1 along the main diagonal
  • Diagonal is where the only entries in the matrix are along the main diagonal
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What are the 4 properties of matrix addition ?

A
  • A+(B+C)=(A+B)+C
  • A+B=B+A
  • A+0(mxn)=A
  • A+(-A)=0(mxn)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What are the 4 properties of matrix scalar multiplication ?

A
  • λ(A+B) = λA+λB
  • (λ+μ)A = λA+μA
  • λ(μA) = (λμ)A
  • I A=A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is the definition of matrix multiplication?

A

For A=[aij] and B=[bij] their product AB is the matrix [cij] where [cij] = Σ a[ik] b[kj]
(Take the ith row and jth column and sum them for the new entry)

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

True or False:

Matrix multiplication is communicative (AB=BA)

A

False

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

True or False:

(AB)^T = A^T B^T

A

True

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

What are the three types of row operations?

A
  • Swap two rows
  • Multiply a row by a non zero scalar
  • Add to a row a scalar multiple of another row
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is the definition of echelon form ?

A

The leading non zero entry in every row is to the right of the leading entry of the previous row and any zero rows are placed at the bottom of the matrix.

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

What is the definition of reduced echelon form?

A

In addition to being in echelon form:

  • All leading entries are equal to 1
  • All other entries in the column of the leading entry are equal to 0
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

True or False:

  • Every matrix can not be transformed into an echelon matrix by row operation
  • Every matrix can be transformed into a reduced echelon matrix by row operations and the result will be unique
A
  • False

- True

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

How can a matrix B be obtained from a matrix A such that A~B ?

A

B can be obtained from A such that A~B when A and B are row equivalent and if and only if they have the same reduced echelon form

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

What is the equation for the number of variables in a matrix?

A

Number of non zero rows in REF + Number of parameters = Number of variables

17
Q

What is the definition of an invertable matrix ?

A

A is invertable if there is a B such that
AB=BA=Identity
If B exists this is denoted A^-1

18
Q

True or False :

(AB)^-1 does not equal A^-1 B^-1

A

False

19
Q

How would you find an inverse using row reduction ?

A

Set up a matrix with the system on the right and the identity on the right and reduce the left hand side to the identity, applying every row operation to the identity at the same time

20
Q

What is the link between row operations and elementary matrices ?

A

Preforming a row operation is the same as multiplying by the corresponding elementary matrix

21
Q

If the general solution has no parameters then what can we say about the REF?

A

The REF is equal to the identity matrix

22
Q

What are the steps for finding the determinant of any n by n matrix?

A
  • Pick the row you would like to expand upon
  • For the first entry, multiply by the matrix of signs, take that entry and then delete the ith row and jth column and then take the determinant of the remaining matrix
  • Repeat this for each entry in the row
23
Q

If a matrix A has a zero row, what can we say about the determinant ?

A

Det (A) = 0

24
Q

If a matrix A has a determinant that is non zero, what can we say about A?

A

A is invertable

25
Q

What is the definition of a symmetric matrix?

A

A matrix who’s transpose is equal to the original matrix