数学

6选3

1. 線形代数 Linear algebra

已知数列 ,定义为:

以及递推关系:

  1. 找到矩阵 ,使得对所有 成立:
  2. 求矩阵 的所有特征值及对应的特征向量。
  3. 将向量表示为第三问中特征向量的线性组合。
  4. 求通项

2. 微分方程式 Differential equation

考虑函数的微分方程:

  1. 已知该微分方程具有形如 的特解,求 ,其中 为常数。
  2. ,其中 的函数,求微分方程的通解。

3. ベクトル解析 Vector analysis

在直角坐标系中,沿 轴方向的单位矢量分别为 ,回答以下问题:

  1. 考虑面 和 面
    a. 证明点 均在两面上。
    b. 求点 处两面的法线的夹角。
  2. 定义矢量场 ,令 为由 包围的圆柱的表面,计算面积分 其中 的外向单位法向量。

Link to original

4. 複素関数論 Complex function

考虑 平面上的三角形区域 ,其边界由 , , 给出。对于以下变换,绘制 平面上的影像区域 ,并给出区域边界的方程:

图像

\begin{document}
\begin{tikzpicture}[scale=2.0]
  % 画 (u,v) 坐标轴 (可根据需要增减范围)
  \draw[->] (-0.2,0) -- (3.0,0) node[right] {$u$};
  \draw[->] (0,-2.5) -- (0,1.0) node[above] {$v$};
 
  % 三个顶点坐标(用 \sqrt{3} 约等 1.732 也可)
  \coordinate (A) at (1, {1 - sqrt(3)});
  \coordinate (B) at (2, {1 - sqrt(3)});
  \coordinate (C) at (2, {-sqrt(3)});
 
  % 填充并画三角形
  \filldraw[blue!20, opacity=0.5] (A) -- (B) -- (C) -- cycle;
  \draw[thick, blue] (A) -- (B) -- (C) -- cycle;
 
  % 标注顶点
  \node[left]  at (A) {$A_w=(1,\;1-\sqrt{3})$};
  \node[above] at (B) {$B_w=(2,\;1-\sqrt{3})$};
  \node[right] at (C) {$C_w=(2,\;-\sqrt{3})$};
 
  % 标注区域
  \node at (1.7, {1.0 - sqrt(3)}) {$S'$};
  \node at (1.8, -2.0) {$w = z + (1 - \sqrt{3}i)$};
\end{tikzpicture}
\end{document}
\usepackage{tikz}
\begin{document}
 
\begin{tikzpicture}[scale=2.0]
  % 在 (u,v)-平面 画变换后三角形 S'
  % 将坐标整体向右平移 3.5 单位,以便与 (x,y)-平面分开显示
  \begin{scope}[xshift=3.5cm]
    % (u,v)-坐标轴
    \draw[->] (-0.5, 0) -- (3.0, 0) node[right] {$u$};
    \draw[->] (0, -1.0) -- (0, 2.0) node[above] {$v$};
 
    % 定义 \sqrt{3} 的数值近似,方便代码书写
    \pgfmathsetmacro{\sqrtt}{1.732} % 约等于 sqrt(3)
 
 
    % 填充并画三角形 S'
    \filldraw[red!20, opacity=0.5]
      (0,0) -- (\sqrtt,1) -- ({\sqrtt+1},{1-\sqrtt}) -- cycle;
    \draw[thick, red]
      (0,0) -- (\sqrtt,1) -- ({\sqrtt+1},{1-\sqrtt}) -- cycle;
 
    % 标注三角形 S' 顶点
    \node[left]  at (0,0) {$(0,0)=A_w$};
    \node[above] at (\sqrtt,1) {$(\sqrt{3},\,1)=B_w$};
    \node[right] at ({\sqrtt+1},{1-\sqrtt}) 
      {$\bigl(\sqrt{3}+1,\;1-\sqrt{3}\bigr)=C_w$};
 
    % 标注该区域
    \node at (1.3,0.3) {$S'$};
 
  \end{scope}
 
\end{tikzpicture}
 
\end{document}
\begin{document}
\begin{tikzpicture}[scale=2.0]
  % (u,v) 坐标轴
  \draw[->] (-1.5,0) -- (2.0,0) node[right] {$u$};
  \draw[->] (0,-0.5) -- (0,2.5) node[above] {$v$};
 
  % 填充抛物线围成的区域
  \filldraw[green!20, opacity=0.5]
    plot[domain=0:1, samples=50] ({1 - \x*\x},{2*\x}) -- % 第一条抛物线 (x=1 映射)
    plot[domain=1:0, samples=50] ({\x*\x - 1},{2*\x}) -- % 第二条抛物线 (y=1 映射)
    plot[domain=0:1, samples=50] ({2*\x - 1},{2*\x*(1-\x)}) -- % 边3 (x+y=1)
    cycle; % 闭合路径
 
  % 绘制三条抛物线边界
  \draw[thick,green] 
    plot[domain=0:1, samples=50] ({1 - \x*\x},{2*\x});
  \draw[thick,green]
    plot[domain=0:1, samples=50] ({\x*\x - 1},{2*\x});
  \draw[thick,green]
    plot[domain=0:1, samples=50] ({2*\x -1},{2*\x*(1-\x)});
 
  % 标注三条曲线相交的顶点:
  \fill (-1,0) circle(0.015);  % (u,v)=(-1,0)
  \node[below left] at (-1,0) {$(-1,0)$};
 
  \fill (0,2) circle(0.015);   % (u,v)=(0,2)
  \node[above] at (0,2) {$(0,2)$};
 
  \fill (1,0) circle(0.015);   % (1,0)
  \node[below right] at (1,0) {$(1,0)$};
 
  % 最后加注区域说明
  \node at (0,1) {$S'$ $w=z^2$};
 
\end{tikzpicture}
\end{document}

5. 確率・統計 Probability and statistics

设连续随机变量 在区间 上服从均匀分布,定义 ,其中 为自然对数。回答以下问题:

  1. 对任意实数 ,求
  2. 的期望和方差。

6. 記号論理学 Symbolic logic

  1. 将以下命题逻辑公式分别记为

    1. 使用归结法证明 的逻辑后继。
  2. 将以下谓词逻辑公式分别记为

    1. 判断以下公式是否可满足,并给出理由:

选修

6选2

B-信息论

R02-B-問1
R02-B-問2

C-自动机

R02-C-問1
R02-C-問2