Solving Systems of Linear Equations Flashcards

1
Q

What is the central core of linear algebra?

A

To solve systems of linear

equations (the unknowns are only multiplied by numbers).

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

Define a linear system.

A

A linear system is a collection of m equations in n variables.

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

What is the goal of linear algebra?

A

To solve the linear system simultaneously.

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

What is the general solution of a linear system?

A

The set of all solutions.

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

What is an inconsistent linear system?

A

A linear system that has no solution.

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

What is a consistent linear system?

A

A linear system that has at least one solution.

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

What is a homogeneous linear system?

A

A linear system in which all the constants on the

right-hand-side are zeros.

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

What is an inhomogeneous linear system?

A

A linear system in which at least one of the constants on the
right-hand-side is non-zero.

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

What kind of linear systems are always consistent?

A

Homogeneous linear systems.

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

What is a degenerate linear system?

A

A linear system where all the coefficients are zeros.
0x1+0x2+···0xn = b, b∈R.
If b≠0, this equation has no solution and if b=0, every
x = (x1,x2,···,xn)∈R^n
is a solution

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

What are the three elementary row operations?

A
  1. Add a multiple of one equation to another
  2. Exchange equations
  3. Multiply an equation by a non-zero scalar.
    (All three can be reversed)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is an augmented matrix?

A

A matrix composed of a coefficient matrix A and a column of constants b.
[A|b]

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

If there are m equations and n unknowns in a system, what is the size of the coefficient matrix A?

A

mxn (m rows and n columns)

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

When is a matrix said to be in Row Echelon Form

(REF)?

A
  1. All the zero rows are at the bottom.
  2. The first non-zero entry in each row is a 1, which is called a leading 1 or a pivot.
  3. Each leading 1 is to the right of the one in the row above.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

When is a matrix said to be in Reduced Row Echelon Form

(RREF)?

A

If, in addition to being in REF, each leading 1 is the only non-zero entry in its column.

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

What are 4 remarks about REF’s and RREF’s?

A

1 From REF of the augmented matrix of a linear system we will be able to tell if the system is inconsistent or has a unique solution, or has infinitely many solutions.

  1. From the RREF we can read off the solution.
  2. Variables corresponding to columns which do not have a leading 1 are called non-leading variables and these are the parameters in the general solution.
  3. Non-leading variables are responsible for a linear system to have infinitely many solutions.
17
Q

When are two matrices A and B are row equivalent?

A

Two matrices A and B are row equivalent (A∼B or B∼A) if B can be obtained from A by a finite sequence of elementary row operations.

18
Q

How may RREF’s does any matrix have?

A

A unique one.

19
Q

What are the 3 rules for reading off the type of general solution from REF?

A
  1. If the augmented matrix (in REF) contains a row like
    [0, 0, · · · , 0|b] where b≠0, then it is inconsistent and there is no solution,
  2. If every column of REF has a leading 1, then there is a unique solution,
  3. If there is a column in a REF that does not have a leading 1 (which corresponds to a non-leading variable), then there are infinitely many solutions.
20
Q

What is the procedure for writing down the general solution from a consistent RREF?

A
  1. If there is a unique solution (i.e. every column has a leading 1), then the solution is the column of constants.
  2. Otherwise, identify the leading and non-leading variables in the RREF. Then,
  3. 1 Write down the equation for each row and solve for the leading variables in terms of non-leading variables.
  4. 2 Set each non-leading variable to a different parameter and substitute them into the equations for the leading variables.
  5. 3 Write down the general solution, including all variables.
21
Q

What are the 5 steps of the Gaussian Elimination Algorithm for reducing systems to REF?

A
  1. If M is the zero matrix, stop!
  2. Find the left-most non-zero column, and interchange the top-row with another (if necessary) to bring a non-zero entry to the first row of this column.
  3. Scale the first row, as necessary, to get a leading 1.
  4. Add suitable multiple of the top row to the other rows to create zeros below the leading 1.
  5. This completes the operations with the first row. Keep first
    row and go back to step 1.

When the algorithm stops, the resulting matrix will be in REF.

22
Q

What are the 3 additional steps of the Gaussian Elimination Algorithm for reducing systems to RREF?

A
  1. If the right-most leading 1 is in row 1, stop!
  2. Start from the right-most leading 1 and add suitable multiples of that row to create zeros above that leading 1.
  3. Cover up the row we used and go step (6).

When the algorithm stops, the resulting matrix would be in RREF.

23
Q

What is a matrix?

A

A a rectangular array of numbers or entries.