3

this may seem very dumb, but for some reason I can't quite remember how to simplify an equation of the following form in order to get $x$ in terms of $y$ or vice-versa

$$ x^2 -2xy = y - y^2 $$

i keep getting stuck at the $2xy$ term

Robert Shore
  • 23,332
JoeVictor
  • 553
  • 2
  • 12

1 Answers1

2

To go about solving this one, remember the property that $(a+b)^2=a^2+2ab+b^2$. This comes from the definition of squaring, to multiply something by itself, so we see that $(a+b)^2=(a+b)(a+b)$. Using FOIL, this evaluates to the equation above.

Next, recall that any negative number squared is positive. That is, $(a-b)^2=a^2-2ab+b^2$. If we replace the $a$ and $b$ with $x$ and $y$, we get that $(x-y)^2=x^2-2xy+y^2$. Now, it would make sense to rearrange the equation by adding $y^2$ to each side, into the equation $x^2−2xy+y^2=y$. Using the property above, this is equivalent to $(x-y)^2=y$.

Following this step, take the square root of each side into $x-y=\pm\sqrt{y}$. the final step is to add $y$, which gives the equality $x=y\pm\sqrt{y}$. Hope this helps!