MathematicsDiscrete MathematicsMedium

Vertex (graph theory)

Also known as:NodePointJunction

In graph theory, a vertex (plural: vertices) is a fundamental unit representing a node, point, or entity in a graph, connected to other vertices via edges. The degree of a vertex is the number of edges incident to it, and a vertex with degree zero is called an isolated vertex. Vertices model real-world objects such as cities in a road network, computers in a network, or people in a social graph.

Key Formula

degree(v) = number of edges incident to vertex v

LaTeX: \deg(v) = |\{e \in E : v \in e\}|

SymbolMeaningUnit
deg(v)Degree of vertex v — the count of edges touching vnone
ESet of all edges in the graphnone
eAn individual edge in the graphnone

Worked Example

Problem

A graph has vertices A, B, C, D with edges AB, AC, BC, CD. Find the degree of each vertex and verify the Handshaking Lemma.

Solution

Step 1: List edges: AB, AC, BC, CD. Step 2: Count edges at each vertex: deg(A) = 2 (edges AB, AC) deg(B) = 2 (edges AB, BC) deg(C) = 3 (edges AC, BC, CD) deg(D) = 1 (edge CD) Step 3: Sum of degrees = 2 + 2 + 3 + 1 = 8. Step 4: Number of edges |E| = 4. By Handshaking Lemma, sum of degrees = 2|E| = 2 × 4 = 8. ✓

Answer

deg(A)=2, deg(B)=2, deg(C)=3, deg(D)=1. Sum = 8 = 2 × 4 edges (Handshaking Lemma verified).

Vertex Degree Classifications

DegreeNameDescriptionExample
0Isolated vertexNo edges attachedDisconnected node in network
1Pendant / LeafExactly one edgeDead-end road
2Path vertexTwo edges; interior of a pathIntermediate city on a route
k (all same)k-regular vertexAll vertices have degree kVertices in a cycle graph
n-1Universal vertexConnected to all other verticesHub in a star graph

Interactive Tools

GeoGebra — Interactive Graph

Open Tool

Brilliant — Graph Vertices and Edges

Open Tool

Khan Academy — Intro to Graph Theory

Open Tool
Diagram highlighting individual vertices in a small undirected graph

Wikimedia Commons, CC BY-SA

Related Terms

The word "vertex" comes from Latin vertex, meaning "highest point" or "whirl," derived from vertere, "to turn." In geometry it referred to the apex of an angle or polygon; its adoption into graph theory follows naturally as the fundamental point from which edges radiate.

graph-theorynodesdegreediscrete-mathnetworks