Matrix Exponential Using the Pade Approximation Calculator

Calculate Matrix Exponential (e^A) via Pade Approximation

Enter matrix elements separated by spaces or commas. Use newlines or semicolons for new rows. Must be a square matrix.
A common choice is p=q. Higher orders (e.g., 6, 8, 10, 12) provide more accuracy but increase computation time.

Efficiently compute the matrix exponential eA for any square matrix A using the robust Pade approximation. Ideal for solving linear differential equations, control systems, and numerical analysis. Get accurate results for stability analysis and system dynamics quickly.

Formula:

The matrix exponential eA for a square matrix A is a fundamental concept in linear algebra, often used to solve systems of linear differential equations. It is defined by the power series:
eA = I + A + A2/2! + A3/3! + ...

However, directly computing this series is numerically unstable for many matrices. The Pade approximation method provides a robust and efficient way to approximate eA. It represents the matrix exponential as a rational function of the matrix A:
eA ≈ Rpq(A) = Dpq(A)-1Npq(A),
where Npq(A) and Dpq(A) are polynomial matrices. This method often involves scaling and squaring (i.e., eA = (eA/2s)2s) to reduce the norm of the input matrix, improving accuracy and stability before applying the Pade approximation.

Mathematics and Numerical Methods Tools

Gauss Jacobi Iteration Method

Go to Calculator

Gauss Seidel Iteration

Go to Calculator

Newton-Raphson Method

Go to Calculator