« 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 (
): ![{\displaystyle {\vec {v}}=(a_{11},\ldots ,a_{1n})}](https://wikimedia.org/api/rest_v1/media/math/render/svg/6bdee48eed9dba0f2ea220aee0611972daec6687)
- Column vector (
): ![{\displaystyle {\begin{bmatrix}a_{11}\\\vdots \\a_{n1}\end{bmatrix}}}](https://wikimedia.org/api/rest_v1/media/math/render/svg/0a10311e6fae0a16abcc1a66105c8580a754babc)
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:
![{\displaystyle c_{ij}=\sum _{t=1}^{n}a_{it}b_{tj}}](https://wikimedia.org/api/rest_v1/media/math/render/svg/2d0a5e84c9bb0a053e750801392b4ff17f928be9)
where
and
It's just a dot product!
Warning: ![{\displaystyle AB\neq BA}](https://wikimedia.org/api/rest_v1/media/math/render/svg/38f1a5c060698eefdb6af8dd172fd3fe7124189c)
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}