Matrix Size
Matrix Terms
Matrix Types
Matrix Computations
Proofs With Matrices
100

The element:

a_12

In the matrix (assuming it's not zero-indexed):

[[1,2,3],[4,5,6],[7,8,9]]

What is 2?

100

The transpose of:

[[1,2],[3,4]]


What is:

[[1,3],[2,4]]

100

(Upper/Lower/Neither/Both) The following is a type of matrix from the triangular family of matrices:

[[1,0,0],[2,1,0],[3,1,0]]

What is lower triangular?

100

A+B, where:

A = [[1,2]], B = [[3,4]]

What is:

[[4,6]]

?

100

(T/F) With reasoning:

tr(diag(d_1,d_2,...,d_n)) = d_1 + d_2 + ... + d_n

What is True?


(Reasoning: the diagonal matrix has diagonal entries d_1 .... d_n, so the trace is the sum of those entries)

200

The size of the matrix:

[[-1,7],[2,5],[-1,0]]


What is 3x2?

200

The trace of:

[[-1,0,2],[0,1,2],[1,2,7]]


What is 7?

200

(Upper/Lower/Neither/Both) The following is a type of matrix from the triangular family of matrices:

[[0,1,1],[1,0,1], [0,0,1]]


What is neither?

200

3A, where

A = [[1,3,5], [-2,5,-7],[2,0,1]]


What is:

[[3, 9, 15],[-6,15,-21],[6,0,3]]

?

200

(T/F) To be symmetric, we just require:

A = A^T


What is true?

300

The 3rd row vector from the matrix:

[[1,2],[-1,-2],[-4,5],[2,4]]

What is:

\vec{a_3} = [[-4, 5]]

?

300

The transpose of:

[[a,b,c],[d,e,f],[g,h,i],[j,k,l]]

What is:

[[a,d,g,j],[b,e,h,k],[c,f,i,l]]

?

300

(Upper/Lower/Neither/Both) The following is a type of matrix from the triangular family of matrices:

[[1,0,0],[0,-5,0],[0,0,3]]

What is both upper/lower triangular?

300

3A - 2B, where:

A = [[1,2],[-1,-2]], B = [[1,2],[3,4]]

What is:

[[1, 2], [-9,-14]]

?

300

(T/F) The following matrix is diagonal:

[[0,0,0], [0,0,0],[0,0,0]]

What is true?

(Diagonal just requires upper and lower triangular)

400

The 4-th column vector from the matrix:

[[1,2,4,5,6,7]]

What is:

\vec{b_4} = [5]

?

400

The trace of:

[[a,b,c],[d,e,f],[g,h,i],[j,k,l]]

What is undefined?


(trace is only defined for square matrices)

400

The matrix function's domain:

A(t) = [[t,t^{1/2}],[\sin(t),cos(t)]]

What is all positive reals (including 0)?

400

3A - 2B where:

A = [[1,2],[-1,-2]], B = [[1,2],[3,4], [5,6]]

What is undefined?

(The addition of a 2x2 and 3x2 matrix is undefined)

400
(T/F) If the trace of a square matrix is non-zero, then it is impossible for it to be skew-symmetric

What is true?

500

(True/False) Two matrices equal if they are both mxn in size.

What is False?


(We also require their entries to be the same)


500

(True/False) The trace of an mxn matrix A is always defined, and can be calculated as:

\tr(A) = a_11 + a_22 + ... + a_{ii}

What is False?


(The matrix MUST be a square matrix for this to be correct)

500

(True/False) The square (nxn) matrix that is both upper and lower triangular, and has:

tr(M) = 0

Is the nxn zero matrix

What is False?


(The diagonal could alternate (ex: 1 - 1 + 1 - 1 + ...) and thus have non-zeroes on its diagonal)

500

(True/False) The scalar multiplication of an mxn matrix is always defined.

What is true?

(Only addition/subtraction and later matrix mult. have dimension requirements)

500

(T/F) Suppose that A is an nxn matrix who is both upper and lower triangular. A then is already symmetric, and is skew-symmetric iff tr(A) = 0.

What is false?

(A would be already symmetric, but we again could have a trace such that diag(1,-1,1,-1,....,1) on the diagonal of A).