Definitions Flashcards
What is the distance, dist_G(u,v), between two vertices u and v in graph G?
The length of the shortest uv-path
What is the eccentricity, ecc(v) of a vertex v in a graph G?
The maximum distance between v and any vertex of G:= max{dist(u,v): u in V(G)}
What is the diameterof G, diam(G)?
The maximum eccentricity in G:= max{ecc(v): v in V(G)}
What is the radius of G, rad(G)?
The minimum eccentricity in G:= min{ecc(v): v in V(G)}
If G is disconnected then what is the eccentricity of any vertex?
Infinity
What is the centre, C(G), of a connected graph G?
The subgraph induced by the set of vertices in G with minimum eccentricity
What is a breadth first spanning tree?
If T is a spanning tree of a connected graph G, then for every pair of vertices v, r, dist_T(v,r) = dist_G(v,r)
In a weighted graph what is the length of a path?
The sum of the weights on the edges on the path.
What is the shortest path in a weighted graph?
dist(u,v)
What is a bipartition of a graph G?
If the vertex set can be partitioned into two subsets A and B such that every edge connects a vertex from one set to a vertex in the other and no edges connect vertices in the same set. Then {A,B} is the bipartition of G.
In Menger’s theorem what is an AB-path in the graph G?
For sets A,B in V(G) and AB-path has one endpoint in A and the other endpoint in B.
In Menger’s theorem what is an AB-separator?
The set S in V(G) is an AB-separator if every AB-path includes a vertex in S.
In Menger’s theorem what is s(G,A,B)?
The minimum number of vertices in an AB-separator. It is also the upper limit for the number of pairwise disjoint AB-paths.
What is a cut vertex, v, in graph G?
v is a cut vertex if G-v has more components than G
What is a vertex cutset in graph G?
A set X in V(G) such that G-X is disconnected.