Chapter 3 Flashcards

1
Q

Def: matrix

A

mxn matrix A is a rectangular array with m rows and n columns
Entry in ith row and jth column by aij

Two mxn matrices A and B are equal aij=bij for all 1

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

Def: matrix addition and scalar multiplication

A

Addition:
(A+B)ij=(A)ij+(B)ij

Scalar multiplication:
(cA)ij=c(A)ij

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

Theorem 3.1.1

A

Mmxn(R) is a vector space with 0=0m,n = [mxn matrix with all 0 entries]

***matrix scalar multiplication and addition satisfy same 10 axioms as ch. 1

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

Def: transpose

A

Given AEMmxn(R), the transpose of A is A^TEMmxn(R) given by (A^T)ij=(A)ji

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

Theorem 3.1.2 (properties of transpose) ««««

A

1) (A^T)^T = A
2) (A+B)^T = A^T + B^T
3) (cA)^T = cA^T

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

Def: matrix-vector multiplication

A

Ax = [v1…vn] [x1…xn]T, proceed as normal

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

Theorem 3.1.4 (properties of matrix vector multiplication) ><><><><><><><><><><><><><><>

A

1) A(x+y) = Ax + Ay
2) c(Ax) = (cA)x = A(cx)
3) (Ax)^T=x^TA^T

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

Def: matrix multiplication

A

For an mxn matrix A ans an nxp matrix B

AB = A[b1…bp] = [Ab1…Abp] EMmxp

(AB)ij = Σ(A)ik(B)kj=[dot product of the ith row of A and the jth column of B]
(Roman Catholic)

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

Theorem 3.1.5 (properties of matrix multiplication)

A

1) A(B+C) = AB + AC
2) t(AB) = (tA)B = A(tB)
3) A(BC) = (AB)C
4) (AB)^T = B^TA^T (not commutative!)

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

Def: identity matrix

A

The nxn identity matrix, denoted by I or In, is the matrix such that (I)ii = 1 for 1

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

Theorem 3.1.7

A

AI = A = IA

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

Def: block matrix

A

If A is an mxn matrix, then we can write A as the kxl block matrix
A = [A11 … A1l]
[… … …] (this is one matrix)
[Ak1 … Akl]
Aij is a block such that all blocks in the ith row have the same number of rows and all blocks in the jth column have the same number of columns

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

Def: linear mapping/linear operator

A

Let V, w be vector spaces
A function L:V->w is called a linear mapping if the following holds:
Given any x,yEV and b,cER
L(bx+cy) = bL(x)+cL(y)

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

Def: standard matrix

A

[L] = [Le1 … Len]

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

Theorem 3.2 smth about functions

A

Given AEMmxn(R), the function f: Rn->Rm given by f(x) = Ax is a linear map

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

Theorem 3.2.2

A
Let L: R^n->R^m be a linear mapping
Then L(x) = A(x) for all xER^n, where A=[L]=[Le1 ... L(en)]
Ie columns of A are L(ej)s
17
Q

Theorem 3.2.3

A

Let Rθ: R^2->R^2 be the rotation of a vector in R^2 about 0 by the angle θ
Rθ preserves addition and scalar multiplication and hence is a linear map
This is bc Rθ doesn’t change length of vectors and angles between vectors

18
Q

Def: reflection

A

Let P be a hyperplane (ie (n-1)-plane) in R^n through 0 and with normal vector n
The reflection about P is the function reflp(x) = x-2projn(x) that sends x to its mirror image across P

19
Q

Theorem 3.2 (refl Lin map)

A

reflp: R^n -> R^n, given by reflp(x), is a linear mapping

20
Q

Def: determinant

A

Given [ab] EM2x2 (R), it’s determinant is
[cd]
det[ab] = |ab| = ad-bc ER
[cd] |cd|

Only defined for square matrices