Graph
A graph consists of V, the set of vertices, and E, the set of edges in which each edge is associated with either one or two vertices of V. Edges are said to connect two vertices or endpoints.
Undirected Graphs
Simple graphs, multigraphs, and pseudo graphs are among the collection of graphs in which the order of the associated vertices in the pair representing an edge has no meaning. Thus, the edge associated with the vertices u and v can be represented by both ordered pairs (u, v) and (v, u).
Simple Graph
A graph in which each edge connects two, different vertices and no two edges connect the same pair of vertices.
Multigraphs
A graph in which a pair of vertices are connected by more than one edge. An edge of multiplicity, m, has m edges connecting the same pair of vertices.
Psuedo Graphs
A graph or multigraph that contains an edge connecting any vertex with itself. This type of edge is known as a loop
Directed Graphs
A directed graph or diagraph is a graph in which each edge is associated with an ordered pair of vertices. The directed edge or arch begins at the initial vertex, u and ends at a terminal vertex, v.
Simple Directed Graph
A directed graph in which the graph that contains no loops and no multiple directed edges. Since at most one edge is associated with an ordered pair, both directed edges (u, v) and (v, u) can exist in a simple directed graph.
Directed Multigraphs
A directed graph that has multiple directed edges from one vertex to a second. The m edges associated with the same ordered pair (u, v) derive (u, v) is an edge of multiplicity m
Mixed Graph
A graph that contains directed and undirected edges.
Ways to Describe Undirected Graphs
Adjacency and Incidence
Two vertices u and v in a Graph G are adjacent in G if u and v are endpoints of an edge e of G therefore e is incident with vertices u and v.
Degree
The degree is the number of edges incident to a given vertex. Each loop contributes twice to the degree. The degree is denoted:
Hand Shaking Theorem
The sum of the degrees of the vertices is twice the number of edges.
Even Number of Vertices of Odd Degree
The sum is even since it is 2m. Partition the set of vertices V into subsets and where the vertices are of even degree and the vertices are of odd degree respectively. Since the sum of even numbers is even and the sum is even the sum of odd numbers must be even as well. Therefore there must be an even number of odd degree vertices in order for the sum of odd degree vertices to be even.
Ways to Describe Directed Graphs
In-Degree
The in-degree of a vertex v is the number of edges with v as its terminal vertex.
Out-Degree
The out-degree of a vertex is the number of edges with v as its initial vertex.
Sum of Degrees of Vertices
For every endpoint that attributes to the in-degree there is an initial vertex to the edge attributing to an out-degree. Therefore both sums are equal to the number of edges.
Simple Graphs
Complete
Cycle
Wheel
n-cubes
Bipartite
A simple graph is bipartite if the set of vertices V can be partitioned into two disjoint sets and such that every edge in G connects two vertices in or two vertices in .
Bipartite Coloring
A simple graph is bipartite if and only if it is possible to assign one of two different colors to each vertex so that no two adjacent vertices are assigned the same color.
New From Old
Union
The union of two simple graphs returns a graph with vertex set and edge set
Subgraph
The subgraph of a graph is a graph , where and
Proper Subgraph
A subgraph is a proper subgraph if
Removing Edges
The resulting subgraph from removing an edge from a graph G has the same vertex set and its edge set is E - e.
Graph Invariants
Two graphs may have the same form if there is a one-to-one correspondence between their vertex sets that preserves the relationships, also known as the edges, between the vertices. In chemistry when two different molecules have the same chemical formula but different tertiary shapes they are isomorphic.
A chemical formula corresponds to the number of vertices, degree of vertices, and number of edges and the digraph representation corresponds to the tertiary structure of the molecule. Thus, if a one to one and onto function exists then the graphs and are isomorphic.
Isomorphism
The simple graphs and are isomorphic if there exists a one-to-one and onto function f from and with the property that and are adjacent in if and only if and are adjacent in , for all and in .
Graph Invariants
A property of a graph that is preserved in graph isomorphism is a graph invariant. The number of vertices, number of edges, and number of vertices of each degree are all properties that are preserved in isomorphism. However determining whether a graph is not isomorphic is not as clear of a procedure. When a graph does not preserve graph invariants then it is nonisomorphic
Self Complementary
A simple graph G is called self-complementary if and are isomorphic.