Basic Matrix Operations Flashcards

1
Q

What is a scalar multiple?

A

Denoted cA, where c is a real number (called the scalar), is a matrix obtained from A where each entry is multiplied by c.

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

How are two matrices conformable for addition?

A

If, for two matrices A and B, they are both m x n matrices, then they are conformable for addition.

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

How do you perform matrix addition?

A

(A + B)[i, j] = A[i, j] + B[i, j]
Pretty simple.

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

List all of the possible operations on A, B, C (all with order m x n) by two scalars, α and β.
This will include both addition and scalar multiplication

A
  • A = -1 * A
    A - A = O
    A + O = A
    A + B = B + A
    A + (B + C) = (A + B) + C
    α(A + B) = αA + αB
    (α + β)A = αA + βA
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Is AB = BA always true?

A

AB = BA if, and only if, A and B are both null matrices.

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

How do you perform matrix multiplication?

A

For an m x n matrix A and an n x p matrix B, the matrix product C = A * B (C=AB) is defined to be an m x p matrix.

For every i in [1, …, m] and every j in [1, …, p]:
c[i ,j] = a[i, 1]b[1, j] + a[i, 2]b[2,j] + … + a[i, n]*b[n,j]

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

What mathematical equation can you represent with a matrix format?

A

Linear equations!

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

List all of the possible operations on A, B, C (all in correct order for which addition and multiplication is defined)

A

A(B+C) = AB + AC
(A+B)C = AC + BC
(AB)C = A(BC)

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

What is (AB)^T equal to?

A

B^T * A^T

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