Difference between revisions of "Proofs of trig identities"
(→Pythagorean identities) |
|||
Line 83: | Line 83: | ||
Even though with the first one and the definitions, we can make the rest from algebra, having a geometric meaning is nice when we want to know what it actually means. | Even though with the first one and the definitions, we can make the rest from algebra, having a geometric meaning is nice when we want to know what it actually means. | ||
+ | |||
+ | =Angle addition and subtraction= | ||
+ | <asy> | ||
+ | unitsize(216); | ||
+ | real d = 1/cos(radians(35)); | ||
+ | real d1 = d * cos(radians(55)); | ||
+ | real d2 = d * sin(radians(55)); | ||
+ | pair O = (0,0); | ||
+ | pair A = (cos(radians(20)),0); | ||
+ | pair B = (cos(radians(20)),sin(radians(20))); | ||
+ | pair C = (cos(radians(20)),d2); | ||
+ | pair D = (d1,d2); | ||
+ | draw(O--A--B--O--D--B--O--D--C--B); | ||
+ | dot(O); | ||
+ | dot(B); | ||
+ | dot(A,red); | ||
+ | dot(C,green); | ||
+ | dot(D,blue); | ||
+ | label("O",O,SW); | ||
+ | label("$\alpha$",shift(dir(10)/5)*O); | ||
+ | label("$\beta$",shift(dir(37.5)/5)*O); | ||
+ | label("A",A,SE,red); | ||
+ | label("B",B,E); | ||
+ | label("C",C,NE,green); | ||
+ | label("D",D,dir(122.5),blue); | ||
+ | label("$\cos \alpha$",O--A,S); | ||
+ | label("$\sin \alpha$",A--B,E); | ||
+ | label("1",O--B,dir(302.5)); | ||
+ | label("$\frac{\cos \alpha \sin \beta}{\cos \beta}$",B--C,E); | ||
+ | label("$\frac{\sin \alpha \sin \beta}{\cos \beta}$",C--D,N); | ||
+ | label("$\frac{\sin \beta}{\cos \beta}$",B--D,dir(200)); | ||
+ | label("$\frac{1}{\cos \beta}$",D--O,dir(325)); | ||
+ | </asy> | ||
+ | |||
+ | where <math>\triangle OAB \sim \triangle BCD</math> | ||
+ | |||
+ | The diagram illustrates the identities nicely. | ||
+ | |||
+ | ==<math>\sin(\alpha + \beta)</math>== | ||
+ | |||
+ | The diagram shows the height of point <math>D</math> is <math>\sin(\alpha)+\frac{\cos \alpha \sin \beta}{\cos \beta}</math>. | ||
+ | However, the length of <math>OD</math> is <math>\frac{1}{\cos\beta}</math>. To compensate, we must divide by <math>\frac{1}{\cos\beta}</math> to make it the sine. After some *easy* algebra, we arrive at <math>\sin(\alpha+\beta)=\sin\alpha\cos\beta+\sin\beta\cos\alpha</math>. | ||
+ | |||
+ | ==<math>\cos(\alpha + \beta)</math>== | ||
+ | |||
+ | The diagram says that it is <math>\cos(\alpha)-\frac{\sin \alpha \sin \beta}{\cos \beta}</math>, but we need to divide by <math>\frac{1}{\cos\beta}</math> again. We arrive at <math>\cos(\alpha+\beta)=\cos\alpha\cos\beta-\sin\alpha\sin\beta</math>. |
Revision as of 15:44, 20 January 2024
Contents
Introduction
and are easy to define. I prefer the unit circle definition as it makes these proofs easier to understand. Next, we define some other functions:
Note: I've omitted because it's unnecessary and might clog things up a little.
With a bit of ingenuity, we can create the following diagram:
We can note that the functions are correct by similar triangles.
Pythagorean identities
Pythagorean identities are easy and there's no algebra involved. In fact, the name Pythagorean is a giveaway of what we should do!
The proof here is very straightforward. We use the pythagorean theorem on giving us or .
Same story here. Applying pythagorean to gives us or .
Same. Pythagorean on gives or .
Conclusion
Even though with the first one and the definitions, we can make the rest from algebra, having a geometric meaning is nice when we want to know what it actually means.
Angle addition and subtraction
where
The diagram illustrates the identities nicely.
The diagram shows the height of point is . However, the length of is . To compensate, we must divide by to make it the sine. After some *easy* algebra, we arrive at .
The diagram says that it is , but we need to divide by again. We arrive at .