Maths Experte Graphes & Matrices matricesmultiplicationpuissancesdéterminantinverse

Matrices

Matrices carrées, opérations, multiplication, puissances et applications en Terminale Experte.

Définition

Une matrice AA de taille m×nm \times n est un tableau de mnmn réels :

A=(aij)1im,1jnA = (a_{ij})_{1 \leq i \leq m,\, 1 \leq j \leq n}

Matrices particulières :

  • Carrée : m=nm = n
  • Identité InI_n : diagonale de 1, reste nul
  • Nulle 00 : tous les coefficients sont 0

Opérations

Addition (même taille) : (A+B)ij=aij+bij(A+B)_{ij} = a_{ij} + b_{ij}

Multiplication par un scalaire : (λA)ij=λaij(\lambda A)_{ij} = \lambda a_{ij}

Produit ABAB (si AA est m×pm \times p et BB est p×np \times n) :

(AB)ij=k=1paikbkj(AB)_{ij} = \sum_{k=1}^{p} a_{ik} b_{kj}

Le produit matriciel est non commutatif : en général ABBAAB \neq BA.


Propriétés du produit

A(BC)=(AB)CA(B+C)=AB+ACA(BC) = (AB)C \qquad A(B+C) = AB + AC

AIn=ImA=AA0=0AI_n = I_m A = A \qquad A \cdot 0 = 0


Puissances d’une matrice

A0=IAn+1=AnAA^0 = I \qquad A^{n+1} = A^n \cdot A

Exemples :

(1101)n=(1n01)\begin{pmatrix}1&1\\0&1\end{pmatrix}^n = \begin{pmatrix}1&n\\0&1\end{pmatrix} (à vérifier par récurrence)


Matrice inverse

AA est inversible si B\exists B tel que AB=BA=IAB = BA = I.

Pour une matrice 2×22\times 2 : A=(abcd)A = \begin{pmatrix}a&b\\c&d\end{pmatrix}

det(A)=adbcA1=1detA(dbca)(si detA0)\det(A) = ad - bc \qquad A^{-1} = \frac{1}{\det A}\begin{pmatrix}d&-b\\-c&a\end{pmatrix} \quad (\text{si } \det A \neq 0)


Application aux systèmes linéaires

Le système {ax+by=ecx+dy=f\begin{cases} ax+by=e \\ cx+dy=f \end{cases} s’écrit Ax=bA\vec{x} = \vec{b}.

Si AA est inversible : x=A1b\vec{x} = A^{-1}\vec{b}.

Exemple : (2113)(xy)=(510)\begin{pmatrix}2&1\\1&3\end{pmatrix}\begin{pmatrix}x\\y\end{pmatrix}=\begin{pmatrix}5\\10\end{pmatrix}

det=5\det = 5, A1=15(3112)A^{-1} = \frac{1}{5}\begin{pmatrix}3&-1\\-1&2\end{pmatrix}, x=15(515)=(13)\vec{x} = \frac{1}{5}\begin{pmatrix}5\\15\end{pmatrix} = \begin{pmatrix}1\\3\end{pmatrix}