Tool to calculate matrix exponential in algebra. Matrix power consists in exponentiation of the matrix (multiplication by itself).
Matrix Power - 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!
The exponentiation of matrix $ M $ to the power $ n $ ($ n \neq 0 $) is written $ M^n $ and is defined as the multiplication">matrix product (the multiplication) of $ M $ by itself $ n $ times.
$$ M^n = \underbrace{M \cdot M \cdot \ldots \cdot M}_{n} $$
Taking $ M $ a square matrix of size $ m $ ($ m $ rows and $ m $ columns).
Example: Power of a 2x2 matrix squared (raised to power 2) $$ \begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix} ^2 = \begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix} \times \begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix} = \begin{bmatrix} 7 & 10 \\ 15 & 22 \end{bmatrix} $$
The size of the resulting matrix is identical to the original matrix M; i.e. $ m $ lines and $ m $ columns.
Calculating matrix power only works for square matrices (2x2, 3x3, 4x4, 5x5, etc. due to constraints with multiplication">matrix products) and is used for some matrices such as stochastic matrices.
If the matrix is diagonalizable, then its diagonalization greatly simplifies the power calculations because it applies mainly on the diagonal of the matrix.
Calculating $ M^{-n} $ is equivalent to $ M^{-1 \times n} $. Thus, calculate the inverse of the matrix and then perform with it an exponentiation to the power $ n $.
Example: $$ \begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix} ^{-2} = \left( \begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix} ^{-1} \right)^2 $$
The calculation of $ M^{1/n} $ is equivalent to the $ n $ -th root.
The exponentiation $ n $ (with $ n $ a nonzero real number) of an invertible square matrix $ M $ can be defined by $ M^n = \exp(n \log{M}) $ and therefore the power of the matrix can be calculated with a decimal number as the exponent. In this case, the logarithm of a matrix is defined with the eigenvectors $ V $ of $ M $ such that $ \log{M} = V . \log{ V^{-1} . A . V } . V^{-1} $ and the exponential of a matrix is can be calculated using an integer series $ e^M = \sum_{k=0}^{\infty} \frac{1}{k!} M^k $.
dCode retains ownership of the "Matrix Power" source code. Except explicit open source licence (indicated Creative Commons / free), the "Matrix Power" algorithm, the applet or snippet (converter, solver, encryption / decryption, encoding / decoding, ciphering / deciphering, breaker, translator), or the "Matrix Power" functions (calculate, convert, solve, decrypt / encrypt, decipher / cipher, decode / encode, translate) written in any informatic language (Python, Java, PHP, C#, Javascript, Matlab, etc.) and all data download, script, or API access for "Matrix Power" are not public, same for offline use on PC, mobile, tablet, iPhone or Android app!
Reminder : dCode is free to use.
The copy-paste of the page "Matrix Power" or any of its results, is allowed (even for commercial purposes) as long as you credit dCode!
Exporting results as a .csv or .txt file is free by clicking on the export icon
Cite as source (bibliography):
Matrix Power on dCode.fr [online website], retrieved on 2024-11-07,