[그래프이론 (Graph Theory) 문제풀이] The Turan graph [latex]T_{n,r}[/latex] is the compelete r-partite graph with b partite sets of size a+1 and r − b partite sets of size a, where [latex]a = \lfloor n/r\rfloor [/latex] and b = n − ra. (a) Prove that [latex] e(T_{n,r}) =\left( 1- \frac{1}{r} \right)\frac{n^2}{2} - \frac{b(r-b)}{2r} [/latex] . (b) Since e(G) must be an integer, part (a) imples [latex] e(T_{n,r}) ≤ \lfloor (1-\frac{1}{r}) \frac{n^2}{2} \rfloor[/latex] Determine when strict inequality occurs

그래프이론 (Graph Theory) 문제를 풀어보자. 이번에 풀어볼 문제는 “The Turan graph T_{n,r} is the compelete r-partite graph with b partite sets of size a+1 and r − b partite sets of size a, where a = \lfloor n/r\rfloor and b = n − ra. (a) Prove that e(T_{n,r}) =\left( 1- \frac{1}{r} \right)\frac{n^2}{2} - \frac{b(r-b)}{2r} . (b) Since e(G) must be an integer, part (a) imples e(T_{n,r}) ≤ \lfloor (1-\frac{1}{r}) \frac{n^2}{2} \rfloor Determine when strict inequality occurs” 이다.




그래프이론 (Graph Theory) 문제풀이

이번에 풀고자 하는 그래프이론 (Graph Theory) 문제는 아래와 같다.

The Turan graph T_{n,r} is the compelete r-partite graph with b partite sets of size a+1 and r − b partite sets of size a, where a = \lfloor n/r\rfloor and b = n − ra.

(a) Prove that e(T_{n,r}) =\left( 1- \frac{1}{r} \right)\frac{n^2}{2} - \frac{b(r-b)}{2r} .

(b) Since e(G) must be an integer, part (a) imples e(T_{n,r}) ≤ \lfloor (1-\frac{1}{r}) \frac{n^2}{2} \rfloor Determine when strict inequality occurs

(풀이)
deg_G(v) = n-a when v belongs to an independent set whose size is a.
deg_G(v) = (n-a)-1 when v belongs to an independent set whose size is a+1.
Therefore, \sum_{v \in V(G)} deg_G(v) = n (n-a) - b(a+1) = 2e(G).
By definition of a and b, n=ra+b where n=n(G) and 0\leq b \leq r-1.
Therefore, a = \frac{n}{r}-\frac{b}{r}.
Therefore, n(n-a)-b(a+1) = n^2 \left( 1- \frac{1}{r}\right)-b \frac{(r-b)}{r}.
Therefore, e(G) = \frac{n^2}{2}\left(1-\frac{1}{r}\right) - \frac{b(r-b)}{2r}.
When r divides n, b=0 and e(G) = \frac{n^2}{2} \left(1-\frac{1}{r}\right) = \lfloor \frac{n^2}{2} \left(1-\frac{1}{r}\right) \rfloor.
When r does not divides n, 1\leq b \leq r-1, e(G) = \frac{n^2}{2}\left(1-\frac{1}{r}\right) - \frac{b(r-b)}{2r} < \frac{n^2}{2}\left(1-\frac{1}{r}\right) .
Therefore, e(G) \leq \frac{n^2}{2}\left(1-\frac{1}{r}\right) -1 < \lfloor \frac{n^2}{2} \left(1-\frac{1}{r}\right) \rfloor

참고글

[그래프이론 (Graph Theory) 문제풀이] Find ordering of the vertices of G for which the greedy algorithm requires 3, and 4 colors, respectively.

[그래프이론 (Graph Theory) 문제풀이] Let ei(G) denote the number of vertices of G whose degree is strictly greater than i. Use the greedy algorithm to show that if ei(G) ≤ i + 1 for some i, then χ(G) ≤ i + 1. Find an example H that satisfies e4(H) ≤ 5 and compute χ(H).

[그래프이론 (Graph Theory) 문제풀이] Choose two graphs and determine the chromatic numbers of them. Give your explanation for each case.

[그래프이론 (Graph Theory) 문제풀이] For every graph G, show that there is an ordering of the vertices of G such that the number of required colors from Greedy Algorithm is exactly χ(G). (You should describe how to give such an order.)

문제출처- 광주과학기술원 최정옥 교수님의 “그래프 이론” 수업 (2023년 가을학기) 중 Homework 7 문제

Leave a Comment