Graph Terminology

  • vertex/node - is usually represented by a circle with a label
  • edge - is represented by a line or arrow extending from one vertex/node to another
  • graph - consists of 2 sets: a set of vertices/nodes and a set of edges

Other Terminology

  • walk - a walk between nodes 𝑢 and 𝑣 is a node sequence
    • starting with 𝑢 and ending with 𝑣
    • where each node in the sequence is adjacent to the next node in the sequence
    • edge and node repetitions allowed
  • trail - a walk between 2 nodes WITHOUT edge repetitions
  • path - a walk between 2 nodes WITHOUT node repetitions
  • geodesic - the shortest path between 2 nodes
  • circuit - a trail that starts and ends on the same vertex
  • cycle - a path that starts and ends on the same vertex
  • distance - the distance between nodes 𝑢 and 𝑣 is the length of the shortest path between nodes 𝑢 and 𝑣
  • eccentricity - the eccentricity of a vertex 𝑣 is the maximum of all distances between vertex 𝑣 and every other vertex
  • diameter - the diameter of a graph is the maximum of all eccentricities in the graph
  • radius - the radius of a graph is the minimum of all eccentricities in the graph
  • peripheral - is a vertex whose eccentricity is equal to the diameter of the graph
  • periphery - is the set of peripherals in a graph
  • central - is a vertex whose eccentricity is equal to the radius of the graph
  • centre - is the set of centrals in a graph

Resources

Subpages