Finding an endomorphism (having trouble converting between bases).

80 Views Asked by At

I've been trying to solve an exercise about finding an endomorphism ($f:\mathbb{R}^2\rightarrow\mathbb{R}^2$) so that $f(2,5)=(1,3)$ and $f(1,3)=(1,-1)$. So my steps have been the following:

  • First, we have two bases: the canonic base of $\mathbb{R}^2$ and another base which which we shall call $\bar{B}=\{(2,5),(1,3)\}$.
  • Then, we know that for an equation $Y=CX$, $C$ would be the matrix associated with $f$ with bases $\bar{B}$ and $B$.

Then I didn't know how to proceed, so I looked it up in my textbook and it uses this figure:

Figure used in my book.

And it says that, in order to find the matrix $A$ (which would be the matrix associated with our endomorphism using the canonical base only), one has to know that $A=CP^{-1}$. My book uses similar diagrams sometimes and I think I don't understand them, because I don't understand how they arrived at that formula. Why $A=CP^{-1}$ and not $A=P^{-1}C$? There's not constrain when it comes to the dimensions of the matrices because they're all square matrices, so the order of the factors must come from somewhere.

Thanks everyone in advance!

2

There are 2 best solutions below

3
On BEST ANSWER

This all seems very complicated.

Conversely, there is a map that sends the standard basis to $(2,5),(1,3)$. The matrix form of this is $$P:=\begin{pmatrix}2&1\\5&3 \end{pmatrix}$$ Then, $P^{-1}$ will send these back to the standard basis. You want to find a matrix $A$ that sends $(1,0),(0,1)$ to $(1,3),(1,-1)$. Then the composition, will first send us back to standard basis, and we know how to write a matri that sends everything to the correct vectors. So, first put the matrix back into standard basis with $P^{-1}$, and then send standdard vectors to the vectors in question.

In other words, $A:=\begin{pmatrix}1&1\\3&-1 \end{pmatrix}P^{-1}$

3
On

Note that you are looking for a matrix $A$ such that: $$A\begin{bmatrix}2&1\\5&3\end{bmatrix}=\begin{bmatrix}1&1\\3&-1\end{bmatrix}$$ where the columns of $\left[\begin{smallmatrix}2&1\\5&3\end{smallmatrix}\right]$ are the domain vectors $(2,5)$ and $(1,3)$, while the columns of $\left[\begin{smallmatrix}1&1\\3&-1\end{smallmatrix}\right]$ are the image vectors $(1,3)$ and $(1,-1)$.

Thus the required matrix $A$ is obtained with right multiplication by the inverse of $\left[\begin{smallmatrix}2&1\\5&3\end{smallmatrix}\right]$, thus giving: $$A=\begin{bmatrix}1&1\\3&-1\end{bmatrix}\begin{bmatrix}2&1\\5&3\end{bmatrix}^{-1}$$ as you can verify by direct computation: \begin{align} \begin{bmatrix}1&1\\3&-1\end{bmatrix}\begin{bmatrix}2&1\\5&3\end{bmatrix}^{-1}\begin{bmatrix}2\\5\end{bmatrix} &=\begin{bmatrix}1&1\\3&-1\end{bmatrix}\begin{bmatrix}1\\0\end{bmatrix}\\ &=\begin{bmatrix}1\\3\end{bmatrix} \end{align} and similarly, \begin{align} \begin{bmatrix}1&1\\3&-1\end{bmatrix}\begin{bmatrix}2&1\\5&3\end{bmatrix}^{-1}\begin{bmatrix}1\\3\end{bmatrix} &=\begin{bmatrix}1&1\\3&-1\end{bmatrix}\begin{bmatrix}0\\1\end{bmatrix}\\ &=\begin{bmatrix}1\\-1\end{bmatrix} \end{align} as required.