-1

If $(x+a)^2$ is a factor of $x^3 + 6px + k$, show that $k + 2a^3 = 0$

I've tried different ways to solve this, but is it even possible?

3 Answers3

2

Original answer: using differentiation.

The fact that $p(x)=x^3+6px+k$ is divisible by $x+a$ at all means that $p(-a)=0$, i.e. $-a^3-6pa+k=0$.

The fact that $p(x)$ is divisible by $(x+a)^2$ also means that $p'(x)=3x^2+6p$ is divisible by $x+a$, i.e. $p'(-a)=3a^2+6p=0$.

Thus, from the second equation we get $6p=-3a^2$, and by substituting this in the first, we get $-a^3+3a^2\cdot a+k=0$, i.e. $2a^3+k=0$, q.e.d.

Update: Alternative solution which does not use differentiation.

Let us extract the factor $(x+a)^2=x^2+2ax+a^2$ from the polynomial $x^3+6px+k$. The remainder should be zero:

$$\begin{array}{rcl}x^3+6px+k&=&x(x^2+2ax+a^2)+(-2a)x^2+(-a^2+6p)x+k\\&=&x(x^2+2ax+a^2)+(-2a)(x^2+2ax+a^2)+4a^2x+2a^3+(-a^2+6p)x+k\\&=&(x-2a)(x^2+2ax+a^2)+(3a^2+6p)x+(2a^3+k)\end{array}$$

So, the quotient in division of $x^3+6px+k$ with $(x+a)^2$ is $x-2a$, and the remainder, which must be $0$, is $(3a^2+6p)x+(2a^3+k)$. The last polynomial (of degree $1$) is zero only if its coefficients are zero, which lets us conclude that $3a^2+6p=0$ and, most importantly, $2a^3+k=0$, as desired.

  • You had me up until $ p′(x)=3x^2+6p $, how do we get these figures? Also I'm a High School student and don't really know what derivatives are. – Davidovich Nov 15 '20 at 16:03
  • Got to write a different answer, then, because this answer fundamentally uses differentiation... Sorry... –  Nov 15 '20 at 16:11
  • @Davidovich Have you done polynomial long division? –  Nov 15 '20 at 17:01
  • @Davidovich Done it now differently, by extracting the factor $(x+a)^2$ from the original degree-$3$ polynomial (which is essentially the same as doing polynomial division with remainder). Hope you can understand this proof. –  Nov 15 '20 at 20:01
  • Thanks a lot it makes sense now – Davidovich Nov 16 '20 at 07:55
  • Also an explanation of differentiation would help in later questions, but you don't have to if you don't want to. Thanks! – Davidovich Nov 16 '20 at 08:13
  • @Davidovich I would've done but (to cite Fermat) there isn't enough space in this comment to write it down. ;) (I mean, seriously, it is a big topic...) –  Nov 16 '20 at 09:55
0

Let $p(x)$ denote the 3rd degree polynomial.

Your condition means that $-a$ is a double root of $p$, therefore it is also a root of the derivative $p(x)=3x^2+6p$.

As a consequence, we have :

$$\begin{cases}p(a)&=&-a^3-6pa+k&=&0\\p'(a)&=&3a^2+6p&=&0 \end{cases}$$

from which you easily derive your constraint.

Jean Marie
  • 81,803
0

Since $(x+a)^2$ divides $x^3 + 6px + k$ exactly, the cubic polynomial must be of the form $(x+a)^2(x - b)$. Since it has no $x^2$ term, the sum of the roots must be zero. So $(-a) + (-a) + b = 0$, hence $b = 2a$.

Therefore we have $x^3 + 6px + k = (x+a)^2(x-2a)$. The constant term $k$ must be equal to the product of the constant terms on the right. So $k = (a)(a)(-2a) = -2a^3$.

Anonymous
  • 1,010