Week 2 Flashcards
What is the general solution?
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.
What does it mean when an SLE is inconsistent?
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.
What are the two possible cases when an SLE is consistent? When do they occur?
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.
Define vector space.
R^2 := {(x, y) : x, y elememts of R}
How is a column vector in R^2 written?
(x
y)
What is another name for R^n? Define R^n.
N-dimensional euclidean space.
R^n := {(X1, X2, …, Xn): Xi element of real}
Define the addition of two vectors. Define scalar multiplication.
Vector + vector = vector
scalar * vector = vector
Define the modulus of a vector.
The modulus of the vector (x y) in R^2 is given by ¦(x y)¦ := sqrt(x^2 + y^2)
Define the modulus/length of a vector x element of R^n
¦x¦ = sqrt(X1^2 + X2^2 + … + Xn^2)
where x = (X1 X2 … Xn)
Define the dot product or scalar product of two vectors.
x.y := X1Y1 + … + XnYn
where x = (X1 … Xn) and y = (Y1 … Yn)
Define a matrix of m x n.
An m x n real matrix is an array of m * n real numbers positioned in m rows and n columns.
Define matrices with the same size and dimension.
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.
Define the method of position in a matrix.
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
Define the sum of two matrices: A + B.
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
Define the scalar multiplication of c and matrix Aij.
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