James Munkres Topology: Sec 22 Example 1
Example 1 Let \(X\) be the subspace \([0,1]\cup[2,3]\) of \(\mathbb{R}\), and let \(Y\) be the subspace \([0,2]\) of \(\mathbb{R}\). The map \(p: X \rightarrow Y\) defined by
\[
p(x)=\begin{cases}
x & \text{for}\; x \in [0,1],\\
x-1 & \text{for}\; x \in [2,3]
\end{cases}
\]
is a closed map thus a quotient map, but not open.
Proof (a) \(p\) is surjective is obvious.
(b) Prove \(p\) is continuous.
\(p\) is a piecewise function comprised of two parts \(p_1 = x\) with \(x \in [0,1])\) and \(p_2=x-1\) with \(x\in[2,3]\). We extend the domains and ranges of \(p_1\) and \(p_2\) to \(\mathbb{R}\) and obtain two continuous functions \(\tilde{p}_1\) and \(\tilde{p}_2\). According to Theorem 18.2 (d) and (e), as the restrictions of \(\tilde{p}_1\) and \(\tilde{p}_2\), \(p_1\) and \(p_2\) are continuous. Because \(X\) comprises two disjoint parts \([0,1]\) and \([2,3]\), both of them are both open and closed in \(X\). By treating them as open sets, according to Theorem 18.2 (f) the local formulation of continuity, \(p\) is continuous. Or if we treat \([0,1]\) and \([2,3]\) as closed sets, according to Theorem 18.3 the pasting lemma, \(p\) is also continuous.
Comment To prove the continuity of a piecewise function, it is very cumbersome if we start the proof from the raw definition of continuity, which will involve lots of cases for discussion. The appropriate way is to use Theorem 18.2 and Theorem 18.3, especially extensions and restriction of function's domain and range.
(c) Prove \(p\) is a closed map, thus a quotient map.
It is obvious to see that \(\tilde{p}_1\) is an identity map and \(\tilde{p}_2\) is a merely a translation. Both of them are closed maps. For a closed set \(C\) in \(X\), there exists a closed set \(C'\) in \(\mathbb{R}\) such that \(C = C'\cap X\). The image of \(C\) under \(p\) is
\[
\begin{aligned}
p(C) &= p(C'\cap X) = p(C' \cap ([0,1] \cup [2,3])) \\
&= p\left( (C'\cap[0,1]) \cup (C'\cap[2,3]) \right) \\
&= p(C'\cap[0,1]) \cup p(C'\cap[2,3])
\end{aligned}.
\]
According to Theorem 17.2, both \(C'\cap[0,1]\) and \(C'\cap[2,3]\) are closed in \(\mathbb{R}\). Meanwhile, we have \(p(C'\cap[0,1])=\tilde{p}_1(C'\cap[0,1])\) and \(p(C'\cap[2,3])=\tilde{p}_2(C'\cap[2,3])\), both of which are closed in \(\mathbb{R}\) because \(\tilde{p}_1\) and \(\tilde{p}_2\) are closed maps. Because \(Y\) is closed in \(\mathbb{R}\), by applying Theorem 17.2 again, \(p(C'\cap[0,1]) \) and \(p(C'\cap[2,3])\) are closed in \(Y\), so is their union \(p(C)\). Hence, \(p\) is a closed map.
(d) Prove \(p\) is not an open map.
\([0,1]\) is open in \(X\) but \(p([0,1])=[0,1]\), which is closed in \(Y\). Therefore, \(p\) is not an open map.
James Munkres Topology: Sec 22 Example 1的更多相关文章
- James Munkres Topology: Sec 22 Exer 6
Exercise 22.6 Recall that \(\mathbb{R}_{K}\) denotes the real line in the \(K\)-topology. Let \(Y\) ...
- James Munkres Topology: Sec 22 Exer 3
Exercise 22.3 Let \(\pi_1: \mathbb{R} \times \mathbb{R} \rightarrow \mathbb{R}\) be projection on th ...
- James Munkres Topology: Sec 18 Exer 12
Theorem 18.4 in James Munkres “Topology” states that if a function \(f : A \rightarrow X \times Y\) ...
- James Munkres Topology: Sec 37 Exer 1
Exercise 1. Let \(X\) be a space. Let \(\mathcal{D}\) be a collection of subsets of \(X\) that is ma ...
- James Munkres Topology: Lemma 21.2 The sequence lemma
Lemma 21.2 (The sequence lemma) Let \(X\) be a topological space; let \(A \subset X\). If there is a ...
- James Munkres Topology: Theorem 20.3 and metric equivalence
Proof of Theorem 20.3 Theorem 20.3 The topologies on \(\mathbb{R}^n\) induced by the euclidean metri ...
- James Munkres Topology: Theorem 20.4
Theorem 20.4 The uniform topology on \(\mathbb{R}^J\) is finer than the product topology and coarser ...
- James Munkres Topology: Theorem 19.6
Theorem 19.6 Let \(f: A \rightarrow \prod_{\alpha \in J} X_{\alpha}\) be given by the equation \[ f( ...
- James Munkres Topology: Theorem 16.3
Theorem 16.3 If \(A\) is a subspace of \(X\) and \(B\) is a subspace of \(Y\), then the product topo ...
随机推荐
- Python爬虫之三
1)使用Scrapy,什么叫做Scrapy Scrapy,Python开发的一个快速.高层次的屏幕抓取和web抓取框架,用于抓取web站点并从页面中提取结构化的数据.Scrapy用途广泛,可以用于数据 ...
- Apache的安装与配置+PHP
https://blog.csdn.net/u012130971/article/details/79284937 文件夹名称不要有空格
- HIS(LIS、PACS、RIS、EMR)系统简介
HIS(LIS.PACS.RIS.EMR)系统简介 HIS:医院信息系统(Hospital Information System, HIS),利用电子计算机和通讯设备,为医院所属各部 门提供病人诊疗信 ...
- R语言入门(2)-数据对象
数据对象 创建向量相关的方法 R语言的向量用法非常像python, 就比如这个seq(0,10,2), 从0到10, 步长为2, 涉及到的元素作为向量里的内容进行创建. 这里的用法非常像Matlab, ...
- 解决beego1.12新版本没有log.info
去https://github.com/astaxie/beego/中,找到旧的版本下载其log.go 至本地beego目录中
- Arrays和String单元测试 20175301
要求 在IDEA中以TDD的方式对String类和Arrays类进行学习 一.String类相关方法的单元测试 1.ChatAt的测试 代码: import org.junit.Test; impor ...
- E. Vanya and Balloons Codeforces Round #355 (Div. 2)
http://codeforces.com/contest/677/problem/E 题意:有n*n矩形,每个格子有一个值(0.1.2.3),你可以在矩形里画一个十字(‘+’形或‘x’形),十字的四 ...
- 自相关系数 ACF与偏自相关系数PACF,拖尾和截尾
1.ACF y(t,s)=E(Xt-µt)(Xs-µs) 定义ρ(t,s)为时间序列的自相关系数,为ACF ρ(t,s)=y(t,s)/sqrt(DXt * DXs) E为期望,D为方差 2.PACF ...
- thinkphp5+vue+iview商城 公众号+小程序更新版本
thinkphp5+vue+iview商城加分销 源码下载地址:http://github.crmeb.net/u/crmeb 演示站后台:http://demo25.crmeb.net 账号:dem ...
- 关于JS数组的栈和队列操作
1.js支持重载吗? 虽然js 本身并没有函数重载,但是可以用arguments来模拟重载,函数名相同,参数不同,arguments的length属性,获取参数个数,索引属性获取参数值 2.什么是作用 ...