2

I had this problem at school (we're just doing polynomial equations):

$$2 x^3 - x^2 - 3x = 0$$

I can see that $x = 0$ is a solution to this. But I divided left and right side by $x$, factorised, and didn't get the $0$ solution.

I can see I was wrong. But why is there this exception to the rule that "you can always do the same thing to the left and right side of an equation"?

Thanks, Sibby

M47145
  • 4,106
sibby
  • 29

3 Answers3

2

Dividing by $x$ you have to consider that it is non-zero.

You have the following:

$$x(2x^2-x-3)=0 \Rightarrow x=0 \text{ or } 2x^2-x-3=0$$

Evinda
  • 1,460
1

"You can always do the same thing to the left and right hand side of the equation". Yes, as long as what you do is mathematically correct. You can't divide through by $x$ unless $x \neq 0$.

1

When you divide by $x$, the result you get is only well defined when $x \neq 0$.

So, that's why we first need to ensure that $x \neq 0$. We examine the case $x = 0$. We see it's a root of multiplicity one, so we report "$0$ is a root!" and henceforth assume that $x \neq 0$.

Then we may divide by $x$ to find the other zeroes.


You can also see the process as doing something like this:

We have $2x^3 - x^2 - 3x = 0$. We factorize it as $x(2x^2 - x - 3)$. From here we see oh, $x=0$ is a root! Instead of dividing by $x$, we can then just say that the other roots must be when $2x^2 - x - 3 = 0$, so we only have to worry about this term equalling zero now. See how we get to the same end result as when we decided to divide by zero?

MT_
  • 19,603
  • 9
  • 40
  • 81