Matrices Flashcards

1
Q

Size of Matrix

A

m rows, n columns
m * n

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

Compatability for Matrix Multiplication + Resulting Size

A

Columns in A = Rows in B

If A is m * n, B is m * r
Then matrix is n * r

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

Echelon Form vs Reduced Echelon Form

A

Echelon Form:
- 0 Rows are at the bottom of the matrix
- A pivot is to the right of the pivot above it

Reduced Form:
- Pivot is equal to 1
- Pivot is the only non-zero entry in the column

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

Matrix Rank

A

Number of non-zero rows in the row echelon form
(also the number of the pivots)

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

Leading Variables

A

Variables corresponding to the columns containing pivots

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

Free Variables

A

Variables that do not correspond to pivots - they can take arbitrary values

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

Calculating Free & Leading Variables

A

n = number of variables
r = leading variables
n-r = number of free variables

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

What if number of variables = leading variables?

A

No free variables - either no solutions or a unique solution

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

3 Possibilities when solving linear systems

A
  1. No Solution - happens when the last non-zero row is [0, 0, 0] equaling a non-zero value - system is inconsistent
  2. Infinite Solutions - when the equations are consistent, and there is at least 1 free variable
  3. One Solution - when the equations are consistent and there are no free variables
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is Transposing

A

Swapping Row x of Matrix A when Column X of Matrix A

A(j,i) = At(i,j)

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

Solving for Det

A

If 2x2 - use formula sheet

If greater - you have to reduce the matrix
So pick a column of cells, and when you select it - remove the column and the row for that cell
- basically reduce it down to a 2x2 matrix- then you can use the
formula sheet

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

Determinant Test

A

A n*n matrix is invertible if and only if det(A) != 0

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

Cramers Rule

A

If a linear system Ax=b has a unique solution

Then x = (A^-1)*b

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

Trig Values - sin cos trig & small medium large

A

Small: sqrt1/2
Medium sqrt2/2
Large: sqrt3/2

Cos: x
Sin: y
Tan: sin/cos

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

Trig Identity

A

Sin^2(theta) + cos^2(theta) =1

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