A regular graph is a type of graph where every vertex has the same number of neighbors; this number is called the degree of the vertices. When a graph is labeled as \(r\)-regular, it indicates that each vertex in the graph has a degree \(r\).
Regular graphs are a significant concept in graph theory because they exhibit symmetrical properties. These properties allow for straightforward computation of graph characteristics, such as the number of edges.
- In an \(n\)-vertex \(r\)-regular graph, each vertex connects to exactly \(r\) other vertices.
- To find the total number of edges in such a graph, you calculate \(E = \frac{n \cdot r}{2}\). This formula ensures you don't double-count the connections between vertices.
Understanding regular graphs is fundamental before exploring more complex ones like the Petersen graph and \(k\)-cubes.