Defenitions Flashcards

1
Q

Define leading variable.

A

The variables corresponding to columns containing leading 1’s.

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

Define free variable.

A

A variable whose column in RREF does not contain a leading 1.

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

Define R^2 vector.

A

A vector of length 2.
R^2 := {(x, y) : x , y elements of R}

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

Define R^n vector.

A

A vector of length n.
R^n := {(x1….xn) : xi elements of R}

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

Define the length or the modulus of a vector (x y) in R^2.

A

|(x y)| := sqrt(x^2 + y^2)

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

Define the length or the modulus of a vector x elements of R^n.

A

|x| := sqrt(x1 ^2 + … + xn ^2)
where x = (x1 … xn)

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

Define the scalar product or dot product of two vectors x and y.

A

<x, y> := x1y1 + … + xnyn
where x = (x1 .. xn) and y = (y1 … yn)

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

Define a matrix.

A

An m x n real matrix is an array of mn real numbers positioned in m rows and n columns.

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

Define matrices of the same size.

A

Two matrices are said to have the same size or dimension if they have the same number of rows and the same number of columns, that is if they are both m x n matrices for some positive integers m and n.

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

Define the transpose of A.

A

Let A = (a i j), m x n matrix. A^T is the n x m matrix A^T := a j i

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

Define symmetric matrix.

A

A n x n matrix A is called symmetric if A = A^T

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

Define a square matrix.

A

A matrix is called square if its size is n x n for some positive integer n. The set of n x n matrices with real entries is denoted Mn(R).

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

Define the identity matrix.

A

The n x n identity matrix In is the matrix that has on the diagonal the entries 1 and 0 elsewhere.

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

Define the minor of A.

A

For each (i, j) entry of a n x n square matrix A, we define the minor Mij of A to be the determinant of the (n - 1) x (n - 1) submatrix of A found by deleting the ith row and jth column of A.

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

Define the matrix of minors.

A

The matrix of minors of an n x n matrix A is the n x n matrix M whose (i, j) entry is the (i, j) minor of A.

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

Define the matrix of cofactors.

A

The matrix of cofactors of an n x n matrix A is the n x n matrix C whose (i, j) entry is (-1)^i + j(Mij), where Mij is the (i, j) minor of A.

17
Q

Define the adjoint of the matrix A.

A

The adjoint of an n x n matrix A is the n x n matrix adj(A) that is the transpose of the matrix of cofactors of A.

18
Q

Define an elementary matrix.

A

Is a square matrix that can be obtained from the identity matrix I by performing a single elementary row operation.

19
Q

Define a homogenous system.

A

Let A be an m x n matrix and b a vector of length n. The system of linear equations Ax = b is called homogenous if the vector b of constants is the zero vector.

20
Q

Define row equivalence.

A

Let A, B be m x n matrices, we say that A and B are row-equivalent if one can be obtained from the other by a sequence of ERO’s.

21
Q

Define the rank of a matrix A.

A

Let A be an m x n matrix. Let B be the unique RREF matrix that is row-equivalent to A. The rank of A, denoted by rank(A), is number of leading ones of B.