Definition

A path is a Graph where the edges have a certain length.

  • Denoted as , a graph with path length .
  • If vertices are then the edges are
graph LR
    A((A)) o--o B((B))
    B o--o C((C))
    C o--o D((D))
  • A path is a Walk with no repeated vertices.