Linear algebra

5.0(1)
studied byStudied by 24 people
GameKnowt Play
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/42

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

43 Terms

1
New cards

What is a Consistent system

a system with at least one solution

2
New cards

What is a inconsistent system

system with no solution

3
New cards

What does a unique solution look like graphically?

lines intersect

4
New cards

What does a infinite solution look like graphically?

lines are stacked or the same

5
New cards

What does no solution look like graphically?

lines are parallel

6
New cards

What is row echelon form?

1. In triangular form
2. If there are rows whose entries are all 0, they are below the rows having nonzero entries

7
New cards

What is Reduced Row echelon form?

1. In row echelon form
2. The first nonzero entry in each row is the only nonzero entry in its column

8
New cards

Guass - Jordan Elimination

Using row elementary operations to solve the system to reduced row echelon form

9
New cards

Scalar

the entries of a matrix, or real numbers.

10
New cards

Transpose

switch rows with columns and columns with rows

11
New cards

Symmetric

if transpose is the same as original matrix
A^T = A

12
New cards

Skew symmetric

A^T = -A

13
New cards

Linear system

Ax=b where A is an m x n matrix, x is an unknown vector in R^n (R is all real numbers), and b is in R^m. We consider first the case of one equation in several unknowns.

14
New cards

Consistency theorem

A linear system Ax=b is consistent if and only if b can be written as a linear combination of the column vectors of A.

15
New cards

How do you find the inverse of a matrix?

A^-1 = (adj A) / (det A)
- where A is a square matrix
- det(A) does not = 0

16
New cards

determinant of 2x2 matrix

det(A) = ad - bc

17
New cards

determinant of 3x3 matrix

a(ei - fh) - b(di - fg) + c(dh - eg)

18
New cards

adjoint matrix - adj(A)

the transpose of the cofactor matrix

19
New cards

Singular matrix

A singular matrix is a square matrix with no inverse. It's determinant is zero.

20
New cards

Nonsingular matrix

a matrix that is invertible and determinant is not 0

21
New cards

Transpose Property: (A^T)T = ?

A

22
New cards

Transpose Property: (A+B)T = ?

AT + BT

23
New cards

Transpose Property: (cA)T = ?

cAT

24
New cards

Transpose Property: (AB)T = ?

BT * AT

25
New cards

Transpose Property: det(AT)

det(A)

26
New cards

Transpose Property: (AT)-1 = ?

(A-1)T

27
New cards

Inverse property: (A-1)-1 = ?

A

28
New cards

Inverse Property: (AB)-1 = ?

B-1A-1

29
New cards

Inverse Property: (ABC)-1 = ?

C-1B-1A-1

30
New cards

Inverse Property: (kA)-1 = ?

(1/k)A-1

31
New cards

When does AB = In ?

when A and B are inverses of each other

32
New cards

Determinant Properties: If In is the identity of order n x n, then det(I) = ?

1

33
New cards

If the matrix MT is the transpose of matrix M< then det(MT) = ?

det(M)

34
New cards

if Matrix M-1 is the inverse of matrix M, then det(M-1) = det(M)-1 = ?

1/det(M)

35
New cards

if two square matrices M and N have the same size, then det(MN) = ?

det(M)det(N)

36
New cards

If matrix M has a size a x a and C is a constant, then det(CM) =?

Cadet(M)

37
New cards

How do you solve inverse of 2×2 Matrix A?

adj A/ det|A| where adjA =
|d -b|
|-c a|

38
New cards

How do you solve inverse of 3×3 Matrix A?

Adjoin matrix A with a Identity matrix on the right and use elementary row operations until the A becomes I.

39
New cards

How do you find all 3×3 matrices X given A and B in AX = B?

  1. AX=B

  2. A-1AX = A-1B

  3. IX = A-1B

  4. X = A-1B

40
New cards

Nilpotent matrix

Matrix multiplied to itself is a null matrix or 0

41
New cards

Cramer’s Rule

Swap answer column with first column in matrix A to get x, swap answer column with next column in A to get y and so on.
x = det(Ax)/ det(A)
y = det(Ay)/ det(A)

42
New cards

How do you solve LU Factorization?

Identity matrix to the left of the augmented matrix, use row operations until left side is a lower triangle and the identity matrix has become an upper triangle.

43
New cards

How do you solve for all solutions to Ax=b given using LU factorization?

Solve Ly = b by back substitution to get y then solve Ux = y with back substitution to get x values.