Combinatorics (Fall 2010)/Problem set 1: Difference between revisions
Jump to navigation
Jump to search
imported>WikiSysop No edit summary |
imported>WikiSysop No edit summary |
||
Line 1: | Line 1: | ||
<font color="red" size=5> | *<font color="red" size=5>每道题目的解答都要求有过程。 | ||
*如发现雷同,雷同的双方都将直接在该门课程的最终成绩中不及格。</font> | |||
== Problem 0 == | == Problem 0 == |
Revision as of 01:13, 17 September 2010
- 每道题目的解答都要求有过程。
- 如发现雷同,雷同的双方都将直接在该门课程的最终成绩中不及格。
Problem 0
你的姓名,学号。
Problem 1
我们有[math]\displaystyle{ k }[/math]种不同的明信片,其中第[math]\displaystyle{ i }[/math]种明信片有[math]\displaystyle{ m_i }[/math]张。请问总共有多少种方法把所有这些明信片发给[math]\displaystyle{ n }[/math]个人。(注意每个人可以收多张明信片)。
Problem 2
Problem 3
令[math]\displaystyle{ t_n }[/math]表示长度为[math]\displaystyle{ n }[/math],没有3个连续的1的二进制串的数量,即
- [math]\displaystyle{ t_n=|\{x\in\{0,1\}^n\mid \forall 1\le i\le n-2, x_ix_{i+1}x_{i+2}\neq 111\}| }[/math]。
- 给出计算[math]\displaystyle{ t_n }[/math]的递归式,并给出足够的初始值。
- 计算[math]\displaystyle{ t_n }[/math]的生成函数[math]\displaystyle{ T(x)=\sum_{n\ge 0}t_n x^n }[/math],给出[math]\displaystyle{ T(x) }[/math]的闭合形式。
- 定义[math]\displaystyle{ t_n^* }[/math]为
- [math]\displaystyle{ \begin{cases} 0 & n=0,n=1\\ 1 & n=2\\ t_{n-3} & n\ge 3. \end{cases} }[/math]
- 计算[math]\displaystyle{ t_n^* }[/math]的生成函数[math]\displaystyle{ T^*(x)=\sum_{n\ge 0}t_n^* x^n }[/math]的闭合形式。
([math]\displaystyle{ t^*_n }[/math]通常被称为tribonacci number。)