Graph subdivision
A subdivision of a graph is created by adding new vertices along the existing edges of the graph.
This basically breaks the original edges into smaller segments, joined by the new vertices.
We cannot add any edges, or any vertices that are not on existing edges. We can only add vertices such that they split up existing edges.
Example
Section titled “Example”Consider this graph:
A ----- B \ / \ / CA subdivision of this graph could be:
A - D - B \ / \ / CAs you can see, we added a new vertex D along the edge between A and B, splitting what was one edge (A-B) into two edges (A-D and D-B).