Matrices Flashcards

1
Q

Matrix Multiplication

A

Can be different sizes, but the column of A and row of B must be the same. The new size is the outside dimensions. To multiply, split first matrix into rows, split second matrix into columns, and find cross product.

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

Matrix Inverses

A

Only available in square matrices. A * A^-1 = Identity Matrix

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

Solving Matrix Equations

A

Ax = b, x = A^-1 * b

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

Co-Factor Equation

A

C(ij) = (-1)^i+j * M(ij)

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

Finding Minors

A

At a particular element’s row and column, find the determinant of the remaining values.

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

Determinant of any n x n matrix

A

Det = sum of (element * Co-Factor) across a row or down a column. Same across any row or down any column, pick the one with most 0’s.

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

Triangular Matrix

A

Either has zeros below the diagonal, or above the diagonal. In this case, the determinant is the product of values down the diagonal

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

Changes to determinant

A
  1. Exchanging rows multiplies the determinant by -1
  2. Multiplying a row by a constant changes the determinant by that constant
  3. Adding a multiple of a row to another row doesn’t change the determinant
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Cross Product Matrix

A

For two vectors, the cross product is equal to the determinant of remaining values. Equation = det(i) - det(j) + det(k)

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

Cross Product for orthogonal vectors

A

u * (u x v)

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

Area of Triangle from two vectors

A

0.5 * Magnitude of Cross Product

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