Processing math: 47%
Graph Theory

Use part (a) to prove that diam(G) ≤ 2rad(G) for every graph G.

728x90
반응형

문제출처

광주과학기술원 GIST 최정옥 교수님의 “그래프 이론” 수업, 2024년 가을학기 중 Homework 5

풀이

(a)는 삼각부등식. 이전 풀이 참고.

Proof:

  1. If there is no path ab or path bc, then d(a,b) or d(b,c)=, so the inequality is trivially satisfied.

  2. Otherwise, there exists a path ab of length d(a,b) and a path bc of length d(b,c). We may compose these two paths to form a longer walk abc of length d(a,b)+d(b,c).

  3. However, the distance d(a,c) is the length of the shortest path ac. Therefore, any walk ac is equal in length or longer than the shortest path. One such walk is the composition of the paths ab and bc, satisfying the inequality:
    d(a,c)d(a,b)+d(b,c).

Thus, the triangle inequality holds. \qed


Now we prove that diam(G)2rad(G).

Proof:

  1. Let ab be the longest path in G. Then there always exists a vertex c that is a central vertex. By the triangle inequality, we have:
    d(a,b)d(a,c)+d(c,b).

  2. Since ab is the longest path, d(a,b)=diam(G). Now:
    d(a,c)max
    where the rightmost equality holds because c is central.

  3. The same argument holds for d(c, b).

  4. Therefore:
    \text{diam}(G) = d(a, b) \leq d(a, c) + d(c, b) \leq \text{rad}(G) + \text{rad}(G) = 2\text{rad}(G). \tag{5}

Thus, \text{diam}(G) \leq 2\text{rad}(G), as required.
\qed

728x90
반응형