Chapter 2 - Matrices I Flashcards

1
Q

Explain what an m x n matrix is.

A

A rectangular array of m rows and n columns of numbers, known as entries.

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

Two matrices are equal if and only if [_____].

A

Two matrices are equal if and only if they are the same size and their corresponding entries are equal.

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

If A and B are matrices of the same size, the sum A + B is calculated by [_____].

A

If A and B are matrices of the same size, the sum A + B is calculated by adding corresponding entries.

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

If A is any matrix and k is any number, the scalar multiple kA is the matrix obtained from A by [_____].

A

If A is any matrix and k is any number, the scalar multiple kA is the matrix obtained from A by multiplying each entry of A by k.

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

If A, B and C are the same size,

A + B = [____] (Commutativity)
A + (B + C) = [____] (Associativity)

A

If A, B and C are the same size,

A + B = B + A (Commutativity)
A + (B + C) = (A + B) + C (Associativity)

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

Define the transpose of a matrix.

A

The transpose of a matrix is the matrix formed by swapping the rows and columns of the original matrix.

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

For any matrix A,

(A^T)^T = [\_\_\_]
(kA)^T = [\_\_\_]
(A+B)^T = [\_\_\_]

If A is an m x n matrix, A^T is an [____] matrix

A

For any matrix A,

(A^T)^T = A
(kA)^T = kA^T
(A+B)^T = A^T + B^T

If A is an m x n matrix, A^T is an n x m matrix.

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

What does it mean for a matrix to be symmetric?

A

A^T = A if and only if the matrix is symmetrical.

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

What is an ordered n-tuple?

A

An ordered sequence (a1, a2, a3, …, an) of real numbers.

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

What is meant by ℝ^n?

A

A set of all the ordered n-tuples from ℝ.

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

Given a system of linear solutions, we can consider the left hand side as [_____].

A

Given a system of linear solutions, we can consider the left hand side as a coefficient matrix A and the column x of variables, multiplied together: Ax.

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

Let A = [a1, a2, a3, …, an] be an n x m matrix, written in terms of its columns a1, a2, …, an.

If x = vector{x1, x2, …., xn} is any n-vector, the product Ax is defined to be the m-vector given by:

[___________________]

A

Let A = [a1, a2, a3, …, an] be an n x m matrix, written in terms of its columns a1, a2, …, an.

If x = vector{x1, x2, …., xn} is any n-vector, the product Ax is defined to be the m-vector given by:

Ax = x1a1 + x2a2 + x3a3 + … + xnan

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

Let A and B be m × n matrices, and let x and y be n-vectors in ℝ^n. Then,

A(x+y) = [\_\_\_\_\_]
A(ax) = [\_\_\_\_\_]
(A+B)x = [\_\_\_\_\_]
A

Let A and B be m × n matrices, and let x and y be n-vectors in ℝ^n. Then,

A(x+y) = Ax + Ay
A(ax) = (aA)x
(A+B)x = Ax + Bx
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Let x1 be any particular solution to the system to Ax = b.
Then, every solution x2 to Ax = b has the form:
[_____] for some solution x0 of the associated homogeneous system Ax = 0.

A

Let x1 be any particular solution to the system to Ax = b.
Then, every solution x2 to Ax = b has the form:
x2 = x1 + x0 for some solution x0 of the associated homogeneous system Ax = 0.

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

Let Ax = b be a system of equations with augmented matrix [A | b]. Let rank A = r.

  1. rank [A | b] is [____]
  2. The system is consistent if and only if rank [A | b] = [____]
  3. The system is inconsistent if and only if rank [A | b] = [____]
A

Let Ax = b be a system of equations with augmented matrix [A | b]. Let rank A = r.

  1. rank [A | b] is r or r + 1
  2. The system is consistent if and only if rank [A | b] = r
  3. The system is inconsistent if and only if rank [A | b] = r + 1
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Define the dot product of the ordered n-tuples, (a1, a2, … , an) and (b1, b2, … , bn).

A

a1b1 + a2b2 + … + anbn

17
Q

Let A be an m × n matrix and let x be an n-vector. Then, each entry of the vector Ax is [_________].

A

Let A be an m × n matrix and let x be an n-vector. Then, each entry of the vector Ax is the dot product of the corresponding row of A with x.

18
Q

Define the identity matrix, I.

A

The n x n matrix with 1s in the main diagonal, and zeros elsewhere.

19
Q

Explain what is meant by the matrix transformation induced by A.

A

The transformation of a vector x, from ℝ^m to ℝ^n.

20
Q

Let A and B be matrices of sizes m x n and n x k respectively. Then, the (i, j)-entry of AB is [_____].

A

Let A and B be matrices of sizes m x n and n x k respectively. Then, the (i, j)-entry of AB is the dot product of row i of A with column j of B.

21
Q

Is matrix multiplication commutative?

A

No.

22
Q

If a is any scalar, and AB and C are suitably sized matrices,

IA = AI = [\_\_\_\_], where I is the identity matrix.
A(BC) = [\_\_\_\_]
A(B+C) = [\_\_\_\_] 
(B+C)A = [\_\_\_\_]
a(AB) = [\_\_\_\_]
(AB)^T = [\_\_\_\_]
A

If a is any scalar, and AB and C are suitably sized matrices,

IA = AI = A, where I is the identity matrix.
A(BC) = (AB)C
A(B+C) = AB + AC
(B+C)A = BA + CA
a(AB) = (aA)B = A(aB)
(AB)^T = B^T x A^T
23
Q

Summarise the process of block partitioning a matrix in order to simplify matrix multiplication.

A

The matrix is divided up into ‘blocks’, that can be substituted for letters representing matrices. The matrix can be multiplied and resubstituted. The blocks must be compatible for multiplication.

24
Q

Explain what a directed graph is.

A

A directed graph is a set of points (vertices) connected by arrows (edges). If the graph has n vertices [v1, v2, …, vn], then the adjacency matrix A = [a(ij)] is the n x n matrix whose (i,j)-entry is 1 if there is an edge from vj to vi and zero otherwise.

25
Q

If A is the adjacency matrix of a directed graph with n vertices, then the (i, j)-entry of A^r is [_____]

A

If A is the adjacency matrix of a directed graph with n vertices, then the (i, j)-entry of A^r is the number of r-paths vj to vi.