In the Book that I'm reading (Mathematics for Machine Learning), the following para is given, while listing the properties of a matrix determinant:
Similar matrices (Definition 2.22) possess the same determinant. Therefore, for a linear mapping $Φ : V → V$ all transformation matrices $A_Φ$ of $Φ$ have the same determinant. Thus, the determinant is invariant to the choice of basis of a linear mapping.
I know that matrices $A$ and $B$ are similar if they satisfy $B=C^{-1}AC$. I can prove that determinants of such $A$ and $B$ are equal using other properties of a determinant.
But beyond that I don't understand what this paragraph is saying. I can understand all matrices $Y$ such that $Y=X^{-1}AX$ have the same determinant as $A$, for varying $X$s.
But how do I connect this to linear mappings of the form $Φ : V → V$. What does $Φ : V → V$ mean here? Maybe someone can give me an example.
EDIT: This video is pretty basic, but it helped me understand better https://www.youtube.com/watch?v=s4c5LQ5a4ek
Suppose that $V$ is the vector space of quadratic polynomials and $\Phi$ is multiplication by $(1 + x)$ mod $x^3$.
Now let us consider two different bases for $V$. One will be $1, x, x^2$ and the other will be $1, (1 + x), (1 + x)^2$.
In the first basis we have
\begin{align} \phi(1) &= 1 + x \\ \phi(x) &= \phantom{1 + {}}x + x^2 \\ \phi(x^2) &= \phantom{1 + x +{}} x^2. \end{align}
In the second basis,
\begin{align} \phi(1) &= \phantom{1 - 3} (1 + x) \\ \phi(1 + x) &= \phantom{1 - 3(1 + x) + 3}{}(1 + x)^2 \\ \phi((1 + x)^2) &= (1 + x)^3 \equiv 1 +3x+3x^2 \pmod{x^3} \\ &= 1 - 3(1 + x) + 3(1 + x)^2 \end{align}
The two matrices we get out of this are $$ \begin{pmatrix} 1 & 0 & 0 \\ 1 & 1 & 0 \\ 0 & 1 & 1 \end{pmatrix} \text{ and } \begin{pmatrix} 0 & 0 & 1 \\ 1 & 0 & -3 \\ 0 & 1 & 3 \end{pmatrix} $$
And the statement/fact in question is that these two matrices are similar. If we were to write this as $A = PBP^{-1}$, the matrix $P$ would be the matrix corresponding to writing $\{1,(1+x),(1+x)^2\}$ in terms of the first basis. I.e.
$$ P = \begin{pmatrix} 1 & 1 & 1 \\ 0 & 1 & 2 \\ 0 & 0 & 1 \end{pmatrix} $$