Point transformation means mapping an object point to an image point using a matrix. The point is written as a column vector so matrix multiplication is valid and dimensionally consistent. This model is used whenever transformations are centered at the origin in 2D coordinate geometry.
Core equation is
This expands to and , showing each new coordinate is a weighted sum of the original coordinates. It works because linear transformations preserve addition and scalar multiplication.
| Feature | Forward transform | Reverse transform |
|---|---|---|
| Known data | Object point and matrix | Image point and matrix |
| Main equation | or solve equations | |
| Typical risk | Multiplication arithmetic error | Using inverse when |
| Best use case | Generate image coordinates | Recover original coordinates |
Set up before calculating: write vectors and matrices with clear brackets and dimensions first, then multiply carefully. This reduces dropped terms and accidental row-column swaps. Examiners usually reward correct setup even if arithmetic slips later.
Always perform a reasonableness check after finding or . Substitute your answer back into the matrix equation to verify consistency, and check whether signs and sizes are plausible for the given matrix entries. If reversing with an inverse, quickly confirm in principle and that .
Row-column confusion is one of the most frequent errors: students sometimes write points as row vectors and multiply in an incompatible order. In this convention, points are column vectors and the matrix multiplies on the left. Mixing conventions mid-solution creates incorrect coordinates even with correct arithmetic.
Assuming every matrix can be undone is a misconception. If , the transformation collapses area and loses information, so different points can map to the same image point. In that case, a unique original point cannot be recovered with an inverse.