You are on page 1of 3

Hamiltonian path

A Hamiltonian cycle in a dodecahedron. Like all platonic solids, the dodecahedron is Hamiltonian.

A Hamiltonian path (black) over a graph (blue).

In the mathematical field of graph theory, a Hamiltonian path (or traceable path) is a path in
an undirected graph which visits each vertexexactly once. A Hamiltonian cycle (or Hamiltonian
circuit) is a cycle in an undirected graph which visits each vertex exactly once and also returns to the
starting vertex. Determining whether such paths and cycles exist in graphs is the Hamiltonian path
problem which is NP-complete.

Hamiltonian paths and cycles are named after William Rowan Hamilton who invented the Icosian
game, now also known as Hamilton's puzzle, which involves finding a Hamiltonian cycle in the edge
graph of the dodecahedron. Hamilton solved this problem using the Icosian Calculus, analgebraic
structure based on roots of unity with many similarities to the quaternions (also invented by Hamilton).
This solution does not generalize to arbitrary graphs.
Definitions
A Hamiltonian path or traceable path is a path that visits each vertex exactly once. A graph that
contains a Hamiltonian path is called atraceable graph. A graph is Hamilton-connected if for every
pair of vertices there is a Hamiltonian path between the two vertices.

A Hamiltonian cycle, Hamiltonian circuit, vertex tour or graph cycle is a cycle that visits each vertex
exactly once (except the vertex which is both the start and end, and so is visited twice). A graph that
contains a Hamiltonian cycle is called a Hamiltonian graph.

Similar notions may be defined for directed graphs, where each edge (arc) of a path or cycle can only
be traced in a single direction (i.e., the vertices are connected with arrows and the edges traced "tail-
to-head").

A Hamiltonian decomposition is an edge decomposition of a graph into Hamiltonian circuits.

Examples

 a complete graph with more than two vertices is Hamiltonian

 every cycle graph is Hamiltonian

 every tournament has an odd number of Hamiltonian paths

 every platonic solid, considered as a graph, is Hamiltonian

Properties
Any Hamiltonian cycle can be converted to a Hamiltonian path by removing one of its edges, but a
Hamiltonian path can be extended to Hamiltonian cycle only if its endpoints are adjacent.

The line graph of a Hamiltonian graph is Hamiltonian. The line graph of an Eulerian graph is
Hamiltonian.

A tournament (with more than 2 vertices) is Hamiltonian if and only if it is strongly connected.

A Hamiltonian cycle may be used as the basis of a zero-knowledge proof.

Number of different Hamiltonian cycles for a complete graph = (n-1)! / 2.

Number of different Hamiltonian cycles for a complete directed graph = (n-1)!.


Hamiltonian path problem - Definition
In the mathematical field of graph theory the Hamiltonian path problem and the Hamiltonian cycle problem is the problem of determinining
whether a Hamiltonian path or a Hamiltonian cycle exists in a given graph. Both problems are NP-complete. The problem of finding a Hamiltonian
cycle or path is in FNP.

There is a simple relation between the two problems. The Hamiltonian path problem for graph G is equivalent to the Hamiltonian cycle problem in a
graph H obtained from G by adding a new vertex and connecting it to all vertices of G.

The Hamiltonian cycle problem is a special case of the traveling salesman problem, obtained by setting the distance between two cities to
unity if they are adjacent and infinity otherwise.

You might also like