Chapter 2: Matrix Algebra Flashcards

1
Q

Matrix

A

a rectangular array of numbers called
the entries or elements of the matrix.

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

For a matrix A we write the entry in row i, column j as …

A

a_ij

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

if A is an m × n matrix then A has …

A

m rows and n columns

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

Square matrix

A

if m=n

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

diagonal matrix

A

iff its off-diagonal elements are zero (for i 6= j, aij = 0)

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

The n × n identity matrix In is the diagonal
matrix with all diagonal entries equal to …

A

1

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

Two matrices are equal if and only if

A

they have the same number of rows and the same number of columns and the corresponding entries are equal.

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

If A = (aij) and B = (bij) are m × n matrices, then we define the new m × n matrix A + B componentwise:

A

A + B = (aij) + (bij) = (aij + bij);

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

If A = (aij) is an m × n matrix and c is a scalar then we define the new m × n matrix cA componentwise:

A

cA = c(aij) = (caij).

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

Theorem 2.1.1 Let A, B and C be m × n matrices and c, d ∈ R.
Then
(a) A + B =

A

B + A

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

Theorem 2.1.1 Let A, B and C be m × n matrices and c, d ∈ R.
Then
(b) (A + B) + C =

A

A + (B + C).

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

Theorem 2.1.1 Let A, B and C be m × n matrices and c, d ∈ R.
Then
(c) There is an m × n matrix 0 such that

A

A + 0 = A, for each A

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

Theorem 2.1.1 Let A, B and C be m × n matrices and c, d ∈ R.
Then
(d) For each A there is an m × n matrix, −A such that

A

A + (−A) = 0.

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

Theorem 2.1.1 Let A, B and C be m × n matrices and c, d ∈ R.
Then
(e) c(A + B) =

A

cA + cB

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

Theorem 2.1.1 Let A, B and C be m × n matrices and c, d ∈ R.
Then
(f) (c + d)A =

A

cA + dA

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

Theorem 2.1.1 Let A, B and C be m × n matrices and c, d ∈ R.
Then
(g) c(dA) =

A

(cd)A.

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

Theorem 2.1.1 Let A, B and C be m × n matrices and c, d ∈ R.
Then
(h) 1A =

A

A

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

Transpose of an m × n matrix A. written A^T

A

the n × m matrix whose rows are the columns of A in the same order.

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

If A = [aij] then A^T =

A

[aji].

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

Theorem 2.1.2 Let A and B be matrices of the same size, and let k ∈ R
(a) (A^T)^T =

A

A

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

Theorem 2.1.2 Let A and B be matrices of the same size, and let k ∈ R
(b) (A + B)^T =

A

A^T + B^T

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

Theorem 2.1.2 Let A and B be matrices of the same size, and let k ∈ R
(c) (kA)^T =

A

k(A^T)

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

Symmetric square matrix

A

if A^T = A.

(That is, A is equal to its own transpose)

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

If A and B are square symmetric matrices, then A + B is

A

symmetric

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

If A is a square matrix (not necessarily symmetric), then A + A^T is

A

a symmetric matrix.

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

Ordered n-tuple

A

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

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

Definition. Let R denote the set of all real numbers. The set of all ordered n-tuples from R is denoted by

A

R^n.

R^n = {(x1, x2, · · · , xn) : x1, · · · , xn ∈ R} .

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

If x, y ∈ R^n it is clear that their matrix sum x + y is also in R^n as is the scalar multiple kx for any real number k. We express this observation by saying that

A

R^n is closed under addition and scalar
multiplication.

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

Definition A vector v is a linear combination of vectors v1, · · · , vk if and only if

A

there are scalars c1, c2, · · · , ck such that
v = c1v1 + c2v2 + · · · + ckvk.

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

Theorem 2.2.1
a) Every system of linear equations has the form

A

Ax = b where A is the coefficient matrix, b is the constant matrix, and x is the matrix of variables.

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

Coefficients of the linear combination

A

The scalars c1, c2, · · · , ck in v = c1v1 + c2v2 + · · · + ckvk.

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

Theorem 2.2.1
b) The system Ax = b is consistent 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
32
Q

Theorem 2.2.1
c) If a1, a2 . . . , an are the columns of A and if x = [x1,…xm] (as a column vector), then
x is a solution to the linear system Ax = b if and only if

A

x1, x2, . . . , xn are a solution of the vector equation x1a1 + x2a2 + · · · + xnan = b

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

Definition. A function or mapping or transformation T from R^m to R^n is a

A

rule that assigns to each vector x ∈ R^m a unique vector T(x) ∈ R^n

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

The domain of T in the transformation T from R^m to R^n is

A

R^m

35
Q

The codomain of T in the transformation T from R^m to R^n is

A

R^n

36
Q

To indicate that T is a map with domain R^m and codomain R^n, write

A

T: R^m –> R^n

37
Q

If x is in the domain of T, the image of x is

A

the vector T(x)

38
Q

The range of T in the transformation T from R^m to R^n is

A

the set of all possible images,

i.e. range(T) = {T(x) : x ∈ R^m}.

39
Q

