42

I'm currently working through an algebra book, and during the chapter about rational expressions and inequalities, the author has a side note in which he states:

Never divide both sides of the equation by a variable, even if you're doing it to try to solve a rational equation, because there's a very real danger that you will actually eliminate answers.

The reason I'm asking this question is because I didn't understand how answers can be eliminated when dividing both sides of an equation by a variable.

Can you show me an example of how this can happen and why?

  • 30
    Solve $x^2=x$. Divide both sides by $x$. We get $x=1$. We have lost the solution $x=0$ of the original equation. But of course we can divide, as long as we keep track of solutions we are losing. – André Nicolas Sep 27 '11 at 19:35
  • 3
    $x(x^2 + 2x + 1) = 0$ divide by $x$ and we get $ (x+1)^2 = 0$ or $x = -1$ but we eliminated $0$ as an answer. You have to be careful because you might divide by $0$ which is not allowed – Deven Ware Sep 27 '11 at 19:37
  • Thanks for the comments; they both helped me understand the problem more. – Andreas Grech Sep 27 '11 at 22:44
  • 1
    I'm currently studying calculus and I see math teachers dividing both sides by variables all the time, so I don't understand how to know which situations it's okay in. – Kyle Delaney Sep 07 '15 at 02:13
  • 4
    @Kyle For the sake of future readers of this question, here's why. (To my understanding.) It is okay to do such division, but then the solution no longer becomes valid whenever dividing by 0 occurs as a result of doing so. In calculus, you will frequently note that when such division is performed, it is always noted to the side that $x \neq 0$ for example. – Bassinator Sep 29 '16 at 00:59
  • Okay, but I've never seen anyone make that note. – Kyle Delaney Sep 30 '16 at 20:52
  • @AndréNicolas Yes, but we cannot divide by $0$, so the concept of dividing by $x$ naturally comes with the assumption that $x\neq 0$. – George N. Missailidis Feb 21 '18 at 03:49
  • 2
    @AndréNicolas Is valid to extend your statement to say that when we multiply by a variable, we have to keep track of which solutions we are adding? And what would that look like? – hypehuman Mar 06 '20 at 11:20

5 Answers5

73

When you divide, you are implicitly assuming that the number you are dividing by is not equal to zero. By dividing, you are excluding the possibility that the number in question is zero, and as such you may be eliminating correct answers.

For a very simple example, consider the case of the equation $x^2-x=0$.

There are two answers: $x=0$, and $x=1$. However, if you "divide by the variable", you can end up doing this: $$\begin{align*} x^2 - x & = 0\\ x^2 &= x &&\text{(adding }x\text{ to both sides)}\\ \frac{x^2}{x} &= \frac{x}{x} &&\text{(divide by }x\text{, which assumes }x\neq 0)\\ x &= 1. \end{align*}$$ So you "lost" the solution $x=0$, because when you divided by $x$, you implicitly were saying "and $x\neq 0$". In order to "recover" this solution, you would have to consider "What happens if what I divided by is equal to $0$?"

For a more extreme example, consider something like $$(x-1)(x-2)(x-3)(x-4)(x-5)(x-6)=0.$$ Since a product is equal to $0$ if and only if one of the factors is equal to $0$, there are six solutions to this equation: $x=1$, $x=2$, $x=3$, $x=4$, $x=5$, and $x=6$. Divide both sides by $x-1$, and you lose the solution $x=1$; divide both sides by $x-2$, you lose $x=2$. Continue this way until you are left with $x-6=0$, and you lost five of the six solutions. And if then you go ahead and divide by $x-6$, you get $1=0$, which has no solutions at all!

Whenever you divide by something, you are asserting that something is not zero; but if setting it equal to $0$ gives a solution to the original equation, you will be excluding that solution from consideration, and so "eliminate" that answer from your final tally.

Arturo Magidin
  • 398,050
  • I have a question about this: is it the fact that whenever you divide by a variable or variable expression, one of the solutions was 0 somewhere so therefore you will always divide by 0 or is it that you can potentially divide by 0? – user29418 Jan 27 '22 at 01:26
  • @user29418 If you divide by so,ething, you are asserting that the thing you are dividing by is not zero. You are essentially adding a condition to the equation you are solving. This condition may not matter (it may be superfluous), – Arturo Magidin Jan 27 '22 at 04:19