Week 2 Flashcards

1
Q

What is the general solution?

A

The solution to a set of linear equations where free variables are put in terms of any real number and the number of solutions is infinite.

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

What does it mean when an SLE is inconsistent?

A

There are no possible solutions so the solution set of the SLE equals null. Also the matrix will likely contain a nonense equation like 0x = 1.

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

What are the two possible cases when an SLE is consistent? When do they occur?

A

An infinite number of solutions.
A unique solution.
An infinite number of solutions occurs when there is at least one free variable remaining in the RREF of the augmented matrix.
A unique solution occurs when every variable’s column contains a leading one in RREF.

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

Define vector space.

A

R^2 := {(x, y) : x, y elememts of R}

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

How is a column vector in R^2 written?

A

(x
y)

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

What is another name for R^n? Define R^n.

A

N-dimensional euclidean space.
R^n := {(X1, X2, …, Xn): Xi element of real}

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

Define the addition of two vectors. Define scalar multiplication.

A

Vector + vector = vector
scalar * vector = vector

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

Define the modulus of a vector.

A

The modulus of the vector (x y) in R^2 is given by ¦(x y)¦ := sqrt(x^2 + y^2)

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

Define the modulus/length of a vector x element of R^n

A

¦x¦ = sqrt(X1^2 + X2^2 + … + Xn^2)

where x = (X1 X2 … Xn)

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

Define the dot product or scalar product of two vectors.

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
9
Q

Define a matrix of m x n.

A

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

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

Define matrices with the same size and dimension.

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 * n matrices for some positive integers m and n.

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

Define the method of position in a matrix.

A

If A is an m * n matrix, the entry appearing in the ith row and jth column of A called the (i, j) position is denoted Aij.

A = Aij where i = 1 … m and j = 1 … n

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

Define the sum of two matrices: A + B.

A

A and B are matrices of the same size (m * n ). We define the sum of A + B to be the m * n matrix whose entries are given by

(A + B)ij = (A)ij + (B)ij for i = 1 … m and j=1 … n

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

Define the scalar multiplication of c and matrix Aij.

A

Let A be a m * n matrix and let c be a real number. Then cA is the m * n matrix with entries defined by

(cA)ij = c(A)ij

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

What are the five laws of matrix arithmetic?

A

A + B = B + A (+ commutative)
(A + B) + C = A + (B + C) (+ associative)
AB not equal to BA (* not commutative)
(AB) * C = A * (B * C) ( associative)
Distributive laws: * over +: (A + B)C = AC + BC

15
Q

Define Av the product of the matrix A with the vector v.

A

Let A=(aij) a m * n matrix and let v = (vj) be a vector with n entries (an n * 1 matrix). Then the product Av is defined to be the m * 1 matrix.

(a11 * v1 + a12 * v2 … a1n * vn)
(a21 * v1 + a22 * v2 … a2n * vn)
. . . . . . . . . . . . . . . . . . . . . . . .
(am1 * v1 + am2 * v2 + … + amn * vn)