1

So I know that $x^{-1} = 1/x$ by definition. yeah okay, why can't you move a variable with an exponent to the top or bottom of a fraction when you have addition or subtraction involved? for example.

$$\frac{x^{-3} + 5}{x^8}$$

why can't you make this $5/x^{11}$ ?

Please explain in a really simple way. I'm stupid :'(

  • In a nutshell, it's because the sort of manipulation is for the factors of the numerator or denominator, not the terms of them. (Factors of an expression are the pieces multiplied by the rest of the expression, terms of an expression are the pieces added to the rest of the expression.) – MPW Nov 28 '14 at 12:06

3 Answers3

1

There are several steps implicit in doing this. You have memorized a shortcut without understanding why it works, and it is causing problems. This is why it works:

$$\boxed{\dfrac{5x^{-2}}{7y}}=\frac{5x^{-2}}{7y}\cdot\frac{x^2}{x^2}=\frac{5x^{-2}\cdot x^2}{7y\cdot x^2}=\frac{5x^{-2+2}}{7x^2y}=\frac{5x^{0}}{7x^2y}=\frac{5(1)}{7x^2y}=\boxed{\dfrac{5}{7x^2y}}$$

Now, what happens if there is a sum instead of a product in the numerator? Let's try:

$$\boxed{\dfrac{5+x^{-2}}{7y}}=\frac{5+x^{-2}}{7y}\cdot\frac{x^2}{x^2} =\frac{5\cdot x^2+x^{-2}\cdot x^2}{7y\cdot x^2}$$ $$=\frac{5x^2+x^{-2+2}}{7x^2}=\frac{5x^2+x^{0}}{7x^2} = \boxed{\dfrac{5x^2+1}{7x^2}} $$

So now you see what went wrong. The problem is that when there is addition involved, the extra factor you put into the top and bottom gets distributed across every term. It's because of the distributive law--that's how multiplication interacts with addition.

MPW
  • 43,638
0

That is because in the general case, $\dfrac{a+b}{c} \neq \dfrac{b}{a^{-1}\times{}c}$.

$\dfrac{a+b}{c} = \dfrac{a^{-1}(a+b)}{a^{-1}\times{}c} = \dfrac{1+(a^{-1}\times{}b)}{a^{-1}\times{}c}$ and in general, $b \neq 1+a^{-1}\times{}b$.

Traklon
  • 2,838
0

Because the question, re-phrased, is:$$\frac{x^{-3}}{x^8}+\frac{5}{x^8},$$meaning you have to look at each separately, giving you a correct alternative:$$\frac{1}{x^{11}}+\frac{5}{x^8}.$$

Hernandez
  • 489