logo

Graphical Set Notation 📂Graph Theory

Graphical Set Notation

Definition 1

Let’s consider two graphs G1G_{1} and G2G_{2} and let V(G1)V(G2)=V(G_{1}) \cap V(G_{2}) = \emptyset.

  1. The union G=G1G2G = G_{1} \cup G_{2} of two graphs is a graph that has a vertex set V(G1)V(G2)V(G_{1}) \cup V(G_{2}) and an edge set E(G1)E(G2)E (G_{1}) \cup E ( G_{2} ).
  2. If graph HH cannot be represented as the union of other graphs, then HH is said to be connected; otherwise, it is disconnected.
  3. Each connected graph within a disconnected graph is called a component.
  4. Especially, if the graph becomes disconnected by the removal of edge bGb \in G, then bb is called a bridge.

Description

These definitions are similar to the way connectivity is defined in topology.

Although connectivity, as purely defined in graph theory, seems like an important topic, ironically, since disconnected components can be completely treated separately, it is enough to consider connected graphs only. It’s not that connectivity isn’t important, but usually, for research purposes, there’s no need to think about disconnected cases.

Connectivity becomes an important issue when dealing with analysis reflecting real data or applied network theory involving random networks. Whether a random network is surely a connected graph or not is a significant issue in various simulations. Consider a case where the connectivity of the network is not guaranteed. Isolated nodes are mostly ineffective in most mathematical models, and even without isolated nodes, a disaster may occur where only a part of the network is considered while the rest is discarded.

Theorem 2

Let’s assume that a simple graph GG has nn vertices. If GG has kk components, then the number of edges mm of GG satisfies the following. nkm(nk)(nk+1)/2 n-k \le m \le (n-k)(n-k+1)/2

Proof

Part 1. nkmn-k \le m

When GG is a null graph, n=kn=k and thus m=0m=0, so nk=00=m n-k = 0 \le 0 = m holds.

Assume that nkmn - k \ge m holds when GG has kk components. Let’s define the minimum number of edges required for GG to have kk components as m0m_{0}. Removing one edge will result in k+1k+1 components and m01m_{0}-1 edges. Therefore, n(k+1)m01n - (k + 1) \le m_{0} - 1, and by organizing, we obtain nkm0n - k \le m_{0}.

From these two facts, it follows by mathematical induction that nkmn-k \le m generally holds.


Part 2. m(nk)(nk+1)/2m \le (n-k)(n-k+1)/2

Suppose all components of GG are complete graphs. Then, there will be two complete graphs KiK_{i}, KjK_{j} with 1jin1 \le j \le i \le n. Changing these two graphs to Ki+1K_{i+1}, and Kj1K_{j-1} respectively, the total number of vertices remains unchanged, but the total number of edges changes as follows: [(i+1)ii(i1)]/2[j(j1)(j1)(j2)]/2=ij+1 \left[ (i+1)i - i(i-1) \right]/2 - \left[ j(j-1) - (j-1)(j-2) \right]/2 = i - j + 1 This is positive; hence, for mm to be maximized, GG must have one complete graph with (nk+1)(n-k+1) vertices and k1k-1 isolated vertices. Therefore, the number of edges of GG will be (nk)(n(k1))/2(n-k)(n-(k-1))/2, and we obtain the desired result.


  1. Wilson. (1970). Introduction to Graph Theory: p10. ↩︎

  2. Wilson. (1970). Introduction to Graph Theory: p27. ↩︎