1. Let be the adjacency matrix of a graph .

  • (a) Find a combinatorial interpretation for each entry of and .
  • (b) Show that .
  • (c) For an integer, what does count? Prove your claim.

简单计算

2. The girth of a graph is the length of the smallest polygon in the graph. Let be a graph of girth 5 for which all vertices have degree at least . Show that has at least vertices. Can equality hold?

从一个点出发,走两层都没有交,这已经 个点了

3. Let be the graph with vertex set , two vertices adjacent if they differ in exactly one coordinate. Show that is Hamiltonian.

把每层的 Hamilton circuit 用对应的边粘起来

4. Find the six nonisomorphic trees on 6 vertices, and for each compute the number of distinct spanning trees in isomorphic to it.

标号得到的就是不同的 tree,考虑不同编号方式

5.

  • (a) Suppose a tree has exactly one vertex of degree for and all other vertices have degree 1 . How many vertices does have?
  • (b) Suppose a graph has exactly one vertex of degree for and other vertices have degree 1 . Prove that give a construction for such a graph.

a) 简单计算

b) 把graph 拆成两个子图,分别计算两个子图的 ,相减把 k 取出来,用度数多的放成完全图来放缩。