Linear Algebra refresher
By Afshine Amidi and Shervine Amidi
Matrix notations
Vector We note $x\in\mathbb{R}^n$ a vector with $n$ entries, where $x_i\in\mathbb{R}$ is the $i^{th}$ entry:
Matrix We note $A\in\mathbb{R}^{m\times n}$ a matrix with $n$ rows and $m$, where $a_{i,j}\in\mathbb{R}$ is the entry located in the $i^{th}$ row and $j^{th}$ column:
Remark: the vector $x$ defined above can be viewed as a $n\times1$ matrix and is more particularly called a column-vector.
Matrix-vector multiplication The product of matrix $A\in\mathbb{R}^{m\times n}$ and vector $x\in\mathbb{R}^{n}$ is a vector of size $\mathbb{R}^{n}$, such that:
System of equations The system of equations
can be rewritten in matrix form $\boxed{y=Ax}$ with $y\in\mathbb{R}^m, A\in\mathbb{R}^{m\times n}$ and $x\in\mathbb{R}^n$.
Determinant
Definition The determinant of a square matrix $A\in\mathbb{R}^{n\times n}$, noted $|A|$ or $\textrm{det}(A)$ is expressed recursively in terms of $A_{\backslash i, \backslash j}$, which is the matrix $A$ without its $i^{th}$ row and $j^{th}$ column, as follows:
Remark: $A$ is invertible if and only if $|A|\neq0$. Also, $|AB|=|A||B|$ and $|A^T|=|A|$.
Characteristic equation The characteristic equation of a linear system of $n$ equations represented by $A$ is given by:
For $n=2$, this equation can be written as:
Eigenvector, eigenvalue The roots $\lambda$ of the characteristic equation are the eigenvalues of $A$. The solutions $\vec{v}$ of the equation $A\vec{v}=\lambda I$ are called the eigenvectors associated with the eigenvalue $\lambda$.
Computing the determinant in particular cases
For a $2\times2$ matrix The determinant of a given matrix $A\in\mathbb{R}^{2\times2}=\left(\begin{array}{cc}a&b\\c&d\end{array}\right)$ can be computed as follows:
For a $3\times3$ matrix The determinant of a given matrix $A\in\mathbb{R}^{3\times3}=\left(\begin{array}{ccc}a&b&c\\d&e&f\\g&h&i\end{array}\right)$ can be computed as follows:
Partial fractions
Concept A fraction $\frac{P(x)}{Q(x)}$ with $P$ and $Q$ polynomial functions of $x$ and $\textrm{deg}(P)<\textrm{deg}(Q)$ can be decomposed into partial fractions by distinguishing the types of roots that are in the factorized form of $Q(x)$, as detailed in the table below:
Factor of $Q(x)$ | Type of root | Associated partial fraction |
$(x-a)^n$ | Real root of multiplicity $n\geqslant1$ | $\displaystyle\frac{A_1}{x-a}+...+\frac{A_n}{(x-a)^n}$ |
$(ax^2+bx+c)^n$ | Complex roots of multiplicity $n\geqslant1$ | $\displaystyle\frac{A_1x+B_1}{ax^2+bx+c}+...+\frac{A_nx+B_n}{(ax^2+bx+c)^n}$ |