Euler Tour
Context: FIT1058_MOC · a closed trail using every edge · exists iff the graph is connected with all-even degrees · the Königsberg bridges
Quick Revision
- 🎯 Objective: a closed trail using every edge exactly once ➔ returns to start.
- 📦 Core Components: exists iff connected + all degrees even.
- ⚡ Key Constraint: a one-pass degree test (Königsberg: four odd degrees ⟹ impossible).
📝 Core
1. The Tour
- Definition ➔ a closed trail using every edge exactly once, returning to start.
- Euler’s theorem (1736) ➔ connected graph has an Euler tour iff every vertex has even degree.
2. Intuition
- Pairing ➔ each visit enters by one edge, leaves by another ⟹ even degree.
- Connectivity ➔ all edges must be reachable.
3. Königsberg
- Model ➔ land masses = vertices, bridges = edges.
- Verdict ➔ degrees all odd ⟹ no Euler tour; launched graph theory.
⚖️ Core Decision Matrix
| Graph | Degrees | Euler tour? |
|---|---|---|
| 2,2,2 | ✅ | |
| Königsberg | 5,3,3,3 | ❌ |
| all 2 | ✅ () | |
| any odd-degree vertex | — | ❌ |
When It Flips: a single pass over the degrees settles existence — no route search. Abstraction is the lesson: keep land-masses-and-bridges, discard geometry. Contrast a cycle (uses each vertex once) with a tour (each edge once).
📊 Exam Execution Trace
Applied Exercise
Problem: Does have an Euler tour? Does Königsberg (degrees )? Derivation Proof / Hand-Calculation Walkthrough:
Final Extracted Output: yes; Königsberg no (four odd-degree vertices).
⚠️ Common Mistakes
- 💡 Euler tour vs Euler trail ➔ a closed tour needs all-even degrees; an open Euler trail allows exactly two odd-degree vertices (start/end).
🧠 Active Recall
State Euler's theorem and the intuition behind the even-degree condition.
- Hint: Edge pairing.
Answer
- Short answer: Connected graph has an Euler tour iff every vertex has even degree.
- Why: In/out pairing ➔ each visit uses two edges; odd degree leaves one unpaired.
Why is the Königsberg walk impossible, and what makes it a landmark?
- Hint: Model + degree test.
Answer
- Short answer: Land masses = vertices, bridges = edges; all four degrees odd violate the criterion.
- Why: Search-free test ➔ Euler (1736) gave a general condition, birthing graph theory.