Discrete definitions Flashcards
Vertice
Point on a graph
Node
Point on a graph
Edge
Line on a graph
Arc
Line on a graph
Degree
How many edges/arcs connected to vertice/node
Order
How many edges/arcs connected to vertice/node
Valency
How many edges/arcs connected to vertice/node
Isomorphic
Graphs with same vertices and edges
Network
Graph with weights (values) on the edges
Walk
Sequence of edges where end vertex of one edge is the start vertex of the next
Trail
Walk (sequence of edges that just follow onto each other) where none of the edges are repeated
Path
Trail (sequence of edges where no edges are repeated) where none of the vertices are repeated
Cycle
Closed (end joins the beginning) path (sequence of edges where no edges and no vertices are repeated)
Same cycle has same edges, can be forwards backwards order, start from different vertex doesn’t matter still same cycle as long as edges are the same
Circuit
Closed (end joins the beginning) path (sequence of edges where no edges and no vertices are repeated)
Same cycle has same edges, can be forwards backwards order, start from different vertex doesn’t matter still same cycle as long as edges are the same
Simple graph
Graph with no loops, at most one edge connecting any pair of vertices
Connected vertices
vertices with a path (sequence of edges where no vertices or edges are repeated) between them
Connected graph
Graph where all pairs of vertices are connected (have a sequence of edges with no repeated vertices or edges in between them)
Tree
Connected graph (graph where all pairs of vertices can be joined by a sequence of edges with no repeated vertices or edges) with no cycles (sequence of edges with no repeated vertices or edges, where the end joins the beginning) Planar (can be drawn so that no arcs cross)
Complete graph
Every pair of vertices is connected by a single edge, so all the vertices are connected to each other never planar (never can be drawn so that no arcs cross)
Planar graph
One that can be drawn so that none of the arcs cross
Hamiltonian cycle
Cycle (sequence of edges with no repeated edges or vertices whose end meets the beginning) that visits all the vertices of the graph. Visits each vertex exactly once then returns to start vertex.