# Nakafa Framework: LLM URL: /en/subject/high-school/11/mathematics/geometric-transformation/dilation Source: https://raw.githubusercontent.com/nakafaai/nakafa.com/refs/heads/main/packages/contents/subject/high-school/11/mathematics/geometric-transformation/dilation/en.mdx Output docs content for large language models. --- import { getColor } from "@repo/design-system/lib/color"; import { LineEquation } from "@repo/design-system/components/contents/line-equation"; export const metadata = { title: "Dilation", description: "Learn geometric dilation with scale factors and center points. Master enlargement & reduction formulas with visual examples and practice problems.", authors: [{ name: "Nabil Akbarazzima Fatih" }], date: "05/10/2025", subject: "Geometric Transformation", }; ## Understanding Dilation Dilation is a geometric transformation that changes the size of an object (enlarging or shrinking) without changing its shape. Each point on the object is mapped to a new position based on a center of dilation and a scale factor. ### Formal Definition of Dilation Given a point as the center of dilation and a scale factor . The dilation of a point with respect to center by a factor , denoted as , is a transformation that maps to such that . This means the vector from the center of dilation to the image is times the vector from the center of dilation to the original point. - If , it is an enlargement. - If , it is a reduction. - If , the original point and its image are on the same side of the center of dilation. - If , the original point and its image are on opposite sides of the center of dilation (and the image is inverted). ## Dilation with Respect to the Origin with Scale Factor k If the center of dilation is the origin and the scale factor is , then for a point , its image is given by:
### Dilating a Point with Respect to the Origin If point is dilated with respect to the origin by a factor of , determine the image of the point. Here, , , and . The center of dilation is .
Thus, the image is . Dilation of Point from Origin, Factor{" "} } description={ <> Visualization of dilating point to{" "} with center at {" "} and scale factor 2. } data={[ { points: [{ x: 0, y: 0, z: 0 }], color: getColor("ROSE"), showPoints: true, labels: [{ text: "O(0,0)", at: 0, offset: [0.3, -0.3, 0] }], }, // Center of Dilation { points: [{ x: 1, y: 2, z: 0 }], color: getColor("SKY"), showPoints: true, labels: [{ text: "A(1,2) - Original", at: 0, offset: [1, 0.2, 0] }], }, // Original Point { points: [{ x: 2, y: 4, z: 0 }], color: getColor("EMERALD"), showPoints: true, labels: [{ text: "A'(2,4) - Image", at: 0, offset: [0.3, 0.3, 0] }], }, // Image Point { points: [ { x: 0, y: 0, z: 0 }, { x: 1, y: 2, z: 0 }, ], color: getColor("INDIGO"), }, // Line OA { points: [ { x: 0, y: 0, z: 0 }, { x: 2, y: 4, z: 0 }, ], color: getColor("INDIGO"), }, // Line OA' ]} showZAxis={false} cameraPosition={[1, 2, 15]} /> ## Dilation with Respect to an Arbitrary Point with Scale Factor k If the center of dilation is an arbitrary point and the scale factor is , then for a point , its image is given by:
This can be interpreted as: translate the system so that becomes the origin, perform the dilation by factor , and then translate back. ### Dilating a Point with Respect to an Arbitrary Point If point is dilated with respect to point by a factor of , determine the image of the point. Here, the point to be dilated is so . The center of dilation is , so . The scale factor is .
Thus, the image is . Dilation of Point from{" "} , Factor } description={ <> Visualization of dilating point to{" "} with center at {" "} and scale factor 2. } data={[ { points: [{ x: 2, y: 3, z: 0 }], color: getColor("ROSE"), showPoints: true, labels: [{ text: "P(2,3) - Center", at: 0, offset: [1, 0.5, 0] }], }, // Center of Dilation { points: [{ x: 5, y: 2, z: 0 }], color: getColor("SKY"), showPoints: true, labels: [{ text: "C(5,2) - Original", at: 0, offset: [0.3, -0.3, 0] }], }, // Original Point { points: [{ x: 8, y: 1, z: 0 }], color: getColor("EMERALD"), showPoints: true, labels: [{ text: "C'(8,1) - Image", at: 0, offset: [0.5, -0.5, 0] }], }, // Image Point { points: [ { x: 2, y: 3, z: 0 }, { x: 5, y: 2, z: 0 }, ], color: getColor("INDIGO"), }, // Line PC { points: [ { x: 2, y: 3, z: 0 }, { x: 8, y: 1, z: 0 }, ], color: getColor("INDIGO"), }, // Line PC' ]} showZAxis={false} /> ## Exercises 1. Determine the image of under dilation (center at O(0,0), factor 3). 2. Determine the image of under dilation with center and factor 3. 3. A triangle with vertices , , and is dilated with respect to the origin by a scale factor . Determine the coordinates of the image triangle ! ### Key Answers 1. Point , center , .
Thus, the image is . 2. Point , center , . ()
Thus, the image is . 3. Center , . - For : . - For : . - For : . The coordinates of the image triangle are: , , .