下面的公式使用了上面定义的 macro。 \[
\ran A := \{ y \mid (x,y) \in A \}
\]
两个集合 \(A, B\) 的笛卡尔积定义为 \[
A \times B = \{\langle x,y \rangle \mid x \in A \land y \in B \}
\]
显然,笛卡尔积不满足交换律和结合律. 在势的视角下,它的表现如何呢?
Theorem 1 (笛卡尔积的保势性) 这是一个有 caption 的定理.
\[
A \preccurlyeq C \land B \preccurlyeq D \implies A \times B \preccurlyeq C \times D
\]
Proof. 建立单射 \[
\begin{aligned}
\varphi: A \times B &\to C \times D \\
\langle x,y \rangle &\mapsto \langle f(x), g(y) \rangle
\end{aligned}
\] 即可,其中 \(f\) 和 \(g\) 是由 \(A \preccurlyeq C\) 和 \(B \preccurlyeq D\) 确定的单射.
Corollary 1 等势意义下可用等势的集合替换参与笛卡尔积运算的集合,即 \[
A \approx C \land B \approx D \implies A \times B \approx C \times D
\]
这是一个没有 caption 的定理.
Example 1 证明 \[
\mathbb R \times \mathbb N \approx \mathbb N \times \mathbb R \approx \mathbb R
\]
Proof. 利用 Theorem 1 对 \(\mathbb R \times 2\) 和 \(\mathbb R \times \mathbb R\) 夹逼,立刻得到 \[
\mathbb R \approx \mathbb R \times 2 \preccurlyeq \mathbb R \times \mathbb N \preccurlyeq \mathbb R \times \mathbb R \approx \mathbb R
\implies \mathbb R \times \mathbb N \approx \mathbb N \times \mathbb R \approx \mathbb R
\]
5 数据可视化
Quarto 的另一大卖点。
Code
import numpy as np
import matplotlib.pyplot as plt
r = np.arange(0, 2, 0.01)
theta = 2 * np.pi * r
fig, ax = plt.subplots(
subplot_kw = {'projection': 'polar'}
)
ax.plot(theta, r)
ax.set_rticks([0.5, 1, 1.5, 2])
ax.grid(True)
plt.show()
[1] 全国信息安全标准化技术委员会. 《信息安全技术远程人脸识别系统技术要求》(GB/T38671-2020)[Z]. https://std.samr.gov.cn/gb/search/gbDetailed?id=A47A713B767814ABE05397BE0A0ABB25, 2020.
[2] BLEDSOE W W. CHAN H. A man-machine facial recognition system—some preliminary results[J]. Panoramic Research, Inc, Palo Alto, California., Technical Report PRI A, 1965, 19: 1965.
[3] 余璀璨. 李慧斌. 基于深度学习的人脸识别方法综述[J]. 工程数学学报, 2021, 38(4): 19.
[4] TURK M. PENTLAND A. Eigenfaces for recognition[J]. Journal of Cognitive Neuroscience, 3(1): 71-86.
[5] LIU C. WECHSLER H. A gabor feature classifier for face recognition[C]//Proceedings eighth IEEE international conference on computer vision. ICCV 2001: Vol. 2. IEEE, 2001: 270-275.
[6] AHONEN T. HADID A. PIETIKÄINEN M. Face recognition with local binary patterns[C]//European conference on computer vision. Springer, 2004: 469-481.
[7] TAIGMAN Y. YANG M. RANZATO M. et al. Closing the gap to human-level performance in face verification. deepface[C]//Proceedings of the IEEE computer vision and pattern recognition (CVPR): Vol. 5. 6.
[8] 郭春镇. 数字人权时代人脸识别技术应用的治理[J]. 现代法学, 2020, 42(4): 18.