In a linear algebra text book, one homework question I received was:
Prove that $\mathbf{a \cdot b} = \frac{1}{4}(\|\mathbf{a + b}\|^2 - \|\mathbf{a - b}\|^2)$.
Where $\mathbf{a}$ and $\mathbf{b}$ are vectors in $\Bbb{R}^n$.
This is trivial to prove if we start from $\frac{1}{4}(\|\mathbf{a + b}\|^2 - \|\mathbf{a - b}\|^2)$ and reverse engineer it in $\Bbb{R}^2$: $$ \|\mathbf{a + b}\|^2 = a_1^2 + 2a_1b_1 + b_1^2 + a_2^2 + 2a_2b_2 + b_2^2 \\ \|\mathbf{a - b}\|^2 = a_1^2 - 2a_1b_1 + b_1^2 + a_2^2 - 2a_2b_2 + b_2^2 \\ \|\mathbf{a + b}\|^2 - \|\mathbf{a - b}\|^2 = 4a_1b_1 + 4a_2b_2 \\ \frac{1}{4}(\|\mathbf{a + b}\|^2 - \|\mathbf{a - b}\|^2) = \frac{4}{4}(a_1b_1 + a_2b_2) \\ = a_1b_1 + a_2b_2 = \mathbf{a \cdot b} $$
But I'm worried about whether or not proofs like this are "legal", if that makes any sense. There was no wording in the question stating that I couldn't start from the right side of the identity, but I still have this strange feeling of guilt that I should've tried solving the identity starting from the left side and working in the "normal" direction.
For questions like these, is it okay to start from the right side of the identity? Would what I get out of doing the question in reverse be the same as if I did it normally?
0 = 1
. Proof: Start from 0 = 1. Then by symmetry 1 = 0. Add these two equations: 1 = 1. This is trivially true, so we're done - just read these steps backwards for the proof.If you want to be really sure, I would always write down the full proof the other way around.
– CompuChip Jun 30 '14 at 09:40x=y
then alsoy=x
. Moreover,x=y
if and only ify=x
. So why not just start fromy=x
instead ofx=y
, and then you are doing it "the right way 'round". – Zane Jul 01 '14 at 12:41Moreover, this is (in my opinion) one of the most important things in mathematics: CREATION. After something is created, proving it (knowing what we are expecting to prove) becomes an exercise (just like that one you've offered to us).
– Daniel Jul 02 '14 at 11:42