A matrix is an array of elements organised in rows and columns
The size of on array can be described by row
The identity matrix is the matrix
To add two matrices simply add the corresponding elements
To multiply a matrix by a scalar simply multiply every individual element by the scalar
Matrices
To compute a matrix multiplication, take the dot product of each row of the first matrix with each column of the second matrix.
Also worded as: For
A minor of a element
The determinant is a scalar value associated with that matrix and is the volume enclosed by the [[Vectors]] that make up the matrix. It is denoted as
The determinant of a
For a
The transpose of a matrix is found by interchanging the rows and the columns. For example, if $A = \begin{pmatrix} 1 & 2 \ 4 & 3 \end{pmatrix}$, $A^{T} = \begin{pmatrix} 1 & 4 \ 2 & 3 \end{pmatrix}$.
The inverse of any non-singular matrix
$A = \begin{pmatrix} a & b \ c & d \end{pmatrix}$, then $A^{-1} = \frac{1}{|A|} \begin{pmatrix} d & -b \ -c & a \end{pmatrix}$
For a given
- Form the matrix of the minors. This is where each of the nine elements of the matrix is replaced by its minor
- Change the signs of some elements with alternating signs as shown $$\begin{pmatrix} + & - & + \ - & + & - \ + & - & + \end{pmatrix}$$
If $A\begin{pmatrix} x \ y \ z \end{pmatrix} = v$ then $\begin{pmatrix} x \ y \ z \end{pmatrix} = A^{-1}v$ If A is non-singular then a unique solution for $\begin{pmatrix} x \ y \ z \end{pmatrix}$ can be found for any vector v To solve a given system of equations for x, y, z: $$ \begin{aligned} ax + by + cz& = j \ dx + ey + fz& = k \ gx + hy + iz& = l \ \begin{pmatrix} a & b & c \ d & e & f \ g & h & i \end{pmatrix} \begin{pmatrix} x \ y \ z \end{pmatrix} &= \begin{pmatrix} j \ k \ l \end{pmatrix} \ \end{aligned}$$ $$\begin{pmatrix} x \ y \ z \end{pmatrix} = \begin{pmatrix} a & b & c \ d & e & f \ g & h & i \end{pmatrix}^{-1} \begin{pmatrix} j \ k \ l \end{pmatrix}$$
A system of linear equations is consistent if at least one set of values that satisfy all equations simultaneously. If the matrix corresponding to a system is non-singular then the system has one solution and is consistent.
However if it is singular then either
- The system is consistent and has infinitely many solutions
- It is inconsistent with no solutions ![[Linear-Equation-Consistency-1.png]] ![[Linear-Equation-Consistency-2.png]]
An Eigenvector of Matrix A is a non-zero column [[Vectors|Vector]]
An eigenvector is an invariant vector under the linear transform
$$
\begin{aligned}
&Ax = \lambda x = \lambda Ix \
&Ax - \lambda Ix = (A- \lambda I)x = 0\
\Rightarrow&\det(A-\lambda I) = 0
\end{aligned}
$$
The solutions of
A diagonal matrix is a square matrix such that every element except those which lie on the leading diagonal are
To diagonalize a matrix
- Find eigenvectors of A
- Form matrix
$P$ which consists of these column eigenvectors - Find
$P^{-1}$ - The diagonal matrix
$D$ is given as$P^{-1}AP$
If
- Find normalized eigenvectors of
$A$ - Form matrix
$P$ with these vectors - Find
$P^T$ -
$D = P^TAP$ When diagonalizing$A \rightarrow D$ ,$D$ has the eigen values of A on the leading diagonal *(the eigenvalue in column$n$ corresponds to the eigenvector in column$n$ in$P$ )
For any
All matrices
#z_Legacy/Maths/A-Levels/Further-Core/Matrices, #Maths/Topics/Linear-Algebra/Matrices
What the identity matrix?
?
The identity matrix is a square matrix where all elements are 0 except for the diagonal from top left down, which contains 1s. It is denoted as
What are the conditions for matrix multiplication and how do you compute
How do you calculate the determinant of a 2×2 matrix?
?
For a 2×2 matrix $\begin{pmatrix} a & b \ c & d \end{pmatrix}$, the determinant is
What are the properties of an inverse matrix?
?
The inverse of any non-singular matrix
How do you find the inverse of a 2×2 matrix? ? $A = \begin{pmatrix} a & b \ c & d \end{pmatrix}$, then $A^{-1} = \frac{1}{|A|} \begin{pmatrix} d & -b \ -c & a \end{pmatrix}$
How can you solve a system of linear equations using matrices? ? If $A\begin{pmatrix} x \ y \ z \end{pmatrix} = v$, then $\begin{pmatrix} x \ y \ z \end{pmatrix} = A^{-1}v$. Multiply both sides by the inverse of A to find the solution.
What does it mean for a system of linear equations to be consistent? ? A system of linear equations is consistent if there exists at least one set of values that satisfy all equations simultaneously.
How do you compute the determinant of a 3x3 matrix?
?
For a
How do you compute the inverse of a 3x3 matrix?
?
For a given
- Form the matrix of the minors. This is where each of the nine elements of the matrix is replaced by its minor
- Change the signs of some elements with alternating signs as shown $$\begin{pmatrix} + & - & + \ - & + & - \ + & - & + \end{pmatrix}$$
What are the different ways that a system of linear equations can be consistent/inconsistent? ? A system of linear equations is consistent if at least one set of values that satisfy all equations simultaneously. If the matrix corresponding to a system is non-singular then the system has one solution and is consistent. However if it is singular then either
- The system is consistent and has infinitely many solutions
- It is inconsistent with no solutions ![[Linear-Equation-Consistency-1.png|400]] ![[Linear-Equation-Consistency-2.png|400]]
#Maths/Topics/Linear-Algebra/Matrices, #z_Legacy/Maths/A-Levels/Further-Pure/Matrix-Algebra
How do you diagonalize a matrix
- Find Eigen vectors of
$A$ - Form matrix P consisting of these Eigen vectors
- Find
$P^{-1}$ - Calculate the diagonal matrix D as
$D = P^{-1}AP$ But for an easier calculation you can simply for a diagonal matrix where every element is an Eigen value of$A$ (The eigen value of a specific column should correspond to the eigen vector in that specific column of$P$ )
How can you diagonalize a symmetric matrix
- Find normalized eigen vectors of
$A$ - Form matrix
$P$ with these vectors - Find
$P^T$ - Calculate
$D = P^T AP$ This process is called orthogonal diagonalization.
How can you calculate higher powers of any matrix
- Diagonalize
$A$ as$A = PDP^{-1}$ - Then
$A^k = (PDP^{-1})^k = PD^kP^{-1}$
What does the Cayley-Hamilton Theorem state?
?
The Cayley-Hamilton Theorem states that any matrix
What is an Eigenvector and how do you compute them ?
?
An Eigen vector of Matrix