Star Graph — Definition, Formula & Examples
A star graph is a graph where one central vertex is connected by an edge to every other vertex, and no other edges exist. It looks like a hub with spokes radiating outward.
The star graph is the complete bipartite graph , consisting of a single central vertex of degree adjacent to vertices each of degree . Equivalently, is a tree on vertices with exactly leaves.
Key Formula
Where:
- = Number of leaf vertices (equivalently, the degree of the central vertex)
- = Total number of vertices in the star graph
- = Total number of edges in the star graph
How It Works
To construct , place one vertex at the center and connect it to other vertices with one edge each. The central vertex (the hub) has degree , while every other vertex (a leaf) has degree . Star graphs are the simplest examples of trees and are always both connected and bipartite. They appear frequently when analyzing network topologies, as they model systems where all communication passes through a single node.
Worked Example
Problem: Draw the star graph and determine its number of vertices, edges, and the degree sequence.
Step 1: Place one central vertex and four leaf vertices .
Step 2: Connect to each leaf with one edge: .
Step 3: The central vertex has degree 4 and each leaf has degree 1, giving the degree sequence.
Answer: has 5 vertices, 4 edges, and degree sequence .
Why It Matters
Star graphs model hub-and-spoke network architectures used in computer networking and transportation logistics. In discrete mathematics courses, they serve as key examples and counterexamples when studying properties like tree characterization, graph coloring (chromatic number 2), and bounds on graph invariants like diameter (always 2 for ).
Common Mistakes
Mistake: Confusing vertex count: assuming has total vertices instead of .
Correction: The subscript in denotes the number of leaves (or equivalently, edges). The total vertex count is because you must include the central hub vertex.
