Skip to content

Commit 203feac

Browse files
authored
Enhance K_{3,3} section in graphs.md
Expanded explanation of the complete bipartite graph K_{3,3} and its non-planarity proof.
1 parent 7b89950 commit 203feac

1 file changed

Lines changed: 47 additions & 7 deletions

File tree

notes/graphs.md

Lines changed: 47 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -305,18 +305,58 @@ D───C
305305

306306
The edge bound $10>9$ (above) certifies non-planarity.
307307

308-
**IV. Complete bipartite $K_{3,3}$ (non-planar)**
308+
**IV. Complete bipartite graph $K_{3,3}$ (non-planar)**
309309

310-
Two sets ${u_1,u_2,u_3}$ and ${v_1,v_2,v_3}$, all cross-set pairs connected:
310+
The complete bipartite graph $K_{3,3}$ consists of two disjoint vertex sets
311+
${u_1, u_2, u_3}$ and ${v_1, v_2, v_3}$.
312+
Every vertex $u_i$ is connected to every vertex $v_j$, and there are **no edges within a set**.
313+
314+
Structure of (K_{3,3})
311315

312316
```
313-
u1 u2 u3
314-
│ \ │ \ │ \
315-
│ \ │ \ │ \
316-
v1───v2───v3 (many edges must cross in the plane)
317+
u1 u2 u3
318+
| \ / | \ / |
319+
| \ | \ |
320+
| / \ | / \ |
321+
v1 v2 v3
317322
```
318323

319-
The bipartite bound $9>8$ proves non-planarity.
324+
This diagram represents all 9 edges:
325+
326+
* (u_1)–(v_1, v_2, v_3)
327+
* (u_2)–(v_1, v_2, v_3)
328+
* (u_3)–(v_1, v_2, v_3)
329+
330+
(Edge crossings are unavoidable in any planar drawing.)
331+
332+
Proof of non-planarity
333+
334+
Number of vertices:
335+
336+
$$
337+
v = 6
338+
$$
339+
340+
Number of edges:
341+
342+
$$
343+
e = 9
344+
$$
345+
346+
Because $K_{3,3}$ is **bipartite**, it has no odd cycles.
347+
For any **planar bipartite graph** with $v \ge 3$, the edge bound is:
348+
349+
$$
350+
e \le 2v - 4
351+
$$
352+
353+
Substituting $v = 6$:
354+
355+
$$e \le 2(6) - 4 = 8$$
356+
357+
But $K_{3,3}$ has $e = 9$, so:
358+
359+
$$9 > 8$$
320360

321361
These examples also build intuition: some graphs “want” to live on a plane (cycles, $K_4$), while others contain too much cross-connection pressure ($K_5$, $K_{3,3}$). When you feel that pressure, you start recognizing non-planarity before doing any formal proof.
322362

0 commit comments

Comments
 (0)