Find all roots of $$(x+1)(x+3)(x+4)(x+6)=720$$
I would like to solve it without brute-force, that is, not multiplying the factorization out.
I've done some similar problems like this before, for example: $$(x+1)(x+2)(x+3)(x+6)=k$$ LHS can be regroupen as $$(x^2+6x+6)(x^2+5x+6)=k$$
Let $y=x^2+6$ and we're solving a quadratic in terms of $y$.
I tried to implement that on this problem, but there doesn't seem to be a way to regroup them.