Cycle (Graph Theory)

Context: FIT1058_MOC · a closed trail with no repeated interior vertex · a “closed path” · odd cycles obstruct bipartiteness

Quick Revision

  • 🎯 Objective: a closed trail, no vertex repeated except start=end ➔ a “closed path”.
  • 📦 Core Components: length (triangle ) ➔ strictest closed traversal.
  • ⚡ Key Constraint: odd closed walk ⟺ odd cycle; odd cycles block 2-colouring.

📝 Core

1. The Cycle

  • Definition ➔ a closed trail with no interior vertex repeat.
  • Closed pathpath alone forbids closing.
  • Length ➔ edge count; smallest is 3 (triangle ).

2. Odd Closed Walk ⟺ Odd Cycle

  • Theorem ➔ a graph has an odd closed walk iff it has an odd cycle.
  • Proof idea ➔ shortest odd closed walk with an interior repeat splits into two shorter closed walks, one odd — contradiction.

3. Strictness

  • Closed walk ➔ reuse freely; closed trail ➔ no edge reuse; cycle ➔ also no interior vertex reuse.

⚖️ Core Decision Matrix

TraversalEdge reuseInterior vertex reuse
closed walkallowedallowed
closed trailnoallowed
cyclenono
cycle graph prototype

When It Flips: odd cycles are exactly what stop a graph being 2-colourable; the cycle/closed-walk equivalence converts the easy "odd closed walk" into the structural "odd cycle". A Tree is a connected acyclic graph.

📊 Exam Execution Trace

Applied Exercise

Problem: Is a cycle? Is ? Derivation Proof / Hand-Calculation Walkthrough:

Final Extracted Output: is an odd 3-cycle (so non-bipartite); is only a closed walk.

⚠️ Common Mistakes

  • 💡 “Odd” is essential has the even closed walk (reuses the edge) but no cycle; even closed walks need not contain cycles.

🧠 Active Recall