# Nakafa Framework: LLM URL: https://nakafa.com/en/subject/high-school/11/mathematics/geometric-transformation/reflection-matrix Source: https://raw.githubusercontent.com/nakafaai/nakafa.com/refs/heads/main/packages/contents/subject/high-school/11/mathematics/geometric-transformation/reflection-matrix/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: "Reflection Matrix", description: "Master reflection matrices for X-axis, Y-axis, y=x, and y=-x lines. Learn to transform points and triangles with detailed matrix calculations.", authors: [{ name: "Nabil Akbarazzima Fatih" }], date: "05/10/2025", subject: "Geometric Transformation", }; ## Reflection Matrix for X-axis Recall that reflecting a point across the X-axis results in the image . We are looking for a matrix such that:
By equating the coefficients, we get: - - Thus, the reflection matrix for the X-axis is . ## Reflection Matrix for Y-axis Reflecting a point across the Y-axis results in .
This gives . The matrix is . ## Reflection Matrix for Line y = x Reflecting a point across the line results in .
This gives . The matrix is . ## Reflection Matrix for Line y = -x Reflecting a point across the line results in .
This gives . The matrix is . ## Basic Reflection Matrices - Reflection matrix for X-axis: - Reflection matrix for Y-axis: - Reflection matrix for line : - Reflection matrix for line : ## Finding the Image of a Point using Matrix Find the image of reflected across the X-axis. **Alternative Solution:** Using the reflection matrix for the X-axis: Thus, the image is . ## Finding the Image of a Triangle using Matrix Determine the image of triangle ABC with vertices , , and reflected across the Y-axis! **Alternative Solution:** The reflection matrix for the Y-axis is . The matrix of the triangle's vertices ABC: .
Thus, the image is triangle with vertices , , and . Reflection of over Y-axis using Matrix } description={ <> Triangle is reflected to become{" "} over the Y-axis. } data={[ ...[ { from: { x: 3, y: 1, z: 0, label: "A(3,1)" }, to: { x: -2, y: 3, z: 0, label: "B(-2,3)" }, }, { from: { x: -2, y: 3, z: 0, label: "B(-2,3)" }, to: { x: 2, y: -1, z: 0, label: "C(2,-1)" }, }, { from: { x: 2, y: -1, z: 0, label: "C(2,-1)" }, to: { x: 3, y: 1, z: 0, label: "A(3,1)" }, }, ].map((segment) => ({ points: [segment.from, segment.to], color: getColor("AMBER"), showPoints: true, labels: [{ text: segment.from.label, at: 0, offset: [0.3, 0.3, 0] }], })), ...[ { from: { x: -3, y: 1, z: 0, label: "A'(-3,1)" }, to: { x: 2, y: 3, z: 0, label: "B'(2,3)" }, }, { from: { x: 2, y: 3, z: 0, label: "B'(2,3)" }, to: { x: -2, y: -1, z: 0, label: "C'(-2,-1)" }, }, { from: { x: -2, y: -1, z: 0, label: "C'(-2,-1)" }, to: { x: -3, y: 1, z: 0, label: "A'(-3,1)" }, }, ].map((segment) => ({ points: [segment.from, segment.to], color: getColor("TEAL"), showPoints: true, labels: [{ text: segment.from.label, at: 0, offset: [0.3, 0.3, 0] }], })), ]} showZAxis={false} cameraPosition={[0, 0, 12]} /> ## Exercises 1. Find the image of point reflected across the X-axis using the matrix multiplication . 2. Determine the image of triangle ABC with vertices , , and reflected across the line ! ### Key Answers 1. The image of point reflected across the X-axis using the matrix multiplication is: Image: . 2. The reflection matrix for is . Matrix of ABC vertices: .
Image: , , .