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 / State | Family | Edges | Degrees |
|---|---|---|---|
| 0 (Init) | β | β | β |
| 1 | 6 | all 3 | |
| 2 | 3 | 1,2,2,1 | |
| 3 | 4 | all 2 |
β οΈ Common Mistakes
- π‘ maximal, minimal β they bound the average degree between 0 and ; a triangle is a , an odd cycle blocks bipartiteness.
π§ Active Recall
Give the vertex/edge counts and degrees of .
- Hint: Four benchmarks.
Answer
- Short answer: : edges, deg ; : 0, deg 0; : edges, ends deg 1; : edges, all deg 2.
- Why: edge β joins the ends.
Why is densest, and how do these bound the average degree?
- Hint: Extremes.
Answer
- Short answer: joins every pair (max , degree ); has none.
- Why: β any simple graphβs average degree lies in .