|
part (a)
本帖最后由 hbghlyj 于 2023-3-4 21:03 编辑 If Klein bottle is cut along the dashed curve $C$
(it is closed curve because 4 corners are identified)
size(4cm);
pair A = (0,0);
pair B = (1,0);
pair C = (1,1);
pair D = (0,1);
currentpen=blue;
fill(box(A,C),lightgray);
draw(A--B,MidArrow);
draw(C--D,MidArrow);
currentpen=red;
draw(C--B,MidArrow);
draw(D--A,MidArrow);
draw(arc((0.5,1),0.5,180,360),dashed);
$K\setminus C$ has 1 component: size(4cm);
pair A = (0,0);
pair B = (1,0);
pair C = (1,1);
pair D = (0,1);
path bigarc=arc((0.5,1),0.5,180,360);
path smallarc=shift(0,1)*yscale(.5)*arc((0.5,0),0.5,180,360);
fill(A--B--reverse(bigarc)--smallarc--D--cycle,evenodd+lightgray);
currentpen=blue;
draw(A--B,MidArrow);
draw(C--D,MidArrow);
currentpen=red;
draw(C--B,MidArrow);
draw(D--A,MidArrow);
draw(bigarc);
draw(smallarc);size(4cm);pair A = (0,0);pair B = (1,0);pair C = (1,1);pair D = (0,1);path arc=arc((0.5,1),0.5,180,360);fill(arc--B--A--cycle,evenodd+lightgray);draw(A--B,blue,MidArrow);draw(C--B,red,MidArrow);draw(D--A,red,MidArrow);draw(arc);path upper=shift(0,.2)*arc;fill(upper--cycle,evenodd+lightgray);draw(upper);draw(shift(0,.2)*(C--D),blue,MidArrow);
We can rotate the upper part 180° and stick to the lower (as points are identified, this gives the same space):
size(4cm);pair A = (0,0);pair B = (1,0);pair C = (1,1);pair D = (0,1);path upper=arc((0.5,1),0.5,180,360);path lower=shift(0,-1)*upper;fill(reverse(lower)--upper--cycle,evenodd+lightgray);draw(C--B,red,MidArrow);draw(D--A,red,MidArrow);draw(upper);draw(lower);
This is homeomorphic to an open annulus $S^1×(0,1)$. |
|