Pfadgraph
Pfadgraph, commonly referred to in English as a path graph, is a basic object in graph theory that represents a simple, linear sequence of vertices connected in a single line. Formally, a path graph on n vertices, denoted Pn, has vertex set {v1, v2, ..., vn} and edge set {vivi+1 | i = 1, ..., n−1}. It is the sole graph structure that forms a straight path without branches.
Key properties include: connectivity and acyclicity, making Pn a tree. It contains exactly n−1 edges. The degree
Pn serves as a fundamental building block in graph theory and algorithm design. It is used as
Examples: P1 is a single vertex with no edges; P2 is two vertices connected by one edge;
In summary, the Pfadgraph is the canonical representation of a linear sequence in graphs, notable for its