7

For well known identities

$$ \sin(\alpha \pm \beta) = \sin\alpha\cos\beta \pm \cos\alpha\sin\beta $$ $$ \cos(\alpha \pm \beta) = \cos\alpha\cos\beta \mp \sin\alpha\sin\beta $$

is it possible to provide a proof which does not involve geometric meaning of sine and cosine functions (that is use of Ptolemy’s theorem)?

Blue
  • 75,673
scrutari
  • 279
  • 3
    Then do you want to start with alternative definitions of these functions? Any algebraic definitions would reduce the proof to an easy calculation. For example, define them as the real and imaginary parts of $e^{ix}$. – Aravind Feb 17 '19 at 14:27

3 Answers3

13

The answer is that it depends how you define the sine and cosine functions; if they have a geometric definition then geometry has to come in somewhere. In fact, they relate closely to the concept of similarity in the Euclidean plane, and are useful in this context because similar triangles have equal angles.

Sine and cosine are also related to the exponential function in the complex plane through the identity $$e^{ia}=\cos a +i\sin a,$$ and we can compute \begin{align} e^{i(a+b)}&=e^{ia}e^{ib}\\ \cos (a+b)+i\sin (a+b)&=(\cos a +i\sin a)(\cos b +i\sin b)\\ &=(\cos a\cos b-\sin a \sin b)+i(\sin a \cos b+\cos a\sin b). \end{align}

Equating real and imaginary parts then gives what we want, and this is applicable generally. Some geometric proofs and constructions apply only to a specific range of values or require considering various cases.

Mark Bennet
  • 100,194
  • could you please explain the third equality? – scrutari Feb 17 '19 at 14:55
  • @scrutari That comes from expanding the product of brackets and using $i^2=-1$. There are two terms in each bracket, therefore four in the product, and these are gathered together in pairs. I've probably put the second pair in a confusing order. – Mark Bennet Feb 17 '19 at 15:18
  • Apologies for the confusion, I meant transition from $\cos(a + b) + i \sin(a + b)$ to $(\cos a + i \sin a)(\cos b + i \sin b)$. – scrutari Feb 17 '19 at 16:01
  • 1
    @scrutari: That's saying $e^{i(a+b)}=e^{ia}e^{ib}$ – J. W. Tanner Feb 17 '19 at 16:05
  • Right, of course :) thank you! – scrutari Feb 17 '19 at 16:07
  • 2
    This sort of just reduces it to the question "How do you prove that $e^{i(a+b)} = e^{ia} e^{ib}$, without using the sum identities?" It's easy to want to say it's obvious, because the notation $e^z$ for the exponential function makes you assume that it obeys laws of exponents, but that's something that needs to be proved. – Nate Eldredge Feb 17 '19 at 20:55
  • @NateEldredge Of course that is a correct and astute observation - the reason that the exponential notation is used for the exponential function is that it obeys the rules for exponents - but that has to be proved. To use this "pure" you have to define the sine and cosine functions from the series or some such, and then you have the work of showing that they are the same as the functions defined geometrically to justify using the same name. You can use the unit circle to do this, but I think similarity is in the background as a geometric concept. Thanks for the helpful comment. – Mark Bennet Feb 17 '19 at 21:45
  • The original proof of Euler's identity was achieved by comparing Taylor's series expansions of the exponential and trig expressions. The Taylor's series for sine, cosine, and exponential are all well known - the trick was accounting for imaginary and real terms separately. – Peter Feb 18 '19 at 10:35
11

Here's an approach I recently assigned as homework that needs nothing more than simple calculus facts. No complex numbers, in particular.

Suppose you know only the following: $$\sin'=\cos, \quad \cos'=-\sin, \quad \sin 0 = 0, \quad \cos 0 = 1$$

