« previous | Tuesday, September 4, 2012 | next »
Homogeneous System
A system of equations is said to be homogeneous if all constants on the right-hand side of the equations are 0.
Homogeneous systems are always consistent usually with the trivial solution
Theorem. An homogeneous system of linear equations has a nontrivial solution iff .
Proof. With fewer equations than unknowns, there will be at least free variables. Any free variable has an infinite number of possible values, therefore the system has infinitely many solutions.
Q.E.D.
Matrix Notation
Matrices use CAPITAL LETTERS (, , etc.)
Entries use lowercase letters (, , etc.)
With rows and columns, a matrix is said to be of size
A single element may be referenced with subscript row , column :
A row may be extracted with the following notation:
A column may be extracted with the following notation:
Matrix constructor form:
Vectors
2 forms:
- Row vector ():
- Column vector ():
Vectors of either type constitute -dimensional vector space (represented by ) in Euclidean space
If are vectors in and are scalars, then their sum is of the form and is said to be a linear combination of the vectors
Theorem 1.3.1. A system of equations is consistent iff is a linear combination of column vectors of the coefficient matrix .
Operations
Addition
Two matrices may be added only if they have the same size:
Just add the corresponding cells of each matrix
Example
Multiplication
Matrix may multiply into matrix only if has size and has size . The resulting matrix will have size
Take row , multiply each of its cells by the corresponding cells of column . The resulting matrix cell will be the sum of the components' products:
where and
It's just a dot product!
Warning:
Application
Consider the following equation:
Write the coefficient matrix:
... and vector of unknowns:
Multiplying the coefficients by the unknowns yields the same equation:
Example
<math>\begin{bmatrix}2 & -1 & 1 \\ -1 & 0 & 1\end{bmatrix} \, \begin{bmatrix} 1 & -1 \\ 0 & 2 \\ 1 & -1 \end{bmatrix} = \begin{bmatrix} 2 \cdot 1 + (-1) \cdot 0 + 1 \cdot 1 & 2 \cdot (-1) + (-1) \cdot 2 + 1 \cdot (-1) \\ (-1) \cdot 1 + 0 \cdot 0 + 1 \cdot 1 & (-1) \cdot (-1) + 0 \cdot 2 + 1 \cdot (-1) \end{bmatrix} = \begin{bmatrix} 3 & -5 \\ 0 & 0 \end{bmatrix}