Suppose I do the following to a vector in $\mathbb{R}^{2}$
- Reflect across x-axis
- Reflect across y-axis
- Reflect across origin
Now to do the tranformations one by one we could left-multiply the vector by the corresponding tranformation matrix to get final tranformed vector having final tranformation as the effect the three.
If I have to do the transformation in one step then I would need a tranformation matrix representing the combined effect of all the three transformation. Let us define the tranformation as A, B and C for relecting across x-axis, y-axis and the origin respectively.
As far as I know we have to take product of three matrices as (C.B.A) to get the combined effect.
My question is why are we multiplying it rather than adding it? What geometric interpretations it would have if we added the matrix instead of multiplying as I mentioned?