\[
            A^{-1} =
            \left[ \begin{array}{c} a ~~ b \\ c ~~ d \end{array} \right] =
            \frac{1}{ad - bc}
            \left[ \begin{array}{c} d & -b \\ -c & a \end{array} \right]
            \]
        
        
            
                \[ \begin{aligned}
                & \text{Pour un système d'équation :} \\
                & ax_1 + bx_2 + cx_3 = b_1 \\
                & dx_1 + ex_2 + fx_3 = b_2 \\
                & gx_1 + hx_2 + ix_3 = b_3 \\\\
                & \text{on peut établir la multiplication de matrice :} \\
                & \begin{bmatrix}
                a & b & c \\
                d & e & f \\
                g & h & i
                \end{bmatrix}
                \begin{bmatrix}
                x_1 \\
                x_2 \\
                x_3
                \end{bmatrix}
                =
                \begin{bmatrix}
                b_1 \\
                b_2 \\
                b_3
                \end{bmatrix} \\\\
                & \text{Soit :} \\
                & M \vec{x} = \vec{b} \\\\
                & \text{Solution avec la méthode de Cramer :} \\
                & x_k = \frac{\left| A_k \right|}{\left| A \right|}, \quad \text{où} \quad A_k \text{ est la matrice } A
                \text{ dont la colonne } k \text{ a été remplacée par } \vec{b} \\\\
                &
                x_1 = \frac{\left|
                \begin{matrix}
                b_1 & b & c \\
                b_2 & e & f \\
                b_3 & h & i
                \end{matrix} \right|}{\left| A \right|}, \quad
                x_2 = \frac{\left|
                \begin{matrix}
                a & b_1 & c \\
                d & b_2 & f \\
                g & b_3 & i
                \end{matrix} \right|}{\left| A \right|}, \quad
                x_3 = \frac{\left|
                \begin{matrix}
                a & b & b_1 \\
                d & e & b_2 \\
                g & h & b_3
                \end{matrix} \right|}{\left| A \right|}
                \end{aligned}
                \]
            
         
        
        
            Système d'équation de base
            
                \[ \begin{aligned}
                a_1 x_1 && + && a_2 x_2 && + && ... && = && R_1 \\
                b_1 x_1 && + && b_2 x_2 && + && ... && = && R_2 \\
                ... && + && ... && + && ... && = && ... \\
                \end{aligned} \]
            
            Création des matrices utiles
            
                
                    \[
                    A =
                    \begin{bmatrix}
                    a_1 & a_2 & ... \\
                    b_1 & b_2 & ... \\
                    ... & ... & ...
                    \end{bmatrix} \]
                
                
                    \[
                    \overrightarrow{ix} =
                    \begin{bmatrix}
                    x_1 \\
                    x_2 \\
                    ...
                    \end{bmatrix} \]
                
                
                    \[
                    \overrightarrow{b} =
                    \begin{bmatrix}
                    R_1 \\
                    R_2 \\
                    ...
                    \end{bmatrix} \]
                
             
            Matrice augmentée
            
                \[ \begin{aligned}
                & \overline{A} = [A ~ | ~ \overrightarrow{b}]
                \end{aligned} \]
            
            
                \[ \begin{bmatrix}
                a_1 & a_2 & ... & | & R_1 \\
                b_1 & b_2 & ... & | & R_2 \\
                ... & ... & ... & | & ... \\
                \end{bmatrix} \]
            
            
                
                    - Méthode :
                        
                    
- Opérations :
                        
                            - \[ L_x \cdot x, ~~x \in \mathbb{R}^* \]
- \[ L_x \cdot x \cdot L_y, ~~x \in \mathbb{R}^* \]
- permuter lignes
 
 
            
            Exemple de matrice échelonnée réduite :
            
                \[ \begin{aligned}
                & \green{1 \text{ directeur}} \quad \orange{0 \text{ obligatoire}} \\
                & \begin{bmatrix}
                \green{1} & \orange{0} & \frac{3}{5} & \orange{0} & | & 10 \\
                \orange{0} & \green{1} & 3 & \orange{0} &| & 5 \\
                \orange{0} & \orange{0} & \orange{0} & \green{1} & | & 3 \\
                \end{bmatrix}
                \end{aligned} \]