# Nakafa Framework: LLM
URL: /en/subject/high-school/11/mathematics/geometric-transformation/translation
Source: https://raw.githubusercontent.com/nakafaai/nakafa.com/refs/heads/main/packages/contents/subject/high-school/11/mathematics/geometric-transformation/translation/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: "Translation",
  description: "Master geometric translation transformations: learn to translate points and lines using vectors with step-by-step examples and visual demonstrations.",
  authors: [{ name: "Nabil Akbarazzima Fatih" }],
  date: "05/10/2025",
  subject: "Geometric Transformation",
};
## Understanding Translation
Translation, also known as a shift or slide, is a type of geometric transformation that moves every point of an object a certain distance in a specified direction. This transformation does not change the orientation, size, or shape of the object; only its position changes.
### Definition of Translation
Given any point . The translation associated with the vector  for point , written as  or , is defined as:
This means:
  
  
Here,  is the horizontal shift (positive to the right, negative to the left) and  is the vertical shift (positive upwards, negative downwards).
## Translating a Point
A point  is translated by the vector . Determine the image point of this translation.
Here, , , , and .
Using the formula:
  
  
Thus, the image of point  is .
      Translation of Point  by Vector{" "}
      
    >
  }
  description={
    <>
      Visualization of translating point  to{" "}
       using a translation vector.
    >
  }
  data={[
    {
      points: [{ x: 3, y: 2, z: 0 }],
      color: getColor("SKY"),
      showPoints: true,
      labels: [{ text: "P(3,2) - Original", at: 0, offset: [0.3, -0.3, 0] }],
    }, // Original Point
    {
      points: [{ x: 1, y: 5, z: 0 }],
      color: getColor("EMERALD"),
      showPoints: true,
      labels: [{ text: "P'(1,5) - Image", at: 0, offset: [0.3, 0.3, 0] }],
    }, // Image Point
    {
      points: [
        { x: 3, y: 2, z: 0 },
        { x: 1, y: 5, z: 0 },
      ],
      color: getColor("ROSE"),
      labels: [{ text: "vector (-2,3)", at: 0, offset: [-1, 1.5, 0] }],
    }, // Translation Vector from P to P'
  ]}
  showZAxis={false}
/>
## Translating a Line
Determine the image of the line  translated by the vector .
Let  be any point on line . If translated by the vector , its image is  where:
  
  
Substitute these values of  and  into the equation of line :
  
  
  
Replacing  and  back to  and , the equation of the image line  is:
  
  
        Translation of Line  by Vector{" "}
        
      >
    }
    description={
      <>
        Original line  translated results in
        image line .
      >
    }
    data={[
      {
        // Original Line: 2x + 3y - 1 = 0  => y = (-2/3)x + 1/3
        points: Array.from({ length: 11 }, (_, i) => {
          const xVal = i - 5;
          return { x: xVal, y: (-2 / 3) * xVal + 1 / 3, z: 0 };
        }),
        color: getColor("PURPLE"),
        labels: [{ text: "2x+3y-1=0", at: 2, offset: [-1, -0.5, 0] }],
      },
      {
        // Image Line: 2x + 3y - 2 = 0 => y = (-2/3)x + 2/3
        points: Array.from({ length: 11 }, (_, i) => {
          const xVal = i - 5;
          return { x: xVal, y: (-2 / 3) * xVal + 2 / 3, z: 0 };
        }),
        color: getColor("PINK"),
        labels: [{ text: "2x+3y-2=0", at: 8, offset: [1, 0.5, 0] }],
      },
    ]}
    showZAxis={false}
    cameraPosition={[0, 0, 10]}
  />
## Exercises
1.  A point  is translated by the vector . Determine the image point of this translation.
2.  Determine the image of the line  translated by the vector .
3.  A triangle with vertices , , and  is translated by the vector . Determine the coordinates of the image triangle !
### Key Answers
1.  Point , vector . .
    
      
      
    
    Thus, the image point is .
2.  Line , vector . .
    
      
      
    
    Substitute into the line equation:
    
      
      
      
    
    Image line equation: .
3.  Points , , . Vector .
    
      
      
      
    
    The coordinates of the image triangle are , , and .