Chapter 1 – Key Concepts Flashcards
What are the possible solutions for a system of linear equations?
- No solution, or
- exactly 1 solution, or
- infinitely many solutions.
What are the elementary row operations?
- (Replacement) Replace one row by the sum of itself and a multiple of another row.
- (Interchange) Interchange two rows.
- (Scaling) Multiply all entries in a row by a nonzero constant.
What is the relationship between row-equivalent augmented matrices and the solution sets for the two corresponding linear systems?
If the augmented matrices of two linear systems are row equivalent, then the two systems have the same solution set.
What are the two fundamental questions about linear systems that are answered by linear algebra?
- Is the system consistent; that is, does at least one solution exist?
- If a solution exists, is it the only one; that is, is the solution unique?
What are the definitions for row echelon form (REF) and reduced row echelon form (RREF)?
A rectangular matrix is in REF if:
- All nonzero rows are above any rows of all zeros.
- Each leading entry of a row is in a column to the right of the leading entry of the row above it.
- All entries in a column below a leading entry are zeros.
It is in RREF if it’s in REF and:
- The leading entry in each nonzero row is 1.
- Each leading 1 is the only nonzero entry in its column.
What is the relationship between row equivalence and reduced row echelon form?
If A and B are row equivalent, they will have the exact same RREF.
What’s a pivot position? A pivot column?
A pivot position is a location in a matrix A that corresponds to a leading 1 in RREF(A). A pivot column is a column of A which has a pivot position.
What is the algorithm to put a matrix in RREF?
- Begin with the leftmost nonzero column. This is a pivot column. The pivot position is at the top.
- Select a nonzero entry in the pivot column as a pivot. If necessary, interchange rows to move this entry into the pivot position.
- Use row replacement operations to create zeros in all positions below the pivot.
- Cover (or ignore) the row containing the pivot position and cover all rows, if any, above it. Apply steps 1–3 to the submatrix that remains. Repeat the process until there are no more nonzero rows to modify.
- Beginning with the rightmost pivot and working upward and to the left, create zeros above each pivot. If a pivot is not 1, make it 1 by a scaling operation.
What is the existence and uniqueness theorem for linear systems?
A linear system is consistent iff the rightmost column in its augmented matrix is not a pivot: nothing of the form [0 … 0 b]. If a system is consistent, the solution set is either unique if there are no free variables or it is an infinite set of solutions.
How is row reduction used to solve a linear system?
- Write the augmented matrix of the system.
- Use the row reduction algorithm to obtain an equivalent augmented matrix in echelon form. Decide whether the system is consistent. If there is no solution, stop; otherwise, go to the next step.
- Continue row reduction to obtain the reduced echelon form.
- Write the system of equations corresponding to the matrix obtained in step 3.
- Rewrite each nonzero equation from step 4 so that its one basic variable is expressed in terms of any free variables appearing in the equation.
What is the parallelogram rule for addition?
If u and v in ℝ2 are represented as points in the plane, then u + v corresponds to the fourth vertex of the parallelogram whose other vertices are u, 0, and v.
What are the algebraic properties of ℝn?
For all u, v, w in ℝn and all scalars c and d:
(i) u + v = v + u
(ii) (u + v) + w = u + (v + w)
(iii) u + 0 = 0 + u = u
(iv) u + (-u) = (-u) + u = 0
(v) c(u + v) = cu + cv
(vi) (c + d)u = cu + du
(vii) c(du) = (cd)u
What’s the relationship between a vector equation and an augmented matrix?
A vector equation x1a1 + … + xnan = b has the same solution set {x1 … xn} as the augmented matrix [a1 … an b]. In particular, b is a linear combination of a1 … an iff there exists a solution to the linear system corresponding to the augmented matrix [a1 … an b].
What is the span of a given set of vectors?
For v1, …, vp ∈ ℝn, then the set of all linear combinations of v1, …, vp is denoted Span{v1, …, vp} and is called the subset of ℝn spanned (or generated) by v1, …, vp. Span{v1, …, vp} is the collection of all vectors that can be written as c1v1 + … + cpvp for c1, …, cp ∈ ℝ.
What is the definition of the product of a matrix A and a vector x?
If A is an m×n matrix, with columns a1, …, an, and if x is in ℝn, then the product of A and x, denoted by Ax, is the linear combination of the columns of A using the corresponding entries in x as weights; that is, Ax = x1a1 + … xnan.