As a warmup, prove the Pythagorean identity $\sin^2 x + \cos^2 x = 1$. (Hint: let $f(x) = \sin^2 x + \cos^2 x$ and compute $f'$.) In particular, $|\sin x|\le 1$ and $|\cos x| \le 1$.

Now fix $a$ and consider the function $$g(x) = \sin(x+a) - \sin x \cos a - \cos x \sin a.$$ Compute $g'$ and $g''$, and note that $g'' = -g$. Verify that $g^{(n)}(0) = 0$ for every $n$, and that $|g^{(n)}(x)| \le 3$ for every $n,x$. Now apply Taylor's theorem with Lagrange remainder (which is really just a consequence of the mean value theorem) to bound the difference $|g(x) - p_n(x)|$, where $p_n$ is the $n$th degree Taylor polynomial of $g$ centered at 0. But $p_n=0$. Letting $n \to \infty$ you can conclude $g \equiv 0$.

For the identity involving $\cos(x+a)$, consider $g'$. The minus versions may be done similarly via the function $h(x) = \sin(a-x) - \sin a\cos x + \cos a \sin x$, or by showing separately that $\sin$ is an odd function and $\cos$ is an even function.

Some variations:

  • If you know about real analytic functions, and you know that $\sin x, \cos x,\sin(x+a)$ are all real analytic, then you are done as soon as you show that $g^{(n)}=0$ for every $n$.

  • If you know about uniqueness of solutions to ODEs, then just note that $g(0) = g'(0) = 0$ and $g'' = -g$.

Nate Eldredge
  • 97,710
  • 1
    I like this approach, quite intense in using theorems from various parts of Maths, though "No complex numbers" in fact means "but use the rest of Maths instead" :) – scrutari Feb 17 '19 at 19:55
  • 1
    I think if you look carefully, other than the variations, that this really doesn't use anything except basic facts about derivatives (product rule, chain rule, etc) and the mean value theorem. (Taylor's theorem is just a repeated application of the mean value theorem.) – Nate Eldredge Feb 17 '19 at 20:50
  • This is a nice approach (+1). There are various ways of showing that the derivatives are as stated in the assumptions. How this is done depends on the definition, and I think it has to be done with some care to avoid being circular. – Mark Bennet Feb 17 '19 at 21:52
  • @MarkBennet: Yes, certainly. The OP didn't state definitions, so one has to assume something, and I wanted to state clearly what I was assuming. But I think these are fairly safe. They could be the definition, if you know about existence and uniqueness of solutions to ODEs. Or, if your definition is in terms of power series, these facts are almost immediate if you are careful about convergence. – Nate Eldredge Feb 17 '19 at 21:56
  • Not using complex numbers would be good if we also could provide a pure algebraic (i.e. elementary) proof which does not involve analysis or calculus, but probably the very nature of sine and cosine functions wouldn't allow this. – scrutari Feb 17 '19 at 21:57
  • 3
    @scrutari: To do that, you'll have to give a "pure algebraic" definition of the sine and cosine functions. Given that they are transcendental, this seems hard to do. – Nate Eldredge Feb 17 '19 at 21:58
  • @NateEldredge, yes, I completely agree. – scrutari Feb 17 '19 at 22:11
  • Indeed, I have seen the whole development of the functions along those lines. The first time I really thought about the issues here was reading GH Hardy's Pure Mathematics. So very often they are skated over, and I think they are quite interesting. – Mark Bennet Feb 17 '19 at 22:13
6

Just to share my idea. I will not say that my proof doesn't involve geometry.

Let $A=(\cos\alpha,\sin\alpha)$ and $B=(\cos\beta,\sin\beta)$. Then

$$AB^2=(\cos\alpha-\cos\beta)^2+(\sin\alpha-\sin\beta)^2=2-2\cos\alpha\cos\beta-2\sin\alpha\sin\beta$$

On the other hand,

$$AB^2=OA^2+OB^2-2(OA)(OB)\cos\angle AOB=1^2+1^2-2(1)(1)\cos(\alpha-\beta)$$

This proves that $\cos(\alpha-\beta)=\cos\alpha\cos\beta+\sin\alpha\sin\beta$. The proof holds for arbitrary $\alpha$ and $\beta$.

$\cos(\alpha+\beta)=\cos\alpha\cos(-\beta)+\sin\alpha\sin(-\beta)=\cos\alpha\cos\beta-\sin\alpha\sin\beta$

$\sin(\alpha+\beta)=\cos\left(\frac{\pi}{2}-\alpha-\beta\right)=\cos\left(\frac{\pi}{2}-\alpha\right)\cos\beta+\sin\left(\frac{\pi}{2}-\alpha\right)\sin\beta=\sin\alpha\cos\beta+\cos\alpha\sin\beta$

$\sin(\alpha-\beta)=\sin\alpha\cos(-\beta)+\cos\alpha\sin(-\beta)=\sin\alpha\cos\beta-\cos\alpha\sin\beta$

Bysshed
  • 1,864
CY Aries
  • 23,393