x! Is x*(x-1)*(x-2)*...*2*1
That means that x!/(x-2)! → x*(x-1)*(x-2)*..,*2*1/( (x-2)*(x-3)*...*2*1 ) → x*(x-1) as everything else cancels out.
Similarly (x-1)!/(x-3)! → (x-1)*(x-2)*(x-3)*...*2*1/( (x-3)*...*2*1 ) → (x-1)*(x-2)
Hence: x!/(x-2)! + (x-1)!/(x-3)! = 8 becomes: x*(x-1) + (x-1)*(x-2) = 8
Expanding and simplifying this we get: 2x2 - 4x + 2 = 8 or x2 - 2x -3 = 0
This factors as: (x + 1)(x - 3) = 0
Becase the question originally involved factorials we can only accept a positive result, so x = 3
Check:
3!/(3-2)! = 6/1 → 6
(3-1)!/(3-3)! = 2/1 → 2. (Note that 0! = 1)
These two sum to 8.