I am currently trying to solve this exercise:
Let A be a diagonalisable matrix with eigenvalues $\lambda_1,\lambda_2...\lambda_n.$ Show that $\det A = \prod_{n=1}^n\lambda_i $
I tried solved it for a $3x3$ matrix:
A diagonalisable matrix can be written as:
$$ \begin{pmatrix} \lambda_1 & 0 & 0 \\ 0 & \lambda_2 & 0 \\ 0 & 0 & \lambda_3 \end{pmatrix} $$
If we compute the determinant by the Rule of Sarrus
we get
$$\lambda_1\times\lambda_2\times\lambda_3 + 0 + 0 - 0 - 0 - 0$$
Therefore we can write:
$A = \prod_{n=1}^3\lambda_i $
My problem is how to show this generally?
If $A$ is diagonalisable (i.e. it has distinct eigenvalues), then we can write: \begin{align*} Av_1 &= \lambda_1v_1 \\ Av_2 &= \lambda_2v_2 \\ & \vdots \\ Av_n &= \lambda_nv_n \end{align*} for distinct eigenvalues $\lambda_1,...,\lambda_n$ and linearly independent eigenvectors $v_1,...,v_n$.
Define a matrix $P = \bigg[v_1|...|v_n\bigg]$, where the columns of $P$ are the eigenvectors. Then \begin{align*} AP = A\bigg[v_1|...|v_n\bigg] = \bigg[\lambda_1 v_1|...|\lambda_nv_n\bigg] = \bigg[v_1|...|v_n\bigg]\left[\begin{matrix} \lambda_1 & & \\ & \ddots & \\ && \lambda_n\end{matrix}\right] \end{align*} i.e. \begin{align*} AP = PD \end{align*} where $D$ is a diagonal matrix with eigenvalues on its diagonal. Then $\det{A}\det{P} = \det{P}\det{D} \Rightarrow \det{A} = \det{D}$