$G = (V, E)$
$V = \{v_1, v_2, v_3, v_4, v_5, v_6, v_7, v_8, v_9, v_{10}, v_{11}\}$
$E = \{(v_1, v_2), (v_2, v_3), (v_2, v_6), (v_3, v_7) \cdots\}$
$|V| = 11$
$|E| = 11$
A $x-y$ walk is a finite sequence $$ (x, x_1), (x_1, x_2), \cdots, (x_n, y) $$
$x-y$ trail is a walk with no repeated edge.
$x-y$ path is a walk with no repeated vertex.
$x-x$ path is a cycle.
$x-x$ trail is a circuit.
Degree of a vertex is the number of edges connected to the vertex.
$deg(v_1) = 5$
A graph in which each vertex has the same degree.
A graph in which each pair of vertcies is connected by a edge.
A graph without self-loop or multiple edge.
A graph with multiple edges.
A non-simple graph in which both self loops and multiple edges are permitted.
Allow an edge connected to multiple vertcies.
$$E = \{(v_1, v_2, v_3), (v_2, v_3), (v_3, v_5, v_6), (v_4)\}$$