Mirrors and Reflections | 镜面与反射

📚 Mirrors and Reflections | 镜面与反射

In further mathematics, reflections are fundamental linear transformations that map points across a line (in 2D) or a plane (in 3D). Mastering mirror matrices not only deepens your understanding of matrix algebra but also connects to invariants, eigenvectors, and geometric composition. This article unpacks the key ideas behind ‘Mirrors and Reflections’ as required for your advanced syllabus, from standard coordinate-axis reflections to the general derivation and composite transformations.

在进阶数学中,反射是将点映射到直线(二维)或平面(三维)另一侧的基本线性变换。掌握镜面矩阵不仅能加深你对矩阵代数的理解,还与不变量、特征向量和几何复合紧密相连。本文将依据进阶数学大纲,讲解“镜面与反射”的核心内容,从标准坐标轴反射到一般公式推导及复合变换,逐一拆解。


1. Reflections as Linear Transformations | 反射作为线性变换

A reflection in a line through the origin is a linear transformation, which means it can be represented by a 2×2 matrix that preserves the origin. Every point (x, y) is mapped to a new position (x’, y’) such that the line of reflection is the perpendicular bisector of the segment joining the point and its image.

关于通过原点的直线的反射是一种线性变换,可以用一个保持原点不动的2×2矩阵来表示。每个点(x, y)被映射到一个新位置(x’, y’),使得反射线成为连接该点与其像点的线段的垂直平分线。

Because the transformation is linear, the image of any vector can be found by multiplying the position vector by the reflection matrix. The key property is that the matrix is its own inverse: applying the same reflection twice returns the original point, so M² = I.

由于变换是线性的,任意向量的像都可以通过将位置向量乘以反射矩阵得到。其关键性质是矩阵自逆:应用同一反射两次会回到原像,因此M² = I


2. Reflection Matrices for the Coordinate Axes | 关于坐标轴的反射矩阵

Reflecting a shape in the x-axis changes the sign of the y-coordinate while leaving the x-coordinate unchanged. The corresponding matrix is:

关于x轴反射形状时,y坐标改变符号,而x坐标保持不变。对应的矩阵为:

[1   0]
[0   -1]

Similarly, reflection in the y-axis negates the x-coordinate, giving the matrix:

同样地,关于y轴反射则使x坐标变号,矩阵为:

[-1   0]
[0   1]

These are the starting points for building more complex reflection matrices, and they clearly show that the mirror line itself (e.g. x-axis) consists of points that remain fixed under the transformation.

这些是构建更复杂反射矩阵的起点,并且清晰地表明镜面线(例如x轴)由在变换下保持不动的点组成。


3. Reflection in the Lines y = x and y = –x | 关于直线 y=x 和 y=–x 的反射

Reflecting in the line y = x swaps the x and y coordinates. The matrix is:

关于直线y=x的反射交换x和y坐标。矩阵为:

[0   1]
[1   0]

For the line y = –x, the coordinates are swapped and their signs are changed. The transformation matrix is:

对于直线y = –x,坐标交换并同时变号。变换矩阵为:

[0   -1]
[-1   0]

These matrices are frequently tested because they combine easily with rotations and other transformations, and they provide clear examples of lines of invariant points.

这些矩阵经常出现在考试中,因为它们容易与旋转及其他变换组合,并且明确展示了由不动点构成的直线。


4. Deriving the General Reflection Matrix | 推导一般反射矩阵

For a reflection in a line through the origin that makes an angle θ with the positive x-axis, the transformation can be obtained by rotating the line to the x-axis, reflecting, and rotating back. This yields the matrix:

对于关于通过原点且与x轴正方向夹角为θ的直线的反射,可以通过先将镜面旋转至x轴、执行反射、再旋转回来得到。由此得出矩阵:

[cos2θ   sin2θ]
[sin2θ   -cos2θ]

Here, θ is the angle of the mirror line, measured anticlockwise from the positive x-axis. Notice that the determinant is -1, confirming that the orientation is reversed – a hallmark of a reflection.

这里θ是镜面线的倾角,从x轴正方向逆时针测量。请注意行列式为-1,确认了方向被反转——这正是反射的标志。


5. Invariant Points and Lines | 不动点与不变直线

Under a reflection, any point lying on the mirror line is mapped to itself; these are invariant points. The entire mirror line is an invariant line, but points not on it move. Another invariant line is the line perpendicular to the mirror, where points are mapped to their negatives – the line itself is invariant as a set, though individual points are not fixed.

在反射变换下,任何位于镜面线上的点都被映射到自身;这些是不动点。整条镜面线是一条不变直线,但其外的点会移动。另一条不变直线是与镜面垂直的线,其上的点被映射为其相反向量——该直线作为一个集合是不变的,尽管个别点并非固定。

Solving Mx = x gives the mirror line, while solving Mx = –x gives the line perpendicular to it. These concepts lead directly into eigenvectors.

解Mx = x给出镜面线,而解Mx = –x给出垂直于镜面的直线。这些概念直接导向特征向量。


6. Eigenvalues and Eigenvectors of Reflection | 反射的特征值与特征向量

Every 2D reflection matrix has eigenvalues 1 and -1. The eigenvector corresponding to 1 lies along the mirror line, while the eigenvector for -1 is perpendicular to the mirror. This is why the mirror direction is preserved and the perpendicular direction is reversed.

每个二维反射矩阵都有特征值1和-1。对应于1的特征向量沿镜面方向,而对应于-1的特征向量垂直于镜面。这就是镜面方向得以保留、垂直方向被反转的原因。

Algebraically, if u is a unit vector along the mirror, then Mu = u; if v is perpendicular to u, then Mv = -v. The matrix can be expressed using these eigenvectors as M = P diag(1,-1) P⁻¹, where P contains u and v as columns.

代数上,如果u是沿镜面的单位向量,则Mu=u;如果v垂直于u,则Mv=-v。该矩阵可以利用这些特征向量表示为M = P diag(1,-1) P⁻¹,其中P的列是u和v。


7. Composite Reflections and Rotations | 复合反射与旋转

One of the most elegant results in transformation geometry is that the composition of two reflections is a rotation. If you reflect first in line L₁ and then in line L₂, both through the origin, the overall effect is a rotation by twice the angle from L₁ to L₂.

变换几何中最优雅的结论之一是两个反射的复合是一个旋转。如果你先关于过原点的直线L₁反射,再关于L₂反射,整体效果是从L₁到L₂的角度的两倍的旋转。

Mathematically, M₂M₁ = R(2φ), where φ is the angle between the mirror lines. The order matters: M₁M₂ gives a rotation in the opposite direction. This relationship can be used to deduce rotation matrices or to simplify complex sequence problems.

数学上,M₂M₁ = R(2φ),其中φ是两条镜面线之间的夹角。顺序至关重要:M₁M₂产生的旋转方向相反。这个关系可用来推导旋转矩阵或简化复杂的变换序列问题。


8. Reflection in Three Dimensions | 三维空间中的反射

In 3D, a reflection is defined with respect to a plane. The standard reflection matrices for the coordinate planes are obtained by changing the sign of the perpendicular coordinate. For example, reflection in the xy-plane (z = 0) is given by:

在三维中,反射是相对于一个平面定义的。通过改变垂直坐标的符号可得到关于坐标平面的标准反射矩阵。例如,关于xy平面(z=0)的反射由以下矩阵给出:

[1   0   0]
[0   1   0]
[0   0   -1]

Similarly, matrices for the xz-plane and yz-plane follow the same pattern, negating the y or x coordinate respectively. These 3D mirrors can be combined with rotations and translations to model symmetry in space.

类似地,关于xz平面和yz平面的矩阵遵循相同模式,分别将y或x坐标变号。这些三维镜面可以与旋转和平移组合,用来建模空间中的对称性。


9. Finding the Image of Points and Lines | 求点与直线的像

To find the image of a point under a reflection, simply multiply the reflection matrix by the position vector. For a line, you can map two points on it and find the equation of the image line, or transform its direction vector and intercept algebraically.

要求一个点在反射下的像,只需用反射矩阵乘以该点的位置向量。对于直线,可映射直线上的两个点并求出像直线的方程,或用代数方法变换其方向向量和截距。

Example: Reflect the line y = 2x + 1 in the x-axis. The x-coordinate stays, but y becomes –y, so –y = 2x + 1, giving y = –2x –1.

例子:将直线y=2x+1关于x轴反射。x坐标不变,而y变为–y,因此–y=2x+1,得到y=–2x–1。


10. Common Exam Pitfalls and Tips | 常见考试陷阱与技巧

  • English: Mixing up reflection and rotation matrices: check the determinant – reflections always have determinant –1.
    中文:混淆反射矩阵与旋转矩阵:核对行列式——反射的行列式始终为–1。
  • English: Forgetting that reflections through lines not passing through the origin are not purely linear; they require a translation. For such cases, first shift the line to the origin, reflect, then shift back.
    中文:忘记关于不通过原点的直线的反射并非纯线性变换,需要平移。对于这种情况,先将直线平移到原点,反射,再平移回去。
  • English: In composite reflections, ensure the correct order of multiplication: M₂M₁ means apply M₁ then M₂.
    中文:在复合反射中,确保乘法顺序正确:M₂M₁表示先应用M₁再应用M₂。
  • English: When the mirror line has equation y = mx, express tan θ = m and use double-angle formulae to write the matrix in terms of m rather than θ if needed.
    中文:当镜面线方程为y=mx时,令tanθ=m,必要时用二倍角公式将矩阵表示为含有m的形式,而非θ。

Published by TutorHao | Further Mathematics Revision Series | aleveler.com

更多咨询请联系16621398022(同微信)

Comments

屏轩国际教育cambridge primary/secondary checkpoint, cat4, ukiset,ukcat,igcse,alevel,PAT,STEP,MAT, ibdp,ap,ssat,sat,sat2课程辅导,国外大学本科硕士研究生博士课程论文辅导

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Discover more from aleveler.com

Subscribe now to keep reading and get access to the full archive.

Continue reading