Tuesday, March 22, 2016

complex numbers - 1 = -1 Clearest way to explain why this proof is wrong.

Say you are a high school student or a young undergrad. You are being taught about complex numbers and you are told that $i = \sqrt{-1}$.



You go home and you write this:
\begin{equation}
\begin{aligned}
1 & = 1 \\
1 & = \sqrt{1} \\

1 & = \sqrt{(-1)(-1)} \\
1 & = \sqrt{-1}\sqrt{-1} \\
1 & = i \times i \\
1 & = i^2 \\
1 & = -1
\end{aligned}
\end{equation}



You are dismayed. The infamous imaginary numbers are inconsistent after all!







The best answer would be the clearest explanation of why the "proof" is faulty, keeping in mind the level of the student. An explanation is extra clear if t presents insights to the student, as well as being correct and concise.

No comments:

Post a Comment

analysis - Injection, making bijection

I have injection $f \colon A \rightarrow B$ and I want to get bijection. Can I just resting codomain to $f(A)$? I know that every function i...