7

It's required to prove that $$\frac{1+\cos x + \sin x}{1 - \cos x + \sin x} \equiv \frac{1+\cos x}{\sin x}$$ I managed to go about out it two ways:

  1. Show it is equivalent to $\mathsf{true}$: $$\frac{1+\cos x + \sin x}{1 - \cos x + \sin x} \equiv \frac{1+\cos x}{\sin x}$$ $$\Longleftrightarrow\sin x(1+\cos x+\sin x)\equiv(1+\cos x)(1-\cos x+\sin x)$$ $$\Longleftrightarrow\sin x+\cos x\sin x+\sin^2 x\equiv1-\cos x+\sin x+\cos x-\cos^2 x+\sin x \cos x$$ $$\Longleftrightarrow\sin^2 x\equiv1-\cos^2 x$$ $$\Longleftrightarrow\cos^2 x +\sin^2 x\equiv1$$ $$\Longleftrightarrow \mathsf{true}$$
  2. Multiplying through by the "conjugate" of the denominator: $${\rm\small LHS}\equiv\frac{1+\cos x + \sin x}{1 - \cos x + \sin x} $$ $$\equiv\frac{1+\cos x + \sin x}{1 - (\cos x - \sin x)} ~~\cdot ~~\frac{1+(\cos x - \sin x)}{1 +(\cos x - \sin x)}$$ $$\equiv\frac{(1+\cos x + \sin x)(1+\cos x - \sin x)}{1 - (\cos x - \sin x)^2}$$ $$\equiv\frac{1+\cos x - \sin x+\cos x + \cos^2 x - \sin x \cos x+\sin x + \sin x \cos x - \sin^2 x}{1 - \cos^2 x - \sin^2 x + 2\sin x \cos x}$$ $$\equiv\frac{1+ 2\cos x + \cos^2 x- \sin^2 x}{2\sin x \cos x}$$ $$\equiv\frac{1+ 2\cos x + \cos^2 x- 1 + \cos^2 x}{2\sin x \cos x}$$ $$\equiv\frac{2\cos x (1+\cos x)}{2\cos x(\sin x)}$$ $$\equiv\frac{1+\cos x}{\sin x}$$ $$~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\equiv {\rm\small RHS}~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\square$$ Both methods of proof feel either inelegant or unnecessarily complicated. Is there a simpler more intuitive way to go about this? Thanks.
Luke Collins
  • 8,748
  • 2
    For (1), you are not assuming it holds, since you have all those $\iff$ steps. Not sure how it helps, but the right side is one of the half-angle formulae - $\cot(x/2)$. – Thomas Andrews Dec 26 '15 at 23:34
  • @ThomasAndrews That's true; but it's not a deductive $LHS \equiv \dots \equiv RHS$ type thing, which is what I was looking for. Interesting point about the half-angle formulae, thanks. – Luke Collins Dec 26 '15 at 23:37
  • Still, "assume" is wrong. You aren't assuming it, you are proving an equivalence and proving that each statement implies the other. Indeed, you don't even need the $\implies$ direction of that argument. – Thomas Andrews Dec 26 '15 at 23:42
  • @ThomasAndrews Right you are. – Luke Collins Dec 26 '15 at 23:46
  • Related : http://math.stackexchange.com/questions/426981/need-help-in-proving-that-frac-sin-theta-cos-theta-1-sin-theta-cos?lq=1 and http://math.stackexchange.com/questions/619043/how-do-i-verify-frac-sin-x-cos-x-1-sin-x-cos-x-1-frac-sin-x?lq=1 – lab bhattacharjee Dec 27 '15 at 03:50

5 Answers5

13

Since $1-\cos^2 x = \sin^2 x$, we have $f(x) := \dfrac{1+\cos x}{\sin x} = \dfrac{\sin x}{1-\cos x}$. Therefore,

\begin{align*}\dfrac{1+\cos x + \sin x}{1-\cos x + \sin x} &= \dfrac{f(x)\sin x + f(x)(1-\cos x)}{1-\cos x + \sin x} \\ &= \dfrac{f(x)[1-\cos x + \sin x]}{1-\cos x + \sin x} \\ &= f(x) \\ &= \dfrac{1+\cos x}{\sin x}.\end{align*}

JimmyK4542
  • 54,331
6

For fun, I created a trigonograph:

enter image description here

$$\frac{1 + \cos\theta + \sin\theta}{1 + \sin\theta - \cos\theta} = \frac{1 + \cos\theta}{\sin\theta}$$

Blue
  • 75,673
4

Observe $$(1 - \cos x + \sin x)(1 + \cos x) = (1 - \cos^2 x) + (1 + \cos x)\sin x = \sin^2 x + (1 + \cos x)\sin x = (1 + \cos x + \sin x)\sin x,$$ from which the result immediately follows.

heropup
  • 135,869
2

if $$ \frac{a}{b}=\frac{c}{d}=k $$ then $$ \frac{a+c}{b+d} = \frac{kb+kd}{b+d} =k =\frac{a}{b} $$ since $$1-\cos^2 x =(1+\cos x)(1-\cos x) =\sin^2 x$$ we have $$ \frac{1+\cos x}{\sin x} = \frac{\sin x}{1-\cos x} =\frac{1+\cos x +\sin x}{1 -\cos x +\sin x} $$

David Holden
  • 18,040
1

alternatively, using abbreviations $c=\cos x$ and $s=\sin x$ we have $$ s(1+c+s)=s(1+c) + s^2 = s(1+c) + 1-c^2=s(1+c)+(1-c)(1+c)=(1+s-c)(1+c) $$

David Holden
  • 18,040