The adjacency structure of a graph details how its vertices are connected by edges. Understanding adjacency structures is fundamental when assessing graph isomorphism, as it involves more than just comparing vertex and edge counts.
For two graphs to be isomorphic, their adjacency matrices must be rearrangeable into each other by permuting rows and columns. This means that corresponding vertices must share the same neighbors.
Let's say in one graph, vertex X is connected to vertex Y and Z, and in the second graph, if vertex A is mapped to X, then A must also be connected to the vertices mapped to Y and Z.
- Preserves connectivity: Maps every connection from graph G to graph H.
- Maintains integrity: Ensures that even the complex inner connections remain unchanged.
The structure formed by these connections is crucial for determining whether two graphs are just different representations of the same entity, i.e., are isomorphic.