Chapter 1 Flashcards

1
Q

augmented matrix

A

the matrix that contains all of the numerical information contained in the system, including constants unassociated with variables

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

coefficient matrix

A

the matrix which contains the coefficients of the variables in a linear system

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

square matrix

A

if the number of rows of a matrix A equals the number of columns

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

diagonal matrix

A

a square matrix organized such that all entries above and below the main diagonal are zero

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

upper triangular matrix

A

square matrix organized sucht that all its entries below the main diagonal are zero

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

lower triangular matrix

A

square matrix organized sucht that all its entries above the main diagonal are zero

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

zero matrix

A

matrix with all entries = 0

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

vector

A

matrix with only one row/column; usually indicates a column vector

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

row/column vector

A

vector that is a single row/column

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

vector space, and how to denote

A

the set of all column vectors with n components, denoted with big R^n

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

standard representation of vectors

A

representing a vector within the Cartesian coordinate plane as an arrow (directed line segment) from the origin to the point (x, y). Default representation.

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

alternatives to standard representation

A

Can translate/shift the vector in the plane and connect some point (a, b) to the point (a + x, b + y).

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

gauss-jordan method

A

We proceed from equation to equation, from top to bottom.

Suppose we get to the ith equation. Let Xj be the leading variable of the
system consisting of the ith and all the subsequent equations.

• If Xj does not appear in the ith equation, swap the ith equation with the first equation below that does contain Xj.

• Suppose the coefficient of Xj in the ith equation is c; thus this equation is of
the form cxj + … = … Divide the ith equation by c.

• Eliminate xj from all the other equations, above and below the ith, by subtracting suitable multiples of the ith equation from the others.

Now proceed to the next equation. If an equation zero = nonzero emerges in this process, then the system fails to have solutions; the system is inconsistent.

When you are through without encountering an inconsistency, solve each
equation for its leading variable. You may choose the nonleading variables freely; the leading variables are then determined by these choices.

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

inconsistent system

A

a system of equations with no solutions

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

consistent system

A

a system of equations that has at least one solution

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

reduced row-echelon form

A

A matrix is in reduced row-echelon form if it satisfies all of the following conditions:

a. If a row has nonzero entries, then the first nonzero entry is a 1, called the leading 1 (or pivot) in this row.
b. If a column contains a leading 1, then all the other entries in that column are 0.
c. If a row contains a leading 1, then each row above it contains a leading 1 further to the left.

Condition c implies that rows of 0’s, if any, appear at the bottom of the matrix.

17
Q

types of elementary row operations

A
  • divide a row by a nonzero scalar
  • subtract a multiple of a row from another row
  • swap two rows
18
Q

rank

A

the number of leading 1s in rref(A), denoted rank(A)

19
Q

matrix

A

a rectangular array of numbers

20
Q

possible number of solutions in a linear system

A

infinitely many solutions
exactly one solution
no solutions

21
Q

number of equations (n) vs number of unknowns (m) and their impact on solutions

A

If a linear system as exactly one solution, then there must be at least as many equations as there are variables/unknowns. (m < m has either no solutions or infinitely many solutions.

22
Q

when systems of n equations in n variables have a unique solution

A

only iff the rank of the coefficient matrix A is n

23
Q

dot product of vectors v and w, and when possible

A

v1w1 + … vnwn. Must have same number of entries.

24
Q

product of matrix M and vector V, and when possible

A

If M is n x m, then vector must be of length m (have as many rows as M has columns). The result will be a vector of height/rowcount n and width/columncount 1.

Two options:

  • entry i of result will be the dot product of M’s row i with V
  • result will be the sum of each product of V’s single-value entries with M’s column vectors.

It’s the linear combination of the columns of M with the components of V as the coefficients, if you get that reference. Which you should.

25
Q

linear combination

A

a vector V in R^n is a linear combination of the vectors v1..vm in R^n if there exists scalars x1…xm such that

V = x1v1 + … xm * vm. In other words, a vector is a linear combination of two other vectors if there are scalars x and y such that the vector equals = x * first vector + y * second vector. Add z for a third candidate combined vector, and so forth.

26
Q

algebraic rules for matrix * vector

A

M(vector x + vector y) = M(vector x) + M(vector y)

M(k * vector x) = k(M * vector x)

27
Q

matrix form of a linear system

A

can write augmented matrix of a linear system [ M | V] as Mv = V. That’s the matrix form of a linear system.