Every vertex of one group is connected to every vertex of the other group
multiple edge
(more than one edge linking the two same vertices)
Planar graph
•Planar graphs are graphs that can be drawn with no edges crossing over
Edge
connection between two vertices
vertex
point or endpoint
Euler's rule
V+F-E=2
Degree of vertex the number of edges that meet at that vertex, with loops counted twice
Arc
an edge that has direction (also called a directed edge)
Traversability
the ability to go over/ trace over every edge just once
Weighted graph
A graph in which numericalvalues are assigned to edges
Simple graph
a graph with no loops or multiple edges
Bridge: an edge which if removed, creates a disconnected graph
Tree
A network in which every edge is a bridge.
Features include:
thenumberof edges= numberofvertices-1
Always planar
Two vertices are connected by 1edge
1 face
Complete graph
A graph in which all vertices are connectedbyonly1 edge
Number of edges in Kn
n(n−1)/2
where n= numberofvertices
Subgraph
a section of a larger graph with no additional edges or vertices
Bipartite graph
A graph which is split into two distinct groups which are connected across the graph. Each vertex of the same group is not connected
Digraph
•Digraph (directed graph): a graph containing edges with an indicated direction. Directed edges are commonly known as arcs and are shown with an arrow.
In degree
Featured in digraphs. Is the number of arcs ending at vertex
Out-degree
Featured in digraphs. Is the number of arcs starting at a vertex
Steps for finding shortest path via trial and error
1.Namevertices
2.Startgoing through eachpathcombination, listing the path you travelled and the distance/time
Finding the shortest path (bubble method)
1.Circle each vertex
2.Label edges with total distance from starting vertex
3.Label the shortest path distance in the centre of your circle