Calculate characteristic polynomials of square matrices for eigenvalue analysis
The characteristic polynomial of a square matrix A is defined as det(A - λI), where λ is a variable and I is the identity matrix. This polynomial's roots are the eigenvalues of the matrix, making it fundamental in linear algebra applications.
Enter numerical values for each matrix element
Try these predefined matrices to see how the calculator works
The simplest matrix with eigenvalues 1, 1
Size: 2×2
Elements: [["1","0"],["0","1"]]
A diagonal matrix with clear eigenvalues
Size: 3×3
Elements: [["2","0","0"],["0","3","0"],["0","0","1"]]
Real symmetric matrix with real eigenvalues
Size: 2×2
Elements: [["1","2"],["2","1"]]
Triangular matrix with eigenvalues on diagonal
Size: 3×3
Elements: [["2","1","3"],["0","1","2"],["0","0","3"]]