Definitions Flashcards

1
Q

What is the distance, dist_G(u,v), between two vertices u and v in graph G?

A

The length of the shortest uv-path

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the eccentricity, ecc(v) of a vertex v in a graph G?

A

The maximum distance between v and any vertex of G:= max{dist(u,v): u in V(G)}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the diameterof G, diam(G)?

A

The maximum eccentricity in G:= max{ecc(v): v in V(G)}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is the radius of G, rad(G)?

A

The minimum eccentricity in G:= min{ecc(v): v in V(G)}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

If G is disconnected then what is the eccentricity of any vertex?

A

Infinity

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is the centre, C(G), of a connected graph G?

A

The subgraph induced by the set of vertices in G with minimum eccentricity

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is a breadth first spanning tree?

A

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)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

In a weighted graph what is the length of a path?

A

The sum of the weights on the edges on the path.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is the shortest path in a weighted graph?

A

dist(u,v)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is a bipartition of a graph G?

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

In Menger’s theorem what is an AB-path in the graph G?

A

For sets A,B in V(G) and AB-path has one endpoint in A and the other endpoint in B.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

In Menger’s theorem what is an AB-separator?

A

The set S in V(G) is an AB-separator if every AB-path includes a vertex in S.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

In Menger’s theorem what is s(G,A,B)?

A

The minimum number of vertices in an AB-separator. It is also the upper limit for the number of pairwise disjoint AB-paths.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is a cut vertex, v, in graph G?

A

v is a cut vertex if G-v has more components than G

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is a vertex cutset in graph G?

A

A set X in V(G) such that G-X is disconnected.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What does it mean for a graph G to be k-connected?

A

G must have more than k vertices and every cutset has size at least k.

17
Q

What is the connectivity, kappa(G), of a graph G?

A

The maximum k such that G is k-connected. Alternatively it is the smallest set of vertices that leave G disconnected.

18
Q

What is an edge cutset of graph G?

A

A subset U of E(G) such that G-U is disconnected.

19
Q

What does it mean for a graph G to be edge k-connected?

A

|V(G)| >= 2 and every edge cutset has size at least k.

20
Q

What is the edge-connectivity of a graph G, lamba(G)?

A

The maximum k such that G is edge k-connected. Alternatively it is the minimum size of an edge cutset.

21
Q

When are two paths in a graph G edge-disjoint?

A

If they have no edges in common

22
Q

In Menger’s theorem what is t(G,x,y)?

A

The minimum number of edges whose deletion destroys all xy-paths in G.

23
Q

What is a digraph?

A

A graph with edges given direction

24
Q

What is the set A(G) in a digraph G?

A

The set of ordered pairs of vertices called arcs consisting of a tail, u, and a head, v, denoted by (u,v) or simply uv.