The number of integers in the range of 'c' such that there exists a line which intersects the curve $ y = x^4 – 6x^3 + 12x^2 + cx + 1$ at four distinct points.
My approach we need to intersect with line $y=mx+C$
Substituting we get $x^4 – 6x^3 + 12x^2 + cx + 1-mx-C=0$
Now this is an equation of polynomial of degree 4
$x^4 – 6x^3 + 12x^2 + (c-m)x + 1-C=0$
All four roots needs to be real.
I don't have any idea how to check whether all the roots are real or not.
Note that in order for a line to be able to meet this curve at four points, the curve must "change direction" thrice, which is to say that the derivative must have three roots.
The derivative in question is visibly $$g'(x) = 4x^3 -18x^2+24x+c$$ For it to have three roots, it must "change direction" twice, and on the same side of the $x\text{-axis}$. To check that, see its derivative: $$g''(x)= 12x^2 - 36x + 24 = 12(x^2-3x+2)$$ which visibly has roots at $x = 2, 1$. Now all that is left is to ensure that these occur on both sides of the $x$ axis in $g'(x)$.
So, we have: $$g'(2) = 4\cdot 8 - 18 \cdot 4 + 24 \cdot 2 + c = c+8$$ $$g'(1) = 4-18+24+c = c+10$$
So, $c+10$ and $c+8$ have to be on different sides of the $x$ axis. Obviously $c+10>c+8$ so the former would lie above the axis. So, we have $c+10>0$ and $c+8<0$, so our range is $$\boxed{c\in(-10,-8)}$$