Definition. If A is any m × n matrix, multiplication by A gives

A

a matrix transformation T_A : R^n → R^m defined by T_A(x) = Ax for every x in Rn

40
Q

Relection in x-axis is achived by multiplying by the matrix

A

l1 0 l (Check this with vector [x,y]
L0 -1J T([x,y])=[x,-y]

41
Q

Counterclockwise rotation about the origin through pi/2 radians

A

l0 -1l T([x,y])=[-y,x]
L1 0J

42
Q

x-expansion (compression)

A

la 0l T([x,y])=[ax,y]
L0 1J

For a > 1 we have expansion and for a < 1 we have compression

43
Q

x-shear

A

l1 al T([x,y])=[x+ay,y]
L0 1J

For a > 0 we have a positive x-shear and for a < 0 we have a negative x-shear

44
Q

The zero transformation

A

If A is the m × n zero matrix, T_0 : R^n → R^m is given by T_0(v) = 0R^m for all v ∈ R^n

45
Q

The identity transformation

A

If A is the n × n identity matrix, I_n : R^n → R^n given by I_n(v) = v for all v ∈ Rn

46
Q

Let T : R^k → R^m and S : R^n → R^m be transformations. The composition S ◦ T is the mapping S ◦ T : R^k → R^m defined by
(S ◦ T)(x) =

A

S(T(x))

for all x ∈ R^n.

47
Q

Theorem 2.3.3 Let A, B and C be matrices and k be a scalar. The following identities hold whenever the matrix products are defined:
(f) (AB)^T =

A

B^TA^T

48
Q

Theorem 2.3.3 Let A, B and C be matrices and k be a scalar. The following identities hold whenever the matrix products are defined:
(e) k(AB) =

A

(kA)B = A(kB)

49
Q

Theorem 2.3.3 Let A, B and C be matrices and k be a scalar. The following identities hold whenever the matrix products are defined:
(d) (A + B)C =

A

AC + BC

50
Q

Theorem 2.3.3 Let A, B and C be matrices and k be a scalar. The following identities hold whenever the matrix products are defined:
(c) A(B + C) =

A

AB + AC

51
Q

Theorem 2.3.3 Let A, B and C be matrices and k be a scalar. The following identities hold whenever the matrix products are defined:
(b) A(BC) =

A

(AB)C

52
Q

Theorem 2.3.3 Let A, B and C be matrices and k be a scalar. The following identities hold whenever the matrix products are defined:
(a) I_m A =

A

A = AI_n if A is m × n

53
Q

Inverse of A (n × n matrix)

A

an n × n matrix A’ such that AA’ = I_n, and A’A = I_n.

54
Q

A is invertible

A

if A’ exists

55
Q

A is singular or not invertible

A

If no inverse exists

56
Q

Theorem Uniqueness of the matrix inverse. If an n × n matrix A is invertible then

A

its inverse is unique.

57
Q

Theorem 2.4.2 If A is an invertible n × n matrix then the system of linear equations given by Ax = b has the unique solution given by

A

x = A^−1b.

58
Q

If A = [a b]
[c d]

then A is invertible if ______
in which case A^-1= _______

A
  1. ad-bc =/= 0
  2. 1/(ad-bc)*[d -b]
    [-c a]
59
Q

Gauss–Jordan method for computing the inverse.
If A is an invertible matrix, there exists a sequence of elementary row operations that carry A to the identity matrix I of the same size, written A → I. This same series of row operations carries I to A^−1. The algorithm can be summarised as follows:

A

[A | I] –ERO’s–> [I | A^-1]

60
Q

Theorem 2.4.4
(a) If A is an invertible matrix, then A^−1 is _____ and (A^−1)^−1 = ____

A
  1. invertible
  2. A.
61
Q

Theorem 2.4.4
(b) If A is an invertible matrix and c =/= 0 is a scalar then cA is ____ and (cA)^−1 = ______

A
  1. invertible
  2. 1/c*A^−1
62
Q

Theorem 2.4.4
(c) If A and B are invertible matrices of the same size, then AB is _____ and (AB)^−1 = _____

A
  1. invertible
  2. B^−1A^−1
63
Q

Theorem 2.4.4
(d) If A is an invertible matrix, then A^T
is _____ and (A^T)^−1 = ______

A
  1. invertible
  2. (A^−1)^T
64
Q

Theorem 2.4.4
(e) If A is invertible matrix then A^n is ____ for all integers n ≥ 0 and (A^n)^−1 = ______

A
  1. invertible
  2. (A^−1)^n
65
Q

Definition If A is invertible and n ≥ 0 an integer we define A^−n = ____ = ____

A

(A^−1)^n = (A^n)^−1

66
Q

Theorem 2.4.5 The fundamental theorem of invertible matrices (Version 1) Let A be an n × n matrix. The following statements are equivalent:
(a) A is _______;
(b) Ax = 0 has only the trivial solution x = 0;
(c) The reduced echelon form of A is I_n;
(d) Ax = b has a unique solution for every b in R^n
(e) There exists an n × n matrix C such that AC = I_n.

A

invertible

67
Q

Theorem 2.4.5 The fundamental theorem of invertible matrices (Version 1) Let A be an n × n matrix. The following statements are equivalent:
(a) A is invertible;
(b) Ax = 0 has only the trivial solution _____;
(c) The reduced echelon form of A is I_n;
(d) Ax = b has a unique solution for every b in R^n
(e) There exists an n × n matrix C such that AC = I_n.

A

x = 0

68
Q

Theorem 2.4.5 The fundamental theorem of invertible matrices (Version 1) Let A be an n × n matrix. The following statements are equivalent:
(a) A is invertible;
(b) Ax = 0 has only the trivial solution x = 0;
(c) The reduced echelon form of A is ____;
(d) Ax = b has a unique solution for every b in R^n
(e) There exists an n × n matrix C such that AC = I_n.

A

I_n

69
Q

Theorem 2.4.5 The fundamental theorem of invertible matrices (Version 1) Let A be an n × n matrix. The following statements are equivalent:
(a) A is invertible;
(b) Ax = 0 has only the trivial solution x = 0;
(c) The reduced echelon form of A is I_n;
(d) Ax = b has __ ____ _____ for every b in R^n
(e) There exists an n × n matrix C such that AC = I_n.

A

a unique solution

70
Q

Theorem 2.4.5 The fundamental theorem of invertible matrices (Version 1) Let A be an n × n matrix. The following statements are equivalent:
(a) A is invertible;
(b) Ax = 0 has only the trivial solution x = 0;
(c) The reduced echelon form of A is I_n;
(d) Ax = b has a unique solution for every b in R^n
(e) There exists an n × n matrix C such that AC = ____

A

I_n.

71
Q

A matrix transformation is invertible

A

if there exists a matrix transformation T’: Rn → Rn with T’ ◦ T = I_n and T ◦ T’ = I_n

72
Q

If the matrix transformation T has an inverse, then its matrix A must be

A

invertible

73
Q

The geometric view of the inverse of a transformation provides a way to find the inverse of the matrix A. For example if the matrix A induces a reflection about the x-axis in R2, then A^−1 can be found by …

A

finding the transformation that reverses that reflection

74
Q

Elementary matrix

A

an n × n matrix which can be obtained by performing one elementary row operation on
an identity matrix In. We say that E is of type I, II or III if the operation is of that type.

75
Q

Performing elementary row operations is entirely equivalent to

A

multiplying by elementary matrices

76
Q

Lemma 2.5.1 Let E be the elementary matrix obtained by performing an elementary row operation on Im. If the same elementary row operation is performed on an m × n matrix A, then the result is the matrix ___

A

EA.

77
Q

Lemma 2.5.2 Each elementary matrix is _____, and its inverse is _______.

A
  1. invertible
  2. an elementary matrix of the same type
78
Q

Theorem 2.5.1 Suppose A is an m × n matrix and A → B by
elementary row operations. Then,
a) B =______
b) U can be computed by [A | Im] –ERO’s–> [B | U] using the operations carrying A → B.
c) U = E_kE__k−1. . . E_2E_1 where E_1, E_2, . . . , E_k are the elementary matrices corresponding (in order) to the elementary row operations carrying A to B.

