Modelling With Graphs Flashcards
Nodes/Vertices
Points on a graph, usually connected by arcs or edges
Arcs/Edges
Lines that connect nodes
What is a Network
A weighted graph - where the edges of a graph have a corresponding value (weights)
What is a simple graph
A graph in which there are no loops and each pair of vertices is connected by at MOST one arc (can be not connected)
Directed graph
A graph in which at least one of the arcs has a direction associated with it
Degree/Order/Valency
The number of arcs incident to a vertex
Walk
Route through a graph along edges from one node to the next
Path
A walk where no node is visited more than once
Trail
Walk where no edge is visited more than once
Cycle
Walk where start and end vertex are the same, no other node is visited more than once
Hamiltonian cycle
Cycle where every node is visited
Connected Graph
A graph where every vertex is connected by a walk
The handshake lemma
In an undirected graph:
Sum of valences = 2(#edges)
Therefore the number of odd vertices must be even
Tree
Connected graph with no cycles
Spanning Tree
Sub Graph which includes every node and is also a tree