Week 3: Matrices Flashcards

1
Q

Is matrix addition commutative or associative?

A

Both
A+B=B+A (commutative)
A+(B+C) = (A+B) +C (associative)

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

Can a 3x2 and a 4x3 matrix be added together?

Why/why not?

A

No because they do not have the same order (size).

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

What happens when a matrix is multiplied by a scalar?

A

The scalar multiplies across all the components of the matrix.

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

What is the zero matrix?

A

A matrix with all components 0.

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

How is a matrix named?

A

A matrix is named by stating the “no. of rows by no. of columns”
For example a matrix that has 3 rows and 2 columns would be called a “3 by 2 matrix”

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

Is matrix multiplication commutative?

A

No. This means AB ≠ BA.

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

Under what conditions is matrix multiplication possible?

A

A = (m x n) B = (p x q)
AB = (m x n)(p x q)
Only possible if n = p
Resulting matrix size is m x q

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

Is matrix multiplication associative?

A

Yes.

A(BC) = (AB)C

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

Is
(kA)B = A(kB)
true?

A

Yes. It does not matter in which order a scalar is multiplied across matrices.

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

What is the identity matrix?

A

An identity matrix is a matrix that has diagonal components equal to one and all other components equal to zero.

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

What property does the identity matrix have?

A

When multiplied by the identity vector the original matrix stays the same.
AI = IA = A

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

What is the transpose matrix?

A

A transpose matrix has the columns and rows switched. The first row becomes the first column (left-right becomes up-down) or vice versa.

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

What is the determinant of a matrix?

A

It is the scalar value of a matrix.

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

Do all matrices have an inverse?

A

No. Some matrices do not have an inverse matrix.

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

What is a procedure to find the inverse matrix other than row operations?

A
  1. Find the determinant of the matrix.
  2. Find the cofactors of the matrix.
  3. Find the adjugate, transpose of the cofactor matrix.
  4. Sub into the equation
    A^(-1) = [1/detA] x [(A^C)^T]
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

When using row operations, under what circumstances does the matrix remain unchanged?

A

A matrix will remain unchanged if:

  1. Multiplying a row by a scalar
  2. Adding or subtracting 2 rows
  3. Swapping any 2 rows