1.3 Matrix Operations Flashcards

1
Q

What is a matrix?

A

A matrix is a rectangular array of numbers. The numbers in the array are called the entries in the matrix.

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

How do we describe the size of a matrix?

A

Always rows first, then columns.

rows x columns.

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

What is a matrix with only one row called?

A

A row vector (or row matrix).

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

What is a matrix with only one column called?

A

A column vector (or column matrix).

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

A matrix with n rows and n columns we call…

A

A square matrix of order n.

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

In a square matrix, A, the entries a11, a22, … , ann are collectively known as…

A

The main diagonal of A.

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

What is the definition of two matrices being equal?

A

Two matrices are equal if they are of the same size and their corresponding elements are equal.
(A)ij = (B)ij for all values of i and j.

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

How do we define matrix addition?

A

The sum A + B is the matrix obtained by adding the entries of B to the corresponding entries of A.
So, if A and B are the same size, and A = [aij] and B = [bij], then…
(A + B)ij = (A)ij + (B)ij = aij + bij
for all values of i and j

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

How do we define matrix subtraction?

A

The difference A - B is the matrix obtained by subtracting the entries of B from the corresponding entries of A.
So, if A and B are the same size, and A = [aij] and B = [bij], then…
(A - B)ij = (A)ij - (B)ij = aij - bij
for all values of i and j

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

How do we define scalar multiplication?

A

If A is any matrix and c is any scalar, then the product cA is the matrix obtained by multiplying each entry of A by c. The resulting matrix said to be a scalar multiple of A.
So, if A = [aij], then (cA)ij = c(A)ij = caij

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

It is common practice to denote the scalar multiple (-1)B by…

A

-B

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

What is the result of adding (or subtracting) two matrices of different sizes?

A

This operation is undefined.

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

What is the size of the product of A and B, where A is m x r and B is r x n?

A

Size of AB is m x n.

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

What is the requirement on the operands for matrix multiplication to be defined?

A

For AB to be defined, the number of columns on A must equal the number of rows on B.

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

What is the size of the product of A and B?

A

AB, if defined, will have the number of rows of A x the number of columns of B.

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

What is an augmented matrix?

A

It’s an abbreviation of a system of linear equations.

17
Q

The entry that occurs in row i and column j of a matrix A is usually denoted by…

A

aij

18
Q

How do we define matrix multiplication?

A

Given matrices A (size m x r) and B (size r x n), we find the entry ij of AB by taking the i-th row of A and the j-th column of B, multiply the corresponding entries of the row and column together, then sum the resulting products.

19
Q

How do we compactly denote the generalised contents of a matrix A?

A

[aij]

So, we can say A = [aij] and (A)ij = aij

20
Q

How do we define the transpose of a matrix?

A

The transpose results by interchanging the rows and columns. Formally:
(At)ji = (A)ij

21
Q

What do we observe about the transpose of a square matrix?

A

It can be obtained by ‘reflecting’ the entries about the main diagonal.

22
Q

How do we define the trace of a matrix?

A

Denoted by tr(A), is the sum of the entries along the main diagonal. Undefined if the matrix is not square.
Formally:
if A = [aij]nxn
tr(A) = a11 + a22 + a33 + … + ann

23
Q

What is tr(A)?

A

The trace of A - the sum of the entries along the main diagonal.

24
Q

What do we call the sum of the entries along the main diagonal of a square matrix?

A

The trace.