Bases and Matrix Inverses Flashcards

1
Q

Every consistent system has a unique solution ⇔ …

A

Columns of the coefficient matrix of size m × n are LI in R^m

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

Every system is consistent ⇔ …

A

Columns of the coefficient

matrix span R^m

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

Theorem 1
Suppose A is a n × n square matrix. Then the following
statements are equivalent: (11)

A
  1. rank(A) = n,
  2. rank(A^T) =n,
  3. Every Ax = b has a unique solution,
  4. RREF of A is In,
  5. ker(A) = {0},
  6. Col(A) = R^n,
  7. Row(A) = R^n,
  8. Columns of A are LI,
  9. Rows of A are LI,
  10. Columns of A form a
    basis for R^n,
  11. Rows of A form a basis
    for R^n.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Theorem 2

The following statements are equivalent for m × n matrix A: (6)

A
  1. rank(A) = n,
  2. Row(A) = R^n,
  3. Columns of A: LI in R^m,
  4. ker(A) = {0},
  5. There exists a n × m matrix B such that BA = In,
  6. The n × n matrix A^T A is
    invertible.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Theorem 3

The following statements are equivalent for m × n matrix A: (6)

A
  1. rank(A) = m,
  2. Col(A) = R^m,
  3. Rows of A: LI in R^n,
  4. Ax = b is consistent for
    every b∈R^m.
  5. There exists a n × m matrix B such that AB = Im,
  6. The m × m matrix AA^T is
    invertible.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Definition (Inverse of a matrix)

A

A n × n (square) matrix A is invertible if there is a n × n
matrix B such that
AB = In and BA = In,
where B is called the inverse of A (denoted by A^−1).
Inverses are unique (i.e. a matrix has at most one inverse)!

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

How to find a 2x2 matrix’s inverse.

A
Suppose A =
[a b]
[c d]
and ad-bc≠0, A^-1 = 
[d -b]
[-c a] 1/(ad-bc)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

When is a 2x2 matrix not invertible?

A

When ad-bc=0

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

Fact
Suppose A is an invertible n × n matrix. Then, any linear system
Ax = b: (2)

A
  1. is consistent and,

2. has a unique solution.

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

Algebraic Properties of Inverses
Fact
If k≠0 is a scalar and A, C are n × n invertible matrices, then: (5)

A
1. A^−1
and (A^−1)^−1 = A,
2. A^k
and (A^k)^−1 = (A^−1)^k,
3. A^T and (A^T)^−1 = (A^−1)^T,
4. kA and (kA)^−1 = (k^−1(A^−1),
5. AC and (AC)^−1 = (C^−1)(A^−1), (note the order)

are all invertible matrices. If AC is invertible, then so are A and C.

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

What is the goal when finding matrix inverses?

A

To solve the equation AB=In for the unknown matrix B.

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

What are 2 facts about invertible matrices?

A
  1. A n × n matrix A is invertible ⇔ A is row equivalent to In,
  2. If A is invertible, any sequence of elementary row operations
    that reduces A to In also transforms In to A^−1
    .
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Matrix Inversion Algorithm (4)

A
  1. Form the superaugmented matrix [A|In],
  2. Start row reducing to reduce A to its RREF,
  3. If A is row equivalent to In, then [A|In] is row equivalent to [In|A^−1],
  4. Otherwise, A is not invertible.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is a fact about invertible matrices and rank?

A

Suppose A is a n × n matrix with rank(A) = n. Then, A is invertible and A^−1
can be computed by the matrix inversion algorithm, or by row-reducing [A|In] to [In|A^−1].
If rank(A) < n, then A is not invertible.

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

Big Theorem: Matrix Inverse Theorem
Let A be a n × n matrix. Then, the following statements are
equivalent: (17)

A
  1. rank(A) = n,
  2. Ax = 0 ⇒ x = 0,
  3. Ax = b is consistent for
    every b∈R^n,
  4. Every Ax = b has a unique solution.
  5. RREF of A is In,
  6. ker(A) = {0},
  7. Col(A) = R^n,
  8. Row(A) = R^n,
  9. rank(A^T) = n,
  10. Columns of A are LI,
  11. Rows of A are LI,
  12. Columns of A span R^n,
  13. Rows of A span R^n,
  14. Columns of A form a
    basis for R^n,
  15. Rows of A form a basis
    for R^n,
  16. A is invertible,
  17. A^T is invertible.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly