4

This question may be very simple, but I get confused on things like it.

If I have a fraction like this:

$-\frac{x}{-2}$

How can I convert this negative fraction to a positive one? It does not matter if the numerator or denominator is negative of positive, I just need to get rid of the main one. However, I think that $-\frac{x}{-2}$ is equal to $\frac{-x}{-2}$, is this true?

user60161
  • 129
  • Give it a try with some numbers, you'll see it immediately, formally without the numbers, you can have a look at the answer below. – Bob Jan 30 '13 at 12:44

3 Answers3

5

For any real numbers $a$ and $b\neq 0$, we have $-\frac{a}{b}=\frac{-a}{b}=\frac{a}{-b}$. Also, $-\frac{-a}{b}=-\frac{a}{-b}=\frac{-a}{-b}=\frac{a}{b}$.

  • To answer your question directly, @user60161, you can simply remove both of the negative signs to get $\frac x 2$. – Joe Z. Jan 30 '13 at 03:50
3

Realize that negative signs represent multiplying the number by $-1$. Any fraction can be multiplied by $\frac aa$ without changing the value, since it equals one. So, multiply your fraction by $\frac {-1}{-1}$ to clear negative signs (or to move them between the top and bottom).

2

I think that $-\frac{x}{-2}$ is equal to $\frac{-x}{-2}$, is this true?

Yes, indeed: $$-\frac{x}{-2} = -1 \times \frac{x}{-2} = \frac {-1}{1}\times \frac x{-2} = \frac{-x}{-2}$$

But you can simplify further: $$\frac{-x}{-2} = \frac{-1\times x}{-1\times 2} = \frac x2$$ by cancelling $-1$ of in the numerator and denominator.

amWhy
  • 209,954