A

UA where U is an m × m invertible matrix .

79
Q

Theorem 2.5.1 Suppose A is an m × n matrix and A → B by
elementary row operations. Then,
a) B = UA where U is an m × m invertible matrix .
b) U can be computed by ______
c) U = E_kE__k−1. . . E_2E_1 where E_1, E_2, . . . , E_k are the elementary matrices corresponding (in order) to the elementary row operations carrying A to B.

A

[A | Im] –ERO’s–> [B | U] using the operations carrying A → B.

80
Q

Theorem 2.5.1 Suppose A is an m × n matrix and A → B by
elementary row operations. Then,
a) B = UA where U is an m × m invertible matrix .
b) U can be computed by [A | Im] –ERO’s–> [B | U] using the operations carrying A → B.
c) U = _____

A

E_kE__k−1. . . E_2E_1 where E_1, E_2, . . . , E_k are the elementary matrices corresponding (in order) to the elementary row operations carrying A to B.

81
Q

Theorem 2.5.2 A square matrix is invertible if and only if

A

it is a product of elementary matrices.

82
Q

Definition A linear transformationfrom Rn
to Rm is a mapping T : Rn → Rm such that for all x, y ∈ Rn and scalars c ∈ R,
a) _____;
b) T(cx) = cT(x).

A

T(x + y) = T(x) + T(y)

83
Q

Definition A linear transformationfrom Rn
to Rm is a mapping T : Rn → Rm such that for all x, y ∈ Rn and scalars c ∈ R,
a) T(x + y) = T(x) + T(y);
b) _____.

A

T(cx) = cT(x)

84
Q

Theorem 2.6.2 Let T : Rn → Rm be a linear transformation. Then T is a ______ induced by the unique m × n matrix A, where the jth column of A is T(ej and A =[ T(e1) T(e2) · · · T(en) ], where {e1, e2, . . . , en} is _____, that is the columns of the identity matrix I_n

A
  1. matrix transformation
  2. the standard basis for Rn
85
Q
A