2.1/2.2 Flashcards

1
Q

What does A_32 mean?

A

3rd row 2nd column

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

what are diagonal entries?

A

if [1 2 3; 4 5 6; 7 8 9;] then 1 5 and 9 are the diagonal entry

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

do the matrices have to be the same size to do addition?

A

yes

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

what are the properties of matrix addition?

A

a. A + B = B + A
b. (A+B)+C=A+(B+C)
c. A + 0 =A
d.r(A+B)=rA+rB
e.(r+s)A=rA+sA
f.r(sA)=(rs)A

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

If A is mxn matrix, B is nxp and x is in R^p, denote the columns of B by b_1,…,b_p and the entries in x and x_1,…,x_p. Then,

A

Bx=x_1 b_1+…+x_p b_p

By linearity of multiplication by A…
A(Bx) =A(x_1 b_1)+…+A(x_p b_p)
=x_1 Ab_1+…+x_p Ab_p

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

The vector A(Bx) is a linear combination of the vector Ab_1,…,Ab_1 using the entries in x as weights. This linear combination in matrix notation is:

A

A(Bx)=[Ab_1 ….. Ab_p]x
Transforms x into A(Bx)

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

If A is an m x n matrix and if the B is an n x p matrix w/columns are Ab_1 … Ab_p. That is… (What is the definition of matrix multiplication?)

A

AB = A[b_1 …. b_p] = [Ab_1 …. Ab_p]

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

whats the row column rule?

A

when you multiply matrices, write the sizes next to each other, then if the middle of the sizes are the same number, you cross them out then your size of the multiplied matrix is the two numbers remaining

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

is matrix multiplication communicative?

A

no unless your using the identity matrix

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

what is is A^k intuitively?

A

list of k matrices(A)

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

what is A^T?

A

the rows become the columns and the columns become the rows.

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

thrm abt transposing matrices?

A

a. (A^T)^T = A
b. (A+B)^T = A^T + B^T
c.for any scalar, r, (rA)^T = rA^T
d. (AB)^T = B^T*A^T

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

what’s a singular and non singular matrix?

A

singular matrix- a square matrix that has no inverse
nonsingular matrix-an invertible matrix

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

what is the det A?

A

if A = [a b; c d;]. det A = ad-bc

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

what is the general formula for the inverse of a 2 x 2 matrix?

A

if A = [a b; c d;], then A^-1 is
1/(ad-bc) * [d -b; -c a;]

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

how do we use the inverse of a 2x2 matrix A to solve a linear system?

A

if Ax=b then there is unique sol-n x=A^-1 * b.

17
Q

how to find the inverse of an n x n matrix where n > 2?

A

[A I] = [I A^-1]

Attach the identity matrix (I) to A. find the rref to get [I A^-1]. The identity matrix should be on the left now and what’s on the right is A^-1

18
Q

T or F:
A product of invertible n x n matrices is​ invertible, and the inverse of the product is the product of their inverses in the same order.

A

The statement is false. If A and B are invertible​ matrices, then (AB)^-1 = B^-1 * A^-1.

19
Q

T or F: In order for a matrix B to be the inverse of​ A, both equations AB = I and BA = I must be true.

A

The statement is true. The product of a matrix and its inverse is the identity matrix.

20
Q

can only square matrices have inverses?

A

Yes, only square matrices can have inverses.

21
Q

T or F: If A =​ [ a b; c d;], and ab - cd ≠ 0, then A is invertible.

A

false. it’s if ad-bc ≠ 0 then A is invertible

22
Q

how do you check if a matrix is the inverse of another?

A

check if they equal I

23
Q

what is an elementary matrix?

A

a matrix that was the identity matrix but had one elementary row operation(scale, swap, replace)