2

So I was trying to find the point of the lower half of $y^2 + x^2 = 4 $ where the slope tangent line is equal to $1$ using calculus.

By my estimation:

$\frac{x}{\sqrt {4-x^2}}=1$ , $ -2<x<2 $

$ x^2 = 4-x^2 $

$x^2=2$

$ x = \pm \sqrt 2 $

What am I missing here? Obviously $ -\sqrt 2$ isn't a solution, since the function is odd.

So when we have $ \pm $ is it a true OR, ie. one or both of those numbers is a solution and we have to manually discern the correct solution(s) after the fact? Or is there a way to rule one out during the solving process?

From what I understand, the meaning of $x = \pm \sqrt 2$ is $|x| = \sqrt 2 $, which is true in this context. So In the case of an even function can we always assume that when we find $ x = \pm a $ that it is $ x = + \&- a$, and in the case of an odd function can we always assume that it is $x = + \veebar - a $ ?

emillike
  • 121

2 Answers2

2

Some algebraic steps are reversible, meaning that the equation before the step is true if and only if the equation after the step is true. For example, adding a constant to both sides of an equation is reversible: $x=y-7$ is true if and only if $x+7=y$ is true.

Some algebraic steps are valid but not reversible, meaning that if the equation before the step is true then the equation after the step is true, but not necessarily vice versa. For example, applying cosine to both sides of an equation is a valid but non-reversible step: if $x=y$ then $\cos x=\cos y$, but if $\cos x=\cos y$ then it's not necessarily the case that $x=y$ (take $x=0$ and $y=2\pi$ for example). Applying a non-reversible algebraic step is the most common way that "false solutions" arise in algebra.

Squaring both sides of an equation is a non-reversible algebraic step. It's valid (if $x=y$ then $x^2=y^2$) but its reverse is not always valid (for example, $(-3)^2=3^2$ but $-3\ne3$). Therefore, when you go from the first line to the second line by (multiplying and) squaring both sides, there is the potential for additional solutions to arise (that is, numbers $x$ that are solutions to the second line but not solutions to the first line). That is in fact what you observed.

Non-reversible steps are still very useful, as they limit the set of possible solutions; but using them requires us to check the list of possible solutions to see whether they are actual solutions to the original equation. There might be other ways to solve this original equation using only reversible steps, but I think it's better to get used to the fact that non-reversible steps are very useful and just complete the algebraic process of checking the potential solutions found.

(And, as Vinyl_cape_jawa notes, when you say "the tangent line is equal to $1$", you should say "the slope of the tangent line is equal to $1$". Mathematics is such a precise language that it's a good habit to develop to be very precise when speaking about it.)

Greg Martin
  • 78,820
2

It can sometimes be helpful to use a little logical notation to connect the steps in a solution. In this case we have

$${x\over\sqrt{4-x^2}}=1\iff x=\sqrt{4-x^2}{\color{red}\implies} x^2=4-x^2\iff x^2=2\iff x=\pm\sqrt2$$

The key here is the red ${\color{red}\implies}$ in the midst of a bunch of $\iff$'s. Its effect is to say that if $x$ is a solution to the original equation $x/\sqrt{4-x^2}=1$, then $x$ is either $\sqrt2$ or $-\sqrt2$, but the converse may not hold. The reason why is nicely explained in Greg Martin's answer: If two things are equal, their squares are also equal, but the reverse is not necessarily true, e.g., $(-1)^2=1^2$ but $-1\not=1$.

Barry Cipra
  • 79,832