We are given a stick of length $L$ (say). We make cuts such that the longest piece is of length $n$ (say) at most. What are the minimum number of pieces we will get and in how many ways this can be done? e.g
We have a stick of length 7. We want the longest piece of the stick to be of length 3 at most.
Soln. :The minimum number of pieces is 3 and there are 6 ways to make 2 cuts :
positions: 1 4 (length of portions will be 1(0-1), 3(1-4), 3(4-7))
positions: 3 4 (length of portions will be 3,1,3)
positions: 3 6 (length of portions will be 3,3,1)
positions: 2 4 (length of portions will be 2,2,3)
positions: 2 5 (length of portions will be 2,3,2)
positions: 3 5 (length of portions will be 3,2,3)
How can this be solved for large values of $L$ and $n$?
The minimum number of pieces would be $k=\lceil \frac{L}{n} \rceil$. Because you want to put as much as you can in each piece to minimise the number of pieces. Therefore, you want to have each piece to have the length $n$. There can be $\lfloor \frac{L}{n} \rfloor$ piece of length $n$, plus one piece of a length less than $n$.
Having the number of pieces $k$, you may use stars and bars method to deal with the rest. First you compute the number of possible positions, while having no upper limit for any of the pieces. So, the problem is as below
$$x_1+x_2+\ldots+x_k=L-k$$
and the solution is
$$\binom{L-1}{k-1}$$
Then, you need to take some possibilities, that have lengths greater than $n$, out. To do so, you take one of $x_i$ at a time and choose its length to be $n$. There are $\binom{k}{1}=1$ ways to choose one. Then, for each $x_i$, solve the following problem.
$$x_1+x_2+\ldots+x_k=L-(k+n)$$
$$\binom{L-n-1}{k-1}$$
The final solution would be
$$\binom{L-1}{k-1}-k\binom{L-n-1}{k-1}$$