I am trying to find a combinatorial interpretation for the number of integer solution of the equation $$x_1+x_2+\cdots+x_k=n$$ such that $x_i\in \{1,2\}$.
I know that the number of this solution is ${k \choose n-k}$. Also $$\sum_{k=0}^n {k\choose n-k}=F_{n+1},$$ where $F_n$ is $n^{th}$-Fibonacci number.
Is it possible to find the solution for this system with the expression of Balls In Bins With Limited Capacity?
It’s an especially easy version of that problem.
First put one ball in each of the $k$ bins; you now have $n-k$ balls left to distribute amongst the $k$ bins. You can put at most one of them into any bin, so you just have to choose which $n-k$ bins will get these extra balls, and you can do this in $\binom{k}{n-k}$ different ways. Each of those ways corresponds to a solution of the equation, and vice versa.