Consider the equation $x_1 + x_2 + x_3 + x_4 + x_5 = 15$. How many nonnegative integer solutions does it have? How about positive integer solutions? How many nondecreasing functions $f : \{1, 2, 3, \ldots, 15\} \to \{1, 2, 3, 4, 5\}$ are there?
Nonnegative and positive integer solutions I just used combinatorics (bars and stars or pirates and gold) which is not too bad. But for the last question of nondecreasing function i suppose i can rewrite it as $x_1 < x_2 < ... < x_5$. Where do i go from there?
A non-decreasing function from $\{1, 2, 3, \ldots, 15\} \to \{1, 2, 3, 4, 5\}$ is completely determined by how many numbers in the domain are assigned to each element in the codomain. For instance, $(15, 0, 0, 0, 0)$ corresponds to the constant function $f(k) = 1$ for $1 \leq k \leq 15$, while $(3, 4, 5, 2, 1)$ corresponds to the function \begin{align*} f(1) & = f(2) = f(3) = 1\\ f(4) & = f(5) = f(6) = f(7) = 2\\ f(8) & = f(9) = f(10) = f(11) = f(12) = 3\\ f(13) & = f(14) = 4\\ f(15) & = 5 \end{align*} Let $x_k$ be the number of elements in the domain that are assigned to $k$ in the codomain. Then the number of decreasing functions is the number of solutions of the equation $$x_1 + x_2 + x_3 + x_4 + x_5 = 15 \tag{1}$$ in the nonnegative integers. A particular solution of equation corresponds to the placement of four addition signs in a row of $15$ ones. For instance, $$1 1 1 1 + 1 1 1 1 1 1 + + 1 1 1 + 1 1$$ corresponds to the solution $x_1 = 4$, $x_2 = 6$, $x_3 = 0$, $x_4 = 3$, $x_5 = 2$. There are $$\binom{15 + 4}{4} = \binom{19}{4}$$ such solutions since we must choose which $4$ of the $19$ positions required for $15$ ones and $4$ addition signs will be filled with addition signs.