In image there is a triangle on a coordinate plane. Coordinates of a triangle are A(1, 2), B(1, 0) and C(3, 0)
If I represent all three coordinates in a 3x3 matrix, it will look like below:
\begin{bmatrix}1&1&3\\2&0&0\end{bmatrix}
Now I want to translate this triangle to new triangle whose coordinates will be A'(3,2), B'(3,0) and C'(5,0). And my new 3x3 matrix will look like below:
\begin{bmatrix}3&3&5\\2&0&0\end{bmatrix}
I know this transformation can be done using matrix multiplication. But I don't know with what transformation matrix I should multiply? And How to write transformation Matrix for this type of transformation?
Thank you

You can only compute rotations and symmetries by using 2x2 matrix multiplication (i.e. linear transformations from $\Bbb R^2$ to $\Bbb R^2$), not translations. To obtain the second triangle you'll just need to translate by $\vec v=(2,0)^T$.