This example shows how to handle a dilation centered at a point other than the origin, which requires a translate–scale–translate-back approach.
Problem: A square has vertices P(2, 1), Q(4, 1), R(4, 3), and S(2, 3). Dilate the square by a scale factor of 2 with center at point P(2, 1), not the origin.
Step 1: When the center of dilation is not the origin, first translate each point so the center moves to the origin. Subtract the center coordinates (2, 1) from each point.
Pt=(0,0),Qt=(2,0),Rt=(2,2),St=(0,2) Step 2: Multiply each translated coordinate by the scale factor k = 2.
Pt′=(0,0),Qt′=(4,0),Rt′=(4,4),St′=(0,4) Step 3: Translate back by adding the center coordinates (2, 1) to each result.
P′=(2,1),Q′=(6,1),R′=(6,5),S′=(2,5) Step 4: Check: the original square had side length 2. The dilated square has side length 4, which is 2 times the original — consistent with k = 2. Notice that P, the center of dilation, did not move.
Side length: 4=2×2✓ Answer: The dilated square has vertices P'(2, 1), Q'(6, 1), R'(6, 5), and S'(2, 5). The center of dilation stays fixed.