Special Graphs

Context: FIT1058_MOC Β· named Graph families Β· complete , null , path , cycle Β· reference points and building blocks

Quick Revision

  • 🎯 Objective: named graph families on vertices βž” complete / null / path / cycle.
  • πŸ“¦ Core Components: (all edges) βž” (none) βž” (line) βž” (loop).
  • ⚑ Key Constraint: densest, sparsest β€” the degree extremes and .

πŸ“ Core

1. The Four Families

  • Complete βž” every pair joined; edges, degree .
  • Null βž” no edges; degree 0.
  • Path βž” vertices in sequence, edges.
  • Cycle βž” path with ends joined; edges, all degree 2.

2. How They Relate

  • + one edge βž” joining first and last vertex.
  • Naming by length βž” path length , cycle length .

When It Flips: larger graphs are analysed by the special subgraphs they contain. has an Euler Tour (every degree 2) for all ; is bipartite iff even.

πŸ“Š Exam Execution Trace

Manual Execution Trace

:

Step / StateFamilyEdgesDegrees
0 (Init)β€”β€”β€”
16all 3
231,2,2,1
34all 2

⚠️ Common Mistakes

  • πŸ’‘ maximal, minimal βž” they bound the average degree between 0 and ; a triangle is a , an odd cycle blocks bipartiteness.

🧠 Active Recall