logo

Graph Homomorphism 📂Graph Theory

Graph Homomorphism

Definition 1

Given two graphs G1G_{1} and G2G_{2}, if there exists a graph isomorphism between some subdivision G1G_{1} ' of G1G_{1} and some subdivision G2G_{2} ' of G2G_{2}, then G1G_{1} and G2G_{2} are said to be homeomorphic.


  • A graph GG with vertices ww added in succession that satisfy the following condition is called the subdivision GG' of GG. uGv    {uGvuGwwGvdegw=2 \begin{align*} u \sim_{G} v & \implies \begin{cases} u \nsim_{G'} v \\ u \sim_{G'} w \\ w \sim_{G'} v \\ \deg w = 2 \end{cases} \end{align*}
  • xAyx \sim_{A} y infers that two vertices x,yx,y in graph AA are adjacent.

Explanation

Simply put, it refers to the graph with ww added between edges that were connected in the original graph. The following image makes it easier to understand.

20200405\_231137.png The two graphs on the right show two examples of subdivisions of the graph GG given on the left. The added vertex does not necessarily have to be one and can be inserted into the same edge simultaneously.

Here is an example of two homeomorphic graphs.

20200405\_231148.png Looking at such subdivisions, it can be confirmed that the straight-through connection in the original graph remains unchanged whether or not vertices are added. Using this concept, it can be said that the following two graphs are essentially the same. Graph homeomorphism deals with spatial sameness, unlike graph isomorphism, which is about exact structural identity. The term itself also comes from homeomorphism in topology.

See Also


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