Unit 2 Flashcards

1
Q

Diagonal

A

A square matrix with zeros everywhere but the diagonal

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

Lower Triangular

A

zeros everywhere above the diagonal,
can still have zeros just not all zeroes

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

upper triangular

A

A square matrix with zeros everywhere below the diagonal
can still have zeroes just not all zeros

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

How to calculate determinent for 3 square systems

A

take product of diagonal

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

What is determinent of identity matrix

A

1

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

Determinent of a product det(a *b)

A

det(a)*det(b)

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

solving for x with lower triangle

A

(entry in b -(knowns * x of prev))/coeff of diag

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

solving x for upper triangle

A

same as lower but starting from bottom

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

permutation matrix

A

an identity matrix with swapped rows

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

how do permutation matrixes work

A

the location in permutation row is where original column switches to

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

What are permutations used for

A

converting linear algebra equations into upper and lower triangles

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

in factoring linear equations what is A equal to

A

LU

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

process of solving factored equations

A

find the LU factorization of A
rewrite ax=b using L and U
let Ux=y
substritute Ux for Ly=b
solve for y using foreward sub
solve for x using backward sub Ux=y

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

equations list for factoring

A

m.0 = A
m.1 = m.0 - 1/p.1 *c.1 *r.1
m.2 = m.1 - 1/p.2 *c.2 *r.2
m.n = m.n-1 - 1/p.n *c.n *r.n

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

what is 1/p.i c.i

A

ith column of L

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

what is r.i

A

ith row of U

17
Q
A