Isomorphic graphs are a pair of graphs that, although they might look different due to their structures or vertex arrangements, share the same connectivity. In simpler terms, an isomorphism between two graphs exists if there is a one-to-one correspondence between their vertex sets and this mapping conserves the adjacency of vertices.
- Bijection: The concept of a bijection is essential here. It is a function that pairs each element of one set with exactly one element of another set, and vice versa.
- Preserving adjacency: This means that two vertices connected by an edge in one graph remain connected post-mapping in the other.
An example of isomorphic digraphs would be two digraphs each containing two vertices, where in one graph there is a directed edge from vertex A to B, and in the other, a directed edge from C to D. They are isomorphic if vertices A and C, and B and D are mutually mapped while preserving the directional relationship.