|
Topology
Definition 4.2. The standard $n$-simplex[标准单纯形] is the set
$$
\Delta^n=\left\{\left(x_1, \ldots, x_{n+1}\right) \in \mathbb{R}^{n+1}: x_i \geq 0 \forall i \text { and } \sum_i x_i=1\right\} .
$$
The non-negative integer $n$ is the dimension of this simplex. Its vertices, denoted $V\left(\Delta^n\right)$, are those points $\left(x_1, \ldots, x_{n+1}\right)$ in $\Delta^n$ where $x_i=1$ for some $i$ (and hence $x_j=0$ for all $j \neq i$ ). For each non-empty subset $A$ of $\{1, \ldots, n+1\}$ there is a corresponding face of $\Delta^n$, which is
$$
\left\{\left(x_1, \ldots, x_{n+1}\right) \in \Delta^n: x_i=0 \forall i \notin A\right\} .
$$
Note that $\Delta^n$ is a face of itself (setting $A=\{1, \ldots, n+1\}$ ). The inside of $\Delta^n$ is
$$
\operatorname{inside}\left(\Delta^n\right)=\left\{\left(x_1, \ldots, x_{n+1}\right) \in \Delta^n: x_i>0 \forall i\right\}
$$
Note that the inside of $\Delta^0$ is $\Delta^0$.
$\Delta^0$ | $\Delta^1$ | $\Delta^2$ | $\Delta^3$ | --(1.4,0);%0D%0A%5Cdraw%5Bfill=white%5D%20(0,0)%20circle%20(1pt);%0D%0A%5Cfill%5Bblack%5D%20(1,0)%20circle%20(1pt)node%5Bbelow%5D%7B1%7D;%0D%0A%5Cend%7Btikzpicture%7D) | --(1.4,0);%5Cdraw%5B-latex%5D(0,-.2)--(0,1.4);%0D%0A%20%20%5Cdraw%5Bvery%20thick%5D%20(0,1)node%5Bleft%5D%7B1%7D%20--%20(1,0)node%5Bbelow%5D%7B1%7D;%5Cdraw%5Bfill=white%5D%20(0,0)%20circle%20(1pt);%0D%0A%20%20%5Cfill%20(0,1)%20circle%20(1pt);%0D%0A%20%20%5Cfill%20(1,0)%20circle%20(1pt);%0D%0A%5Cend%7Btikzpicture%7D) | import three;import graph3;
unitsize(4cm);settings.render=2;
triple A, B, C;
currentprojection=perspective(1,2,1);
A = (1,0,0);
B = (0,1,0);
C = (0,0,1);
draw(surface(A--B--C--cycle),lightyellow+opacity(.8),nolight);
draw(A--B--C--cycle);
label("$A$", A, -Y);
label("$B$", B, -X);
label("$C$", C, -X-Y);
xaxis3(Label("$x$",EndPoint),Arrow3(),xmax=1.4);
yaxis3(Label("$y$",EndPoint),Arrow3(),ymax=1.4);
zaxis3(Label("$z$",EndPoint),Arrow3(),zmax=1.4);
import three;import graph3;
unitsize(4cm);settings.render=2;
triple A, B, C;
currentprojection=perspective(-1,2,1);
A = (1,0,0);
B = (0,1,0);
C = (0,0,1);
draw(surface(A--B--C--cycle),lightyellow+opacity(.8),nolight);
draw(A--B--C--cycle);
label("$A$", A, W);
label("$B$", B, E);
label("$C$", C, N);
xaxis3(Label("$x$",EndPoint),Arrow3(),xmax=1.4);
yaxis3(Label("$y$",EndPoint),Arrow3(),ymax=1.4);
zaxis3(Label("$z$",EndPoint),Arrow3(),zmax=1.4);
%20--%20(1,0)%20--%20(0.5,0.87)%20--%20cycle;%0D%0A%20%20%5Cfill%20(0,0)%20circle%20(1pt);%0D%0A%20%20%5Cfill%20(1,0)%20circle%20(1pt);%0D%0A%20%20%5Cfill%20(0.5,0.87)%20circle%20(1pt);%0D%0A%5Cend%7Btikzpicture%7D) | import three;
unitsize(4cm);settings.render=2;
triple A, B, C, D;
currentprojection=perspective(0,-5,3);
A = (1,0,1);
B = (0,1,1);
C = (0,0,0);
D = (1,1,0);
draw(A--B--C--cycle);
draw(A--D);
draw(B--D);
draw(C--D);
label("$A$", A, E);
label("$B$", B, NW);
label("$C$", C, SE);
label("$D$", D, S);
draw(surface(A--B--C--cycle),opacity(.4)+lightmagenta);
draw(surface(A--D--B--cycle),opacity(.4)+lightmagenta);
draw(surface(D--C--B--cycle),opacity(.4)+lightmagenta);
draw(surface(A--C--D--cycle),opacity(.4)+lightmagenta); |
|
|