그래프이론 문제를 풀려고 한다. 풀려는 문제는 “Let T be an n-vertex tree having one vertex of each degree i with 2≤i≤k; the remaining n-k+1 vertices are leaves. Determine n in terms of k.” 이다. n개의 vertex로 구성된 Tree가 있다고 하자. i=2,3,…,k 마다 i를 degree를 갖는 vertex가 한개씩 존재하고 나머지 vertex는 다 leaf라고 한다. 이 때 n을 k에 의해 결정하라는 문제이다.
그래프이론 (Graph Theory) 문제풀이
풀려고 하는 문제를 다시 작성해보자.
Let T be an n-vertex tree having one vertex of each degree i with 2≤i≤k; the remaining n-k+1 vertices are leaves. Determine n in terms of k.
T 의 vertex의 갯수는 n 개 이므로 tree의 특성에 따라 T의 엣지의 갯수는 e(T) = n-1 이다. 그리고 이제 degree의 합을 구해보자. 문제의 가정에 의해 degree의 합은 아래와 같이 구할 수 있다.
deg_T (v) = 2+3+4+...+k + (n-k+1) = \frac{k(k+1)}{2} -1 + (n-k+1) = \frac{k(k-1)}{2} + n결론을 정리하면 \sum_{v \in V(T)} deg_T (v) = \frac{k(k-1)}{2} + n 이다. degree의 합의 edge의 갯수의 2배 이므로 아래와 같이 식을 전개해보자.
2e(T) = \sum_{v \in V(T)} deg_T (v) \to n = 2 + \frac{k(k-1)}{2}따라서 n = 2 + \frac{k(k-1)}{2}
문제출처- 광주과학기술원 최정옥 교수님의 “그래프 이론” 수업 (2023년 가을학기) 중 Homework 4 문제
참고할만한 글:
- [그래프이론(Graph Theory)] Deleting a vertex of degree ∆(G) cannot increase the average degree.
- [그래프이론(Graph Theory) 문제풀이] Prove or disprove: K9 decomposes into copies of C9.
- [그래프이론(Graph Theory)] Use induction to prove that if a graph does not have an odd cycle then it is bipartite.
- [그래프이론(Grpah Theory)] Prove that the Petersen graph has no cycle of length 7.
- [그래프이론(Graph Theory) 문제풀이] Find all simple graphs with n vertices having no isolated vertex and no induced subgraph with exactly two edges.
- [그래프이론(Graph Theory) 문제풀이]Let P and Q be be paths of maximum length in a connected graph G. Prove that P and Q have a common vertex.
- [그래프이론 문제풀이] Let u and v be adjacent vertices in a simple graph G. Prove that uv belongs to at least d(u) + d(v) − n(G) triangles in G.
- [그래프 이론(Graph Theory)-1] k-set과 k-subset
- [그래프이론(Graph Theory) 문제풀이] Deleting a vertex of degree δ(G) cannot reduce the average degree.
- [그래프이론(Graph Theory) 문제풀이] Prove or disprove: Every tree T has at least ∆(T) leaves.
- [그래프이론 (Graph Theory) 문제풀이] Prove that the number of simple Eulerian graphs with vertex set {1, 2, · · · , n} is 2 ( n−1 2 ).
- [그래프이론 (Graph Theory) 문제풀이] Let G be a triangle-free simple n-vertex graph such that every pair of non-adjacent vertices has exactly two common neighbors. Prove that n(G) = 1 + \binom{d(x)+1}{2} where x ∈ V (G). Hence, conclude that G is regular.
- [그래프이론(Graph Theory) 문제풀이] Use induction on n(G) to prove that every nontrivial loopless graph G has a bipartite subgraph H such that H has more than e(G)/2 edges.
문제출처- 광주과학기술원 최정옥 교수님의 “그래프 이론” 수업 (2023년 가을학기) 중 Homework 4 문제