Possible tricks to use for solving linear equation involving binomial coefficients

binomial-coefficients

Consider these two linear equation:

$$ 2a \binom{18}{j-1} – 4b \binom{18}{j} = \binom{18}{j-2}$$
True for $j=16,17$, find $a$ and $b$

This came up as part of a problem I was doing.. expanding everything out and doing it really ugly. Are there any tricks I could use to solve the system fast considering they are involving binomial coefficients? One thing I've considered doing is adding both equations and pascal's identity but not sure if that actually makes anything easier.

Best Answer

$$\frac{\binom{n}{r}}{\binom{n}{r-1}}=\frac{n+1-r}{r}$$ Thus, if you divide both side of the equation by $\binom{18}{j-1}$ , then you can simplify it and that will decrease your calculations.

Related Question