Matrix: Difference between revisions
Jump to navigation
Jump to search
MatthewHoza (talk | contribs) No edit summary |
MatthewHoza (talk | contribs) |
||
(4 intermediate revisions by the same user not shown) | |||
Line 31: | Line 31: | ||
<math>\overrightarrow v_n = \begin{bmatrix} v_1 \\ v_2 \\ \vdots \\ v_n \end{bmatrix}</math> | <math>\overrightarrow v_n = \begin{bmatrix} v_1 \\ v_2 \\ \vdots \\ v_n \end{bmatrix}</math> | ||
===Addition & Subtraction=== | |||
Only matrices with the same dimensions can be added and subtracted. If we take two matrices with dimensions <math>m \times n</math>, <math>\mathbb{A}</math> and <math>\mathbb{B}</math>, then we will get a resultant <math>m \times n</math> matrix, <math>\mathbb{C}</math>, with entries | |||
<math>c_{ij} = a_{ij} + b_{ij}\!</math> | |||
Similarly, for subtraction | |||
<math> c_{ij} = a_{ij} - b_{ij}\!</math> | |||
===Determinants=== | |||
The determinant of a 2-by-2 matrix | |||
<math>A = | |||
\begin{bmatrix} | |||
a & b \\ | |||
c & d | |||
\end{bmatrix} | |||
</math> | |||
is | |||
<math>det \mathit{A} = | |||
\begin{vmatrix} | |||
a & b \\ | |||
c & d \\ | |||
\end{vmatrix} | |||
= ad - bc | |||
</math> | |||
==Eigenvalue Analysis== | ==Eigenvalue Analysis== | ||
Let | |||
<math>\mathit{A} = | |||
\begin{bmatrix} | |||
2 & 3 \\ | |||
3 & -6 | |||
\end{bmatrix} | |||
</math> | |||
We must find all scalars <math>\lambda</math> such that the matrix equation | |||
<math>(A - \lambda I)\mathbf{x} = \mathbf{0}</math> | |||
so we subtract <math>A</math> by <math>\lambda I</math> | |||
<math>A - \lambda I = | |||
\begin{bmatrix} | |||
2 & 3 \\ | |||
3 & -6 | |||
\end{bmatrix} | |||
- | |||
\begin{bmatrix} | |||
\lambda & 0 \\ | |||
0 & \lambda | |||
\end{bmatrix} | |||
= | |||
\begin{bmatrix} | |||
2-\lambda & 3 \\ | |||
3 & -6 - \lambda | |||
\end{bmatrix} | |||
</math> | |||
So the eigenvalues of <math>A</math> are the solutions of the equation | |||
<math>det(A - \lambda I) = | |||
\begin{vmatrix} | |||
2-\lambda & 3 \\ | |||
3 & -6-\lambda | |||
\end{vmatrix} | |||
= 0 | |||
</math> | |||
This gives us | |||
<math>(2 - \lambda)(-6 - \lambda) - (3)(3) = \lambda^2 + 4\lambda - 21 = 0\!</math> | |||
Solving this polynomial we find that the eigenvalues of <math>A</math> are | |||
<math>\lambda = 3, -7\!</math> |
Latest revision as of 17:49, 29 April 2009
Basics
Identity Matrix
The identity matrix, , is defined as the matrix that satisfies the condition
For any m-by-n matrix .
For example the identity matrix in R 3
Vectors
A three diemensional vector
has the matrix representation
Or more generally, an n-diemensional vector has the matrix form
Addition & Subtraction
Only matrices with the same dimensions can be added and subtracted. If we take two matrices with dimensions , and , then we will get a resultant matrix, , with entries
Similarly, for subtraction
Determinants
The determinant of a 2-by-2 matrix
is
Eigenvalue Analysis
Let
We must find all scalars such that the matrix equation
so we subtract by
So the eigenvalues of are the solutions of the equation
This gives us
Solving this polynomial we find that the eigenvalues of are