Questions tagged [diagonalization]

For questions about matrix diagonalization. Diagonalization is the process of finding a corresponding diagonal matrix for a diagonalizable matrix or linear map. This tag is NOT for diagonalization arguments common to logic and set theory.

A square matrix $A$ is diagonalisable if there is an invertible matrix $P$ such that $P^{-1}AP$ is a diagonal matrix. One can view $P$ as a change of basis matrix so that, if $A$ is viewed as the standard matrix of a linear map $T$ from a vector space to itself in some basis, it is equivalent to say there exists an ordered basis such that the standard matrix of $T$ is diagonal. Diagonal matrices present the eigenvalues of the corresponding linear transformation along its diagonal. A square matrix that is not diagonalizable is called defective.

Not every matrix is diagonalisable over $\mathbb{R}$ (i.e. only allowing real matrices $P$). For example, $$\begin{pmatrix} 0 & -1 \\ 1 & 0 \end{pmatrix}$$

Diagonalization can be used to compute the powers of a matrix $A$ efficiently, provided the matrix is diagonalizable.

Diagonalization Procedure :

Let $A$ be the $n×n$ matrix that you want to diagonalize (if possible).

  • Find the characteristic polynomial $p(t)$ of $A$.
  • Find eigenvalues $λ$ of the matrix $A$ and their algebraic multiplicities from the characteristic polynomial $p(t)$.
  • For each eigenvalue $λ$ of $A$, find a basis of the eigenspace $E_λ$. If there is an eigenvalue $λ$ such that the geometric multiplicity of $λ$, $dim(E_λ)$, is less than the algebraic multiplicity of $λ$, then the matrix $A$ is not diagonalizable. If not, $A$ is diagonalizable, and proceed to the next step.

  • If we combine all basis vectors for all eigenspaces, we obtained $n$ linearly independent eigenvectors $v_1,v_2,…,v_n$.

  • Define the nonsingular matrix $$P=[v_1\quad v_2\quad …\quad v_n]$$
  • Define the diagonal matrix $D$, whose $(i,i)$-entry is the eigenvalue $λ$ such that the $i^{th}$ column vector $v_i$ is in the eigenspace $E_λ$.
  • Then the matrix A is diagonalized as $$P^{−1}AP=D$$

References:

Diagonal Matrix on Wikipedia

Matrix Diagonalization on Wolfram MathWorld

2484 questions
0
votes
1 answer

Are all diagonalizing transforms rotations & reflections?

Linear transformations for which the matrix is diagonalizable have been described as anisotropic scalings, presumably along orthogonal directions. So based on lots of web browsing to get the intuition behind this, I now picture such a…
0
votes
1 answer

quasi diagonal matrix transformation

I need a help please when I have a matrix with complex eigenvalues for example $$A=\begin{pmatrix}0& 1& 0\\0 &0 &1\\-24 &-29 &-18\end{pmatrix}$$ with its eigenvalues of: $-16.3$, $-0.844+0.871j$, and $-0.844-0.871j$ Matrix $A$ can be diagonalized…
0
votes
2 answers

Minimize a quadratic equation with diagonalization

I have a problem to solve and I have no idea how to do. I need to find the maximum and minimum of $G=2x²+2y²-15z²+8xy-12yz-12xz$ with $x²+y²+z²=1$ I'm supposed to use the diagonalization but I don't know with which matrix started... Thanks for your…
0
votes
0 answers

Find $a$s for which $T$ is diagonalizable

I am given $T:\mathbb{R}^3\rightarrow\mathbb{R}^3$ such that $T(1,-1,0)=(a-4,a+6,0),\ T(1,1,0)=(-5,-5,0),\ T(1,1,1)=(2,2,2)$ I need to find for which $a$'s $T$ is diagonalizable (and for which it isn't) So I took a basis…
Theorem
  • 2,938
0
votes
1 answer

Diagonalization problem in linear algebra

Why we talk about diagonalization problem in case of linear operator only not in case T: V->W where dimV =dimW
user333083
0
votes
1 answer

Diagonalize symmetric matrix $\small \begin{bmatrix} 4 & 3 \\ 3 & 1 \end{bmatrix}$

please help me to find out the diagonalization of this matrix: $$\begin{bmatrix} 4 & 3 \\ 3 & 1 \end{bmatrix}$$ I am stuck in finding out the Eigenvectors. My eigenvalues are $\frac{5+3\sqrt{5}}{2} , \frac{5-3\sqrt{5}}{2}$
0
votes
1 answer

If T is a linear operator, has dim V distinct eigen values, then T has a diagonal matrix with respect to some basis of V.

My question is "Why did they write T has a diag matrix w.r.t some basis of V". Give T belongs to L(v), dosent that say we already fixed the basis ?
-1
votes
2 answers

How to prove that $A$ (a $n\times n$ matrix) is diagonalizable, given that $rank(A) = 1$ and $A^2 != 0$?

So I have proved that $0$ is an eigenvalue for the above matrix and that the geometric multiplicity of $0$ is $n-1$. I know if I can find one more eigenvector for some other eigenvalue, I will be able to prove this. But I don't know how to find this…
Gureet
  • 11
  • 1
-1
votes
1 answer

Set Definition Question

Consider set $W = \{ W_e | e \in \mathbb{N}\}$, where the $W_e$'s are sets of natural numbers. define set $K = \{e | e \in W_e\}$. Obviously K is some type of "diagonal" set. I'm confused abut its definition, as the symbol "$e$" appears as both…
-1
votes
1 answer

diagonalization , help me to to find out which one

Could anyone only help me to find out which one is diagonalizable?
Myshkin
  • 35,974
  • 27
  • 154
  • 332
1 2
3