I was doing some questions related to quadratic equations and I stumbled upon this question: Solving the equation $$(x+1)(x+3)(x+5)(x+7)= 5760.$$
One of the hints was to convert it into a quadratic equation.
I tried to but couldn't get anything meaningful. Is there any way in which I can solve bi-quadratic equations fast?
(Sorry if this strikes as basic, I am just a highschooler.)
In general, quartics have closed form solutions, but they are not easy. For example, this image on wikipedia writes out the formulas for quartics.
In this case, if you multiply everything out, you could use the rational root theorem to factor it as @Dr.SonnhardGraubner does. This requires some arithmetic and doesn't really use the structure of the problem.
In this problem, if you look at the factors on the left, you see that the terms being added are symmetric around $4$ (in other words, $1$ and $7$, $3$ and $5$). Therefore, it makes sense to shift the variable $x$ by $4$. In other words, let $$ x=y-4. $$ After substitution, you get $$ (y-3)(y-1)(y+1)(y+3)=5760. $$ Rearranging this as differences of squares, you get $$ (y^2-9)(y^2-1)=5760. $$ Next, use the substitution $z=y^2$ to reduce the quartic to a quadratic. In other words, you get $$ (z-9)(z-1)=5760. $$ This can be solved with the quadratic formula after multiplying everything out. Alternatively, use @ypercube's approach of using symmetry again to make this even easier is a good idea too.