Questions tagged [characteristic-polynomial]

The characteristic polynomial of a square matrix is a polynomial that is invariant under matrix similarity and has the eigenvalues as roots.

Let $A$ be a square $n\times n$ matrix. Its characteristic polynomial $p(\lambda)$ is $\det(\lambda I - A)$. Some authors prefer to define it as $\det(A-\lambda I)$ instead; by multiplicity of the determinant, these definitions agree for $n$ even and agree up to a sign for $n$ odd.

The characteristic polynomial contains a lot of information about $A$. Some properties include:

  • Its constant term is equal to $\det(A)$. In particular, if $p(0)\neq 0$, $A$ is invertible.
  • The coefficient of $\lambda^{n-1}$ is the trace of $A$
  • If $p$ has $n$ distinct roots, $A$ is diagonalizable (this condition is sufficient but not necessary)

A powerful result known as the Cayley-Hamilton theorem states that every matrix satisfies its characteristic polynomial; that is, $p(A)=0$. This is deeper than it appears at first: note that this does not follow by putting $\lambda=A$, as that is an abuse of notation.

A related concept is the minimial polynomial of $A$. Put simply, the characteristic polynomial allows for repeated roots and the minimal polynomial does not.

497 questions
6
votes
1 answer

Fundamentally, what's a characteristic polynomial?

I very recently learnt how to find the characteristic polynomial of a linear constant-coefficient homogeneous recurrence relation. But I also learned that the term "characteristic polynomial" appears in linear algebra (for matrices) and differential…
user1082389
2
votes
3 answers

How to find characteristic polynomial of a matrix $A$ whose elements are of the form $a_{ij} = a_ia_j$ for all $1\leq i,j \leq n$

For $n > 1$, $$A = \begin{pmatrix} {a_1}^2 & a_1a_2 & ... a_1a_n \\ a_2a_1 & {a_2}^2 & ... a_1a_n \\.... \\ a_na_1 & a_na_2 & ... {a_n}^2 \end{pmatrix}$$ The characteristic polynomial of matrix $A$ is $x^{n-1}(x-tr(A))$ My question is that how to…
0
votes
1 answer

using general form of characteristic polynomial to determine equation for 3*3 matrix

If $A$ is a $n$ x $n$ matrix and $f(\lambda)=det(A-\lambda I_n)$ then the characteristic polynomial is given as $f(\lambda)=(-1)^n \lambda^{n}+(-1)^{n-1}Tr(A) \lambda^{n-1}+....+det(A)$ For a 3x3 matrix I dont know how they arrived at the following…
0
votes
2 answers

Prove that the characteristic polynomial $P(x)$ from $A$ and $Q(x)$ from $A^{-1}$ are related by...

I have to prove that $A$ characteristic's polynomial $P(x)$ and $A^{-1}$ characteristic's polynomial $Q(x)$ are related by: $$ Q(\lambda) = \frac{\lambda^{n} P(\lambda ^{-1})}{P(0)} $$ I've tried by considering the matrix $A(A^{-1} − λI)$, but I've…
Spectree
  • 297