]> mj.ucw.cz Git - saga.git/blob - notation.tex
Lower bound.
[saga.git] / notation.tex
1 \ifx\endpart\undefined
2 \input macros.tex
3 \fi
4
5 \chapter{Notation}
6
7 {\obeylines\parskip=0pt
8 \def\n#1#2{\>\hbox to 6em{#1 \dotfill} #2}
9 \def\[#1]{[\thmref{#1}]}
10 \n{$T[x,y]$}{the path in a tree~$T$ joining $x$ and $y$ \[heavy]}
11 \n{$T[e]$}{the path in a tree~$T$ joining the endpoints of an~edge~$e$ \[heavy]}
12 \n{$A\symdiff B$}{symetric difference of sets: $(A\setminus B) \cup (B\setminus A)$}
13 \n{$G-e$}{graph $G$ with edge $e$ removed}
14 \n{$G+e$}{graph $G$ with edge $e$ added}
15 \n{$w(e)$}{weight of an edge $e$}
16 \n{$V(G)$}{set of vertices of a graph~$G$}
17 \n{$E(G)$}{set of edges of a graph~$G$}
18 \n{$n(G)$}{number of vertices of a graph~$G$, that is $\vert V(G)\vert$}
19 \n{$m(G)$}{number of edges of a graph~$G$, that is $\vert E(G)\vert$}
20 \n{$V,E,n,m$}{when used without $(G)$, they refer to the input of the current algorithm}
21 \n{MST}{minimum spanning tree \[mstdef]}
22 \n{MSF}{minimum spanning forest \[mstdef]}
23 \n{\mst(G)}{the unique minimum spanning tree of a graph~$G$ \[mstnota]}
24 \n{$X \choose k$}{a set of $k$-element subsets of a set~$X$}
25 \n{$G/e$}{multigraph contraction \[contract]}
26 \n{$G.e$}{simple graph contraction \[simpcont]}
27 \n{$\alpha(n)$}{the inverse Ackermann's function}
28 \n{$f[X]$}{function applied to a set: $f[X]:=\{ f(x) ; x\in X \}$.}
29 }
30
31 \section{Multigraphs and contractions}
32
33 Since the formalism of multigraphs is not fixed in the literature, we will
34 better define it carefully, following \cite{diestel:gt}:
35
36 \defn A~\df{multigraph} is an ordered triple $(V,E,M)$, where $V$~is the
37 set of vertices, $E$~is the set of edges, taken as abstract objects disjoint
38 with the vertices, and $M$ is a mapping $E\mapsto V \cup {V \choose 2}$
39 which assigns to each edge either a pair of vertices or a single vertex
40 (if the edge is a loop).
41
42 \proclaim{Notation}%
43 When the meaning is clear from the context, we use our notation originally
44 defined for graphs even for multigraphs. For example, $xy\in E(G)$ becomes a
45 shorthand for $\exists e\in E(G)$ such that $M(G)(e) = \{x,y\}$. Also, we
46 consider multigraphs with no multiple edges nor loops and simple graphs to be
47 the same objects, although they formally differ.
48
49 \defn\thmid{contract}%
50 Let $G=(V,E,M)$ be a multigraph and $e=xy$ its edge. \df{(Multigraph) contraction of~$G$ along~$e$}
51 produces a multigraph $G/e=(V',E',M')$ such that:
52 $$\eqalign{
53 V' &= (V(G) \setminus \{x,y\}) \cup \{v_e\},\quad\hbox{where $v_e$ is a new vertex,}\cr
54 E' &= E(G) - \{e\},\cr
55 M'(f) &= \{ m(v) ; v\in M(f) \} \quad\hbox{for every $f=\in E'$, and}\cr
56 m(x) &= \cases{v_e & \hbox{for $v=x,y,$}\cr v & \hbox{otherwise.}} \cr
57 }$$
58
59 Sometimes we need contraction for simple graphs as well. It corresponds to performing
60 the multigraph contraction, unifying parallel edges and deleting loops.
61
62 \defn\thmid{simpcont}%
63 Let $G=(V,E)$ a simple graph and $e=xy$ its edge. \df{(Simple graph) contraction of~$G$ along~$e$}
64 produces a graph $G.e=(V',E')$ such that:
65 $$\eqalign{
66 V' &= (V(G) \setminus \{x,y\}) \cup \{v_e\},\quad\hbox{where $v_e$ is a new vertex,}\cr
67 E' &= \{ \{m(x),m(y)\} ; xy\in E \land m(x)\ne m(y) \},\cr
68 m(x) &= \cases{v_e & \hbox{for $v=x,y,$}\cr v & \hbox{otherwise.}} \cr
69 }$$
70
71 \endpart