🔴
入学要求
💯
能力测试
🛣️
课程安排
🕹️
研究资源

练习

💡

查看全集:🏸线性代数/Linear Algebra

习题1(过渡矩阵应用)

坐标系绕原点逆时针旋转45°得到新坐标系:

  1. 求点P在原坐标系的坐标(3,1)对应的新坐标系坐标
  1. 若点Q在新坐标系的坐标为(√2, 0),求原坐标系坐标

习题2(标准矩阵构造)

定义线性变换 T((xy))=(x+2y3yx)T(\begin{pmatrix}x\\y\end{pmatrix}) = \begin{pmatrix}x+2y\\3y-x\end{pmatrix},求其标准矩阵

习题3(正交矩阵验证)

判断以下矩阵是否正交矩阵,并说明理由:


A=(12121212)A = \begin{pmatrix} \frac{1}{\sqrt{2}} & -\frac{1}{\sqrt{2}} \\ \frac{1}{\sqrt{2}} & \frac{1}{\sqrt{2}} \end{pmatrix}

习题4(秩与核计算)

对于线性变换:

T((xyz))=(x+yyz0)T(\begin{pmatrix}x\\y\\z\end{pmatrix}) = \begin{pmatrix}x+y\\y-z\\0\end{pmatrix} 
求其秩和零化度,并验证秩-零化度定理

习题5(复合变换)

给定线性变换:


S(x)=(1201)x,T(x)=(0110)xS(\mathbf{x}) = \begin{pmatrix}1&2\\0&1\end{pmatrix}\mathbf{x},\quad T(\mathbf{x}) = \begin{pmatrix}0&-1\\1&0\end{pmatrix}\mathbf{x}

求复合变换
TST \circ S 的标准矩阵


参考答案

习题1解答

旋转矩阵:


P=(22222222)P = \begin{pmatrix} \frac{\sqrt{2}}{2} & -\frac{\sqrt{2}}{2} \\ \frac{\sqrt{2}}{2} & \frac{\sqrt{2}}{2} \end{pmatrix}

  1. 新坐标:


    P1(31)=(22222222)(31)=(222)P^{-1}\begin{pmatrix}3\\1\end{pmatrix} = \begin{pmatrix} \frac{\sqrt{2}}{2} & \frac{\sqrt{2}}{2} \\ -\frac{\sqrt{2}}{2} & \frac{\sqrt{2}}{2} \end{pmatrix}\begin{pmatrix}3\\1\end{pmatrix} = \begin{pmatrix} 2\sqrt{2} \\ -\sqrt{2} \end{pmatrix}

  1. 原坐标:


    P(20)=(11)P\begin{pmatrix}\sqrt{2}\\0\end{pmatrix} = \begin{pmatrix}1\\1\end{pmatrix}

习题2解答

标准基变换:


T(e1)=(11),T(e2)=(23)T(\mathbf{e}_1) = \begin{pmatrix}1\\-1\end{pmatrix},\quad T(\mathbf{e}_2) = \begin{pmatrix}2\\3\end{pmatrix}

标准矩阵:


A=(1213)A = \begin{pmatrix} 1 & 2 \\ -1 & 3 \end{pmatrix}

习题3解答

验证正交性:

  1. 列向量长度均为1:(12)2+(12)2=1\left(\frac{1}{\sqrt{2}}\right)^2 + \left(\frac{1}{\sqrt{2}}\right)^2 = 1
  1. 列向量正交:1212=0\frac{1}{2} - \frac{1}{2} = 0
  1. ATA=IA^TA = I
    结论:是正交矩阵

习题4解答

标准矩阵:


A=(110011000)A = \begin{pmatrix} 1&1&0 \\ 0&1&-1 \\ 0&0&0 \end{pmatrix}

  1. 秩 = 2(前两行线性无关)
  1. 零空间解系:(111)\begin{pmatrix}1\\-1\\1\end{pmatrix} ⇒ 零化度=1
  1. 验证:2+1=3(输入空间维度)

习题5解答

复合变换矩阵:


BA=(0110)(1201)=(0112)BA = \begin{pmatrix}0&-1\\1&0\end{pmatrix} \begin{pmatrix}1&2\\0&1\end{pmatrix} = \begin{pmatrix}0&-1\\1&2\end{pmatrix}