Given a $2\times2$ linear transformation matrix and the equation of a curve in the plane (e.g. $x^2+y^2=1$), why does one use the inverse matrix to find the equation of the image of the equation after the transformation?
I recently watched a video that explained how $2\times2$ matrices represent linear transformations in the plane. For example, if I wanted to find the image of the point $(1,0)$ after the transformation given by the matrix
$$ \left[\begin{matrix}2&1\\-1&0\\\end{matrix}\right], $$
I would simply multiply:
$$ \left[\begin{matrix}2&1\\-1&0\\\end{matrix}\right]\left[\begin{matrix}1\\0\\\end{matrix}\right]=\left[\begin{matrix}2\\-1\\\end{matrix}\right]\rightarrow(2,-1). $$
To extend this idea, I wanted to see the image of the circle $x^2+y^2=1$ after the transformation given by the same matrix. I figured that since
$$ \left[\begin{matrix}2&1\\-1&0\\\end{matrix}\right]\left[\begin{matrix}x\\y\\\end{matrix}\right]=\left[\begin{matrix}2x+y\\-x\\\end{matrix}\right], $$
the equation of the transformed circle would be $(2x+y)^2+(-x)^2=1$. But after testing a few points on the circle, I quickly realized that it was not the correct equation. Instead, the correct equation turned out to be
$$ (-y)^2+(x+2y)^2=1, $$
which is obtained by multiplying $x$ and $y$ by the inverse matrix:
$$ \left[\begin{matrix}2&1\\-1&0\\\end{matrix}\right]^{-1}\left[\begin{matrix}x\\y\\\end{matrix}\right]=\left[\begin{matrix}0&-1\\1&2\\\end{matrix}\right]\left[\begin{matrix}x\\y\\\end{matrix}\right]=\left[\begin{matrix}-y\\x+2y\\\end{matrix}\right] $$
So why do we use the original matrix to find the coordinates of the image of individual points (i.e. $(1,0)\rightarrow(2,-1)$), but the inverse matrix to find the equation of the image of the equation of a curve? Is there a geometric explanation for this (or how do I explain this to my students)?
$(x_1,y_1)$ gets map to $(x_2, y_2)$.
We know that $x_1^2+y_1^2=1$, but after mapping, we can't promise that $x_2^2+y_2^2=1$ still holds.
what we are sure is it's preimage obey the rules, hence we apply the inverse.