Understanding the general pattern at work: equational reasoning can obscure underlying logical structure
This kind of equational reasoning is a useful tool when applied appropriately, but many explorers find themselves, as in this question, confused as to how to ensure they are performing valid reasoning: 'I did only valid equational manipulations which always worked before, what went wrong?'
In particular, the folk equational reasoning consists of writing down equations and their manipulations without tracking the lines of implication between them. But there is an important perspective shift which transforms this tool from confusing to crystal clear - just look at the logical structure implicit in your equations!
A few general observations
What is a 'solution'?
To be a solution to an equation is to imply the equation (e.g. $x = 1 \implies x^2 = 1$ and $x=-1 \implies x^2 = 1$).
Note that the reverse is not necessarily true: if an equation has multiple solutions, it only implies that one or other solution is true. It doesn't imply each individually (unless the solution is unique).
$$x=1 \implies x^2 = 1$$
$$x^2 = 1 \quad \not \!\!\!\!\implies x=1$$
But we can say that an equation implies the disjunction (or) of all of its solutions, and vice versa
$$x^2 = 1 \iff (x = 1) \lor (x = -1) $$ (read $x = 1$ OR $x = -1$).
So we can see there's a difference between 'find a solution' and 'find the solution' and 'find all solutions' (aka 'solve'), though in natural language we sometimes equivocate between these.
What is an equational manipulation?
Applying a function to both sides of an equation leads to a valid implication of the equation, but the reverse implication is not necessarily valid. In logical terms, we have the schema
$$a = b \implies f(a) = f(b)$$
for any expressions $a, b$ and function/formula $f$.
Now, if there is an inverse $f^{-1}$ of $f$ (for example if $f$ is an addition or subtraction) then we do have the implication in the other direction because (by the schema)
$$f(a) = f(b) \implies f^{-1}(f(a)) = f^{-1}(f(b))$$
and the latter is the same as $a = b$ by the inverse relationship of $f$ and $f^{-1}$.
But if that inverse does not exist, we do not have the reverse implication.
Squaring
In the case of squaring equations, $f$ has $f(a) = a^2$. This function is not invertible in general (though it is if we already know $a > 0$).
A few other common cases
- Addition and subtraction always have inverses.
- Division (by nonzero) always has an inverse. If we divide by something that might be zero, we might draw invalid conclusions.
- Multiplication (by nonzero) always has an inverse. If we multiply by something that might be zero, it might not be invertible and we need to check (or assert it is not zero).
- Exponentiation always has an inverse.
- Logarithm (of nonzero) always has an inverse.
I analyze your 3 steps.
- $\sqrt{x^2 - 1} = x - 3$
- $x^2 - 1 = x^2 + 9 - 6x$
- $x = \frac 5 3$
Now certainly 3 $\implies$ 2. So 3 is one solution to 2.
But as we noted, squaring is not invertible. So although 1 (our target) $\implies$ 2, we do not have the reverse.
We can write (abusing notation a little)
1 $\implies$ 2 $\impliedby$ 3. But for 3 to be a solution to 1, we need 3 $\implies$ 1, which we don't have.
Candidate solutions
In general, we can often perform non-invertible transformations (like your squaring) to manipulate facts we know (like your target equation) into other facts we can deduce. If those other facts are in familiar or easy forms (like your nice quadratic) it can be a useful generator of candidate solutions which we might not have found otherwise.
But unless we have the backwards implication from candidate solution to target equation, we do not have a solution. So here's a general rule of thumb (which, importantly, always works!):
If the lines of implication between your equations don't point all the way from 'solution' to target, you have a candidate 'solution' and need to check. In equational reasoning, this is any time you apply a non-invertible transformation.
y = 1/csc(0)
is not equal tosin(0)
, for example. – Barry Carter Jul 24 '22 at 14:55