Ryerson Crest Ryerson Header

MTH 607 Graph Theory Lab 6 Solutions

We will work on these questions in the lab. These questions will refer to the following graphs:
G1 G2 X3

    1. For G1 find [ {2, 4}, {1, 3, 5} ].

      { 23, 45 }

    2. For G2 find [ {b, c, e}, {a, d, f} ].

      ab, ac, ae, bd, bf, cd, cf

    3. For Q3 find [ {000, 011}, comp({000, 011}) ], where comp(S) is the complement of S.

      000 001, 000 010, 000 100, 011 010, 011 001, 011 111.

  1. For each of the graphs above find the following:
    1. A vertex cut set of size 2, or explain why no such exists.

      G1: { 2, 5 }

      G2: { b, c }

      Q3: There is no cut set of size 2 as the graph is 3-connected.

    2. An edge cut set of size 2, or explain why no such exists.

      G1: { 35, 45 }

      G2: { bd, cd }

      Q3: There is no edge cut set of size 2 as the graph is 3-edge connected.

    3. The vertex connectivity K(G).

      K(G1) = 1 as 5 is an articulation point.

      K(G2) = 2 { b, c } is a cut set, but every point lies on a cycle.

      K(Q3) = 3 As noted there is no 2 cut set, but { 000, 011, 101 } is a cut set.

    4. The edge connectivity K'(G).

      K'(G1) = 1, as 15 is a cut edge.

      K'(G2) = 2, { db, dc } is a cut set, but every point lies on a cycle.

      K'(Q3) = 3, As noted there is no 2 edge cut set, but { 000 001, 000 010, 000 100 } is a cut set.

  2. Find the vertex and edge connectivity of the Peterson Graph.

    3 in each case.
    Note that since the Peterson graph is 3-regular we know that the vertex and edge connectivity are the same.
    Since the minimum degree δ = 3, we know that they are at most three.
    Use the symmetry of the graph to argue that no 2-edge cut can disconnect the graph.

  3. Find graphs G which satisfy each of the following:
    1. K(G) = K'(G) = δ(G)

      Kn, Km,n, Pn, Cn, peterson.

    2. K(G) = K'(G) < δ(G)

    3. K(G) < K'(G) = δ(G)

    4. K(G) < K'(G) < δ(G)

  4. Let T be a tree:

    1. Use the fact that there is a unique path between any pair of vertices in a tree to show that if v is an internal vertex of T then T - v is not connected.

      By the definition of internal d(v) > 1, so v has at least two neighbors in T, u1 and u2 say.
      But since T is a tree there is a unique path from u1 to u2, which must be { u1, v, u2 }
      Now T - v has no u1 u2--path, and so is disconnected.

    2. Show that if v is a leaf in T then T - v is connected.

      Let T be a tree and v a leaf of T.
      By the definition of leaf d(v) = 1, so v has exactly one neighbor, u say.
      Let x and y be any pair of vertices in T - v.
      Since T is a tree there is a unique xy--path in T, P say.
      The degree of an internal vertex of a path must be at least 2, but the degree of v is one, so v does not appear as an internal vertex of P.
      Thus P only contains vertices in T - v and so connects x and y in T - v.

  5. Let G be a connected graph with at least three vertices. Form G' from G by adding an edge between every pair of vertices which are distance 2 apart in G. Show that G' formed in this way is 2-connected.

    Let G be a connected graph with at least three vertices.
    Let G' be formed from G by adding an edge between every pair of vertices which are distance 2 apart in G.
    Clearly any cut vertex of G' is also a cut vertex of G since we have only added edges.
    Suppose u is a cut vertex of G and let x and y be in different components of G - u.
    Since G is connected there must be an paths from x to u and v to w where v and w are neighbors of u.
    But since v and w are both neighbors of u they are distance 2 apart in G and so have an edge between them in G'.
    Thus there is an xy-path in G - u.