Tool to calculate a matrix triangularization / trigonalization in order to write a square matrix in a composition of a superior triangular matrix and a unitary matrix.
Matrix Trigonalization - dCode
Tag(s) : Matrix
dCode is free and its tools are a valuable help in games, maths, geocaching, puzzles and problems to solve every day!
A suggestion ? a feedback ? a bug ? an idea ? Write to dCode!
Matrix Trigonalisation (sometimes names triangularization) of a square matrix $ M $ consists of writing the matrix in the form: $$ M = Q.T.Q^{-1} $$
with $ T $ an upper triangular matrix and $ Q $ a unitary matrix (i.e. $ Q^*.Q = I $ identity matrix).
This calculation, also called Schur decomposition, uses the eigenvalues of the matrix as values of the diagonal.
Schur's theorem indicates that there is always at least one decomposition on $ \mathbb{C} $ (so the matrix is trigonalizable/triangularizable).
This trigonalization only applies to numerical or complex square matrices (without variables).
dCode uses Schur decomposition via computer algorithms such as QR decomposition.
Manually, for a matrix matrix $ M $, calculate its eigenvalues $ \Lambda_i $ and deduce an eigenvector $ u_1 $
Calculate its normalized value in an orthonormal base $ {u_1, v_2} $ in order to obtain $ U = [ u_1, v_2 ] $
Then express the matrix in the orthonormal base $ A_{{u_1,v_2}} = U^{-1}.A.U = U^{T}.A.U $
Finally, repeat this operation for each of the eigenvectors in order to obtain the triangular matrix.
For a 2x2 matrix, only one operation is necessary and $ T = A_{{u_1,v_2}} $
Example: Schur triangularisation for the matrix $ M = \begin{bmatrix} 4 & 3 \\ 2 & 1 \end{bmatrix} $ gives $$ Q = \begin{bmatrix} 0.909 & 0.415 \\ -0.415 & 0.909 \end{bmatrix}, T = \begin{bmatrix} 5.37 & −1 \\ 0 & −0.37 \end{bmatrix} $$
Calculate the characteristic polynomial $ P $ of the matrix. It will be trigonalisable if and only if $ P $ is split. That is, it is representable as a product of first degree polynomials.
dCode retains ownership of the "Matrix Trigonalization" source code. Any algorithm for the "Matrix Trigonalization" algorithm, applet or snippet or script (converter, solver, encryption / decryption, encoding / decoding, ciphering / deciphering, breaker, translator), or any "Matrix Trigonalization" functions (calculate, convert, solve, decrypt / encrypt, decipher / cipher, decode / encode, translate) written in any informatic language (Python, Java, PHP, C#, Javascript, Matlab, etc.) or any database download or API access for "Matrix Trigonalization" or any other element are not public (except explicit open source licence like Creative Commons). Same with the download for offline use on PC, mobile, tablet, iPhone or Android app.
Reminder: dCode is an educational and teaching resource, accessible online for free and for everyone.
The content of the page "Matrix Trigonalization" and its results may be freely copied and reused, including for commercial purposes, provided that dCode.fr is cited as the source.
Exporting the results is free and can be done simply by clicking on the export icons ⤓ (.csv or .txt format) or ⧉ (copy and paste).
To cite dCode.fr on another website, use the link:
In a scientific article or book, the recommended bibliographic citation is: Matrix Trigonalization on dCode.fr [online website], retrieved on 2025-04-16,