1

I am working with some textbook trigonometry. Its proofs always take the LHS and show that it is equal to the RHS, but I find cross multiplication easier and faster. Can we indeed do it my way? For example: enter image description here

ryang
  • 38,879
  • 14
  • 81
  • 179

2 Answers2

5

To write a proof formally, you should start with things that are already known to be true, and use those to derive new true statements until you reach the thing you're actually trying to prove. Working backwards from the result is a good way to figure out how to prove it, but you need to be careful to ensure that the steps you've taken are reversible.

So in your example, what you've written is what I would consider "scratch work", then the proof itself could proceed by writing the steps in reverse order. Alternatively, I might take a slightly tangential path by writing:

$$\begin{eqnarray} \frac{1 - \tan A}{1 + \tan A} - \frac{\cot A - 1}{\cot A + 1} &=& \frac{(1 - \tan A)(\cot A + 1) - (\cot A - 1)(1 + \tan A)}{(1 + \tan A)(\cot A + 1)} \\ &=& \frac{(\cot A - 1 + 1 + \tan A) - (\cot A - 1 + 1 - \tan A)}{(1 + \tan A)(\cot A + 1)} \\ &=& 0 \\ \implies \frac{1 - \tan A}{1 + \tan A} &=& \frac{\cot A - 1}{\cot A + 1}\end{eqnarray}$$

The main reason for doing it this way is to avoid introducing non-reversible steps that break the proof (like multiplying or dividing by a term that might be equal to zero).

ConMan
  • 24,300
0

Another way of doing it:

LHS: multiply numerator and denominator by $\cos A$ to get $$\dfrac {\cos A - \sin A}{\cos A + \sin A}$$.

RHS: multiply numerator and denominator by $\sin A$ to get $$\dfrac {\cos A - \sin A}{\cos A + \sin A}$$.

Since $LHS = RHS$, we are done, unless you want to simplify it further...

$$\dfrac {\cos A - \sin A}{\cos A + \sin A}\cdot \dfrac {\cos A - \sin A}{\cos A - \sin A} \\ \dfrac {\cos^2 A - 2 \sin A \cos A + \sin^2 A}{\cos^2 A - \sin^2 A} \\ \dfrac {1-\sin 2A}{\cos 2A} \\ \sec 2A - \tan 2A$$

bjcolby15
  • 3,599