Definition

The degree of a vertex denoted as is the number of edges that is incident on.

graph LR;
	A((A)) o--o B((B));
	A((A)) o--o C((C));

Here, and .

Definition: regular

A Graph is regular if all vertices have degree . We can also say that that is just regular.

For example:

flowchart
	A((A))
	B((B))
	C((C))

is regular,

graph LR; 
	A((A)) x--x B((B));
	B((B)) x--x C((C));
	C((C)) x--x D((D));
	D((D)) x--x A((A));

is regular,

graph 
	A((A)) x--x B((B));
	C((C)) x--x D((D));
	E((E)) x--x F((F));	

is regular.

Limitations

Some graphs you cannot draw. For example, there is no regular graph with vertices.

Definition (Minimum Degree of a Graph)

Let

denote the minimum degree of any vertex for Graph .

Definition (Maximum Degree of a Graph)

Let

denote the maximum degree of any vertex in graph .

Lemma (Big Delta Less Than 3)

  • For , then or any connected component is at most Complete Graph .
  • For , then we must have a Path graph or a cycle.