Graph Theory Flashcards
What is an edge?
Lines
What is vertices/nodes?
Dots
What is a Loop?
An edge that joins a vertex to itself
Pendant
Degree 1 vertex
What is a Walk?
A sequence of vertices and edges
where BOTH CAN be repeated
What is a Path?
A sequence of vertices and edges
where BOTH CANNOT be repeated
What is a Trail?
A walk
where EDGE CANNOT be repeated
What is a Circuit?
A closed trail
What is a Cycle?
A closed path
What is an Eulerian Path?
A path that uses EACH EDGE EXACTLY once
*graph is traversable only if this path exists
How to check for Eulerian Path?
The graph has 0 or 2 vertices of odd degree.
What is an Eulerian Circuit?
Graph contains CLOSED Eulerian Path
How to check for Eulerian Circuit?
All vertices to have EVEN degree
What is a Hamiltonian Path?
A path that visits EACH VERTEX EXACTLY once
also known as traceable path
What is a Hamiltonian Cycle?
A closed Hamiltonian Path