Matrices Flashcards

(24 cards)

1
Q

what is a matrix

A

a rectangular array of numbers/ symbols/ functions… arranged into rows + columns
mxn matrix means m rows n collumns

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

entry in M in row i and column j

A

Mij

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

transpose

A

if M is an mxn matrix
M^t is the matrix with entires
(M^t)ij = Mji
becomes an nxm matrix
is a reflection of M in the diagonal starting top left
(A^t)^t = A

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

symmetric matrix

A

M^t = M

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

skew symmetric matrix

A

M^t = -M
if skew symmetric
Aii = -Aii = 0
any matrix is the sum of a symmetric and skew symmetric matrix

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

zero matrix

A

all entries are 0

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

identity matrix

A

In is the square nxn matrix with entries
Iij = δij =
0 i=/= j or 1 i=j

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

Mmxn(R)

A

the set of all mxn matrices with real entries

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

matrix addition

A

(A+B)ij = Aij + Bij

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

scalar multiplication

A

(λA) ij = λ(Aij)
(-A) = (-1)A

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

properties of addition

A

1) A + 0 = A = 0 + A (additive unit)
2) A + B = B + A (commutativity)
3) A + (-A) = 0 (additive inverse)
4) A + (B+C) = (A+B) + C (associativity)
prove by writing out entry by entry

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

properties of scalar multiplication

A

1) 0A = 0
2) 1A = A
3) (λμ) A = λ(μA) (associativity)
4a) (λ + μ)A = λA + μA
b) λ(A + B) = λA + λB (distributivity)
prove by writing out entry by entry

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

matrix multiplication

A

Mmxn(R) x Mnxp(R) -> Mmxp(R)
(AB)ij = ai1b1j + ai2b2j+…+ ainbnj
= Σaik bkj from k=1 to n

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

properties of matrix multiplication

A

1) 0X = 0
2) IX = X
3) λ(XY) = (λX)Y = X(λY)
4) (XY)Z = X(YZ) (associativity)
5a) (X + X’)Y = XY + X’Y
X(Y + Y’) = XY + XY’
b) λ(X + X’) = λX + λX’
(λ + λ’)X = λX + λ’X
(distributivity)

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

proof of 0X = 0

A

0ij = 0
0Xij = 0 for all ij

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

proof of IX = X

A

(IX)ij = Σδik akj =aij

17
Q

proof of associativity

A

X(YZ) = (XY)Z
X mxn Y nxp Z nxq
(X(YZ))ij = Σ xik(YZkj)
= Σ xik( Σykr zrj)
= Σxik ykr zrj
for k 1…n and r 1..p
((XY)Z)ij = Σ (XY)ir zrj
= Σ (Σxik ykr) xrj
= Σ xik ykr zrj
for k 1…n and r 1..p
= (X(YZ))ij

18
Q

invertible

A

A is invertible or non-singular if there is an nxn matrix B with
AB = I = BA
B is the inverse of A = A^-1

19
Q

no inverse

A

non invertible
singular
no B exists where AB = I

20
Q

properties of inverse/ transpose

A

1) a matrix can have at most 1 inverse
2) if X and Y are invertible then XY is invertible and (XY)^-1 = Y^-1X^-1
3) (MN)^t = N^t M^t
and (λM)^t = λM^t
4) if A is invertible then A^t is invertible
(A^t)^-1 = (A^-1)^t
5) if A and B are square matrices and AB = I then BA = I

21
Q

proof that a matrix can have at most 1 inverse

A

assume 2 inverses B,B’
AB = BA = I
AB’ = B’A = I
(BA)B’ = B(AB’)
IB’ = BI
B’ = B

22
Q

prove
(A^t)^-1 = (A^-1)^t

A

(A^t)(A^-1)^t = (A^-1A)^t = I^t = I
so (A^-1)^t is inverse to A^t
so (A^-1)^t = (A^t)^-1

23
Q

transpose distributivity
(X +Y)^t

24
Q

solving equations using matrix

A

can reqrite as a matrix times (x,y,z) and use inverse to find x,y,z