Topologist's Sine Curves and Metric Spaces
Definition 1
- The curve defined as follows is called the Topologist’s Sine Curve.
- The space defined as follows is called the Topologist’s Comb Space.
Explanation
It is better to remember these spaces by their pictures rather than the mathematical expressions. As their names suggest, they exhibit interesting properties in topology and are useful as counterexamples for various propositions.
Sine Curve
- [1]: is connected but neither path-connected nor locally connected.
One might think that drawing the sine curve from to would inevitably touch the axis. However, as one gets closer, the trajectory becomes increasingly erratic near , making it impossible to find a path that directly connects them.
Comb Space
- [2]: is path-connected but not locally connected.
The comb space is connected through segments on the axis but cannot become locally connected in any open space along the axis.
Code
Additionally, here is the R code used for drawing the figures in this post.
win.graph(7,3.5)
par(mfrow=c(1,2))
X = seq(0.0001,2,0.0001)
plot(X,sin(1/X),ylim=c(-1,1),type='l',xlim=c(0,1),main='(1) 위상수학자의 사인 곡선',xlab=NA,ylab=NA)
segments(0,0,0,1)
plot(NA,ylim=c(0,1),type='l',xlim=c(0,1),main='(2) 위상수학자의 빗 공간',xlab=NA,ylab=NA)
segments(0,0,1,0)
segments(0,0,0,1)
segments(1/1:1000,0,1/1:1000,1)
Munkres. (2000). Topology(2nd Edition): p157. ↩︎