I got the following problem and can't solve it.
Factorize the following statement: C(n+2, n) + C(n+3, n+2). So basically they are asking to rewrite the expression as a X*P expression instead of A+B expression.
I think it has to do something with Pascals formula: C(n, k) = C(n-1, k) + C(n-1, k-1).
Regards!
by definition we get $\frac{(n+2)!}{n!\cdot 2}+\frac{(n+3)!}{1!\cdot (n+2)!}=n+3+\frac{1}{2}(n+1)(n+2)$ and we obtain $\frac{1}{2}(n^2+5n+8)$
Sonnhard.