Subgraph
Definition 1
For a given graph , graph is said to be a subgraph of if it satisfies and .
Explanation
It is important not to denote being a subgraph of as . The concept of a subgraph serves not so much as a focus of interest in graph theory itself but rather as a natural and common term.
Examples
By defining a subgraph, the following can be considered as examples:
Component
The components of a disconnected graph are all subgraphs of .
Graph Subtraction
Given graph :
- For edge: , is defined as the graph with the edge of removed, and naturally, it becomes a subgraph of . This operation of graph subtraction can also be extended to sets of edges. is defined as the graph with the subset of edges of removed, and likewise, it becomes a subgraph of .
- For vertex: , is defined as the graph with the vertex of and all edges attached to removed. This can also be extended to sets of vertices. is defined as the graph with the subset of vertices of and all their attached edges removed, and naturally, it becomes a subgraph of .
- Graph contraction: Note the symbol in the two subtraction operations mentioned above. The set subtraction symbol is used to mean the contraction of an edge in a graph. Contracting an edge means removing the edge and treating the two endpoints and as the same.
Such operations of graph subtraction are very convenient tools when discussing algorithms for constructing graphs, etc.
Spanning
If subgraph of satisfies , is referred to as Spanning of . Simply put, it’s a subgraph where vertices remain as is, but only edges might have been removed. It falls under the case of edge removal in graph subtraction.
Induced Graph
If subgraph of satisfies , it is called an Induced Graph. An induced graph, unlike spanning which may have edges removed without a specific rule and thus only vertices preserved, ensures that if vertices are preserved, their connecting edges are preserved as well. Consequently, it can be inferred that the induced graph inherits some properties of the original graph .
Wilson. (1970). Introduction to Graph Theory: p12. ↩︎