Graphs
This section covers the definition of a graph, and common families of graphs.
Definition
A graph is a set of points called vertices connected by edges.
An edge is said to join its endpoints. Say an edge e connects two vertices u and v. u is said to be adjacent and a neighbor of v.
There are many instances in graph theory where our graphs are both loopless and devoid of multi-edges. In these cases we call the graph simple. If our graph is empty, we call it a null graph. If our graph contains one vertex and no edges, the graph is trivial.
Alternate definition
A more rigourous definition of a graph G will include an incidence function \psi_G that connects vertices to edges.
An edge e is said to join its endpoints u,v if \psi_G(e) = \{u,v\}.
Common Families of Graphs
Complete Graphs
(Insert picture of graphs K1 through K5)
Bipartite Graphs
(Insert picture of a few bipartite graphs)
(Example of a complete bipartite graph)
Regular Graphs
To look at regular graphs, we first have to establish the degree of a vertex.