Matrix Algebra and Linear Transformations Flashcards

1
Q

What is a zero matrix?

A

A matrix whose entries are all zero.

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

LINEAR COMBINATION OF VECTORS AS THE PRODUCT OF A MATRIX AND A VECTOR

it is a fundamental idea to see the linear combination like this.

A
A x = 
                       |x1|
| a1 a2 ... an|  |x2| = x1 a1 + x2 a2 + ... + xn an
                      | ... | 
                      |xn|

Note that A x is defined only if the number of columns of A equals the number of entries in x.

!!!This is completely off, i dont know why they distort my text

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

A system of linear equations can be viewed in three different but equivalent ways. Which ones?

A
  1. as a matrix equation Ax = b
  2. as a vector equation (x1 a1 + … + xn an = b)
  3. as an augmented matrix of a system of linear equations [a1 a2 … a3] = b
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

In the context of the matrix equation Ax = b. The equation has a solution if and only if …

A

… b is a linear combination of the columns of A.

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

Just for your knowledge now:

A

A - m x n matrix. the following statements are logically equivalent. Either all of them are true, or all false:

  1. For each b in Rˆm, the equation Ax = b has a solution
  2. Each b in Rˆm is a linear combination of the columns of A
  3. The columns of A span (generate) Rˆm
  4. A has a pivot position in every row.

This is about the coefficient matrix, not the augmented one.

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

What is an identity matrix?

A

The identity matrix is a square matrix that has 1s on the main diagonal and 0 as the rest of the matrix values.

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

A transformation (or mapping) T is linear if:

A

i. T(u+v) = T(u) + T(v), for all u, v in the domain of T

ii. T(cu) = cT(u) for all scalars c and all u in the domain of T

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

Every matrix transformation is a linear transformation. True or false?

A

True

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

Name two applications of the dot-product of the matrix-vector multiplication?

A

Downsampling

Blurring

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

You can multiply one m x n matrix by a n x p matrix in the following way:

A

You separate the second matrix by columns and you multiply each column with the first matrix.

After doing that with all the columns of the second matrix, you put them side by side in order and you get the result.

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

If you multiply a 3 x 5 matrix and a 5 x 2 matrix, what is the size of the resulting matrix?

A

3 x 2

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

Do you know what the row-column rule for multiplying two matrices is?

A

You take the first row of the first matrix and multiply it by the first column of the second matrix. Then you have the value for the position 11 in the resulting matrix.

You take the first row of the first matrix and multiply it by the second column of the second matrix. Then you have the value for the position 12 in the resulting matrix.

And so on

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

Name some properties of matrix multiplication

A

associative law, distributive law, identity matrix multiplication

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

A matrix A is said to be invertible if there is another matrix C that has the same dimensions such that …

!!! only when there are square matrices

A

CA = I and AC = I

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

What is a singular matrix?

A

A non-invertible one.

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

A matrix A is invertible id its determinant is …

A

not equal to 0

17
Q

How do you calculate the determinant of a 2 x 2 matrix

A

ad - cb

18
Q

When you know that a 2 x 2 is invertible how do you calculate the inverse?

A

1/detA [ d -b

-c a]

19
Q

If A is an invertible n x n matrix, then for each b in Rˆn, the equation Ax = b has the unique solution …

A

x = Aˆ(-1) b

20
Q

What is the transpose of a matrix?

A

A matrix that has interchanged the values on the rows and the values on the column. The dimensions change as well?

21
Q

What is the inverse of the inverse of a matrix?

A

The matrix itself.

22
Q

Do you know the algorithm of finding the inverse of a matrix by appending I to it?

A

You append I to the original matrix and you do row reduction to reduced echelon form only focusing on the original matrix, and then you will see that I has changed to the inverse of the matrix.

23
Q

It would be a good idea to check what matrix partitioning is.

A

A block matrix or a partitioned matrix is a matrix that is interpreted as having been broken into sections called blocks or submatrices.

Check more on the slides about it.