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

\delta(G) = \min_{v \in V} \deg(v) $$ denote the minimum degree of any vertex $v \in V$ for [[Graph]] $G$.