cours/transposée.md
oscar.plaisant@icloud.com a2ee0fa5ca from github to this gitea
2023-10-23 23:09:51 +02:00

24 lines
570 B
Markdown

---
alias: [ "transposée d'une matrice", "matrice transposée", "transposition" ]
---
up::[[matrice]]
title::"$M^{T}_{i,j}=M_{j,i}$"
#maths/algèbre
----
Soit $M$ une [[matrice|matrice]] de dimension $(m, n)$.
La _transposée_ de $M$ est la matrice $M^T$ (ou $^TM$) telle que :
- $M^T$ est de dimension $(n, m)$
- $M^T_{i, j} = M_{j, i}$
# Exemple
Soit $M=\left(\begin{array}{ccc}0&1&2\\5&7&144\\42&73&28\end{array}\right)$
On aura : $M^T=\left(\begin{array}{ccc}0&5&42\\1&7&73\\2&144&28\end{array}\right)$
# Propriétés
- $^T\!(AB) =\, ^T\!B\times \,^T\!A$