Difference between revisions of "Proofs of trig identities"
m |
(→Sum to Product to Sum) |
||
(15 intermediate revisions by the same user not shown) | |||
Line 62: | Line 62: | ||
draw(shift(dir(degrees(d)+90)/4)*F--shift(dir(degrees(d)+90)/24)*F); | draw(shift(dir(degrees(d)+90)/4)*F--shift(dir(degrees(d)+90)/24)*F); | ||
</asy> | </asy> | ||
+ | |||
+ | It has three main triangles: cos-sin-1, 1-tan-sec, and cot-1-csc. | ||
We can note that the functions are correct by similar triangles. | We can note that the functions are correct by similar triangles. | ||
+ | <center>[[#toc|Back to Top]]</center> | ||
=Symmetric identities= | =Symmetric identities= | ||
Line 69: | Line 72: | ||
If we draw a few copies of the triangle, we get: | If we draw a few copies of the triangle, we get: | ||
− | <math>\sin()=\cos(90-)=-\cos(90+)=\sin(180-)=-\sin(180+)=\cos(270-)=-\cos(270+)=-\sin(-)</math> | + | <math>\sin(x)=\cos(90-x)=-\cos(90+x)=\sin(180-x)=-\sin(180+x)=\cos(270-x)=-\cos(270+x)=-\sin(-x)</math> |
− | <math>\cos()=\sin(90-)=\sin(90+)=-\cos(180-)=-\cos(180+)=\sin(270-)=-\sin(270+)=\cos(-)</math> | + | <math>\cos(x)=\sin(90-x)=\sin(90+x)=-\cos(180-x)=-\cos(180+x)=\sin(270-x)=-\sin(270+x)=\cos(-x)</math> |
− | <math>\tan()=\cot(90-)=-\cot(90+)=-\tan(180-)=\tan(180+)=\cot(270-)=-\cot(270+)=-\tan(-)</math> | + | <math>\tan(x)=\cot(90-x)=-\cot(90+x)=-\tan(180-x)=\tan(180+x)=\cot(270-x)=-\cot(270+x)=-\tan(-x)</math> |
The other three can be derived by taking the reciprocals of these three. | The other three can be derived by taking the reciprocals of these three. | ||
+ | |||
+ | x is easier to type than theta | ||
+ | <center>[[#toc|Back to Top]]</center> | ||
=Pythagorean identities= | =Pythagorean identities= | ||
Line 96: | Line 102: | ||
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. | ||
+ | <center>[[#toc|Back to Top]]</center> | ||
=Angle addition and subtraction= | =Angle addition and subtraction= | ||
+ | |||
+ | ==<math>\sin(\alpha + \beta)</math>== | ||
+ | |||
+ | When does sin appear? When does sin appear? In the first triangle, of course. Let's make a diagram! | ||
+ | |||
<asy> | <asy> | ||
unitsize(216); | unitsize(216); | ||
Line 121: | Line 133: | ||
label("C",C,NE,green); | label("C",C,NE,green); | ||
label("D",D,dir(122.5),blue); | label("D",D,dir(122.5),blue); | ||
− | label("$\cos \alpha$",O--A,S); | + | label("$\cos \alpha \cos \beta$",O--A,S); |
− | label("$\sin \alpha$",A--B,E); | + | label("$\sin \alpha \cos \beta$",A--B,E); |
− | label(" | + | label("$\cos \beta$",O--B,dir(302.5)); |
− | label("$ | + | label("$\cos \alpha \sin \beta$",B--C,E); |
− | label("$ | + | label("$\sin \alpha \sin \beta$",C--D,N); |
− | label("$ | + | label("$\sin \beta$",B--D,dir(200)); |
− | label(" | + | label("1",D--O,dir(325)); |
</asy> | </asy> | ||
Line 133: | Line 145: | ||
The diagram illustrates the identities nicely. | The diagram illustrates the identities nicely. | ||
− | |||
− | |||
The diagram shows the height of point <math>D</math> is <math>\sin(\alpha)+\frac{\cos \alpha \sin \beta}{\cos \beta}</math>. | The diagram shows the height of point <math>D</math> is <math>\sin(\alpha)+\frac{\cos \alpha \sin \beta}{\cos \beta}</math>. | ||
Line 145: | Line 155: | ||
==<math>\tan(\alpha + \beta)</math>== | ==<math>\tan(\alpha + \beta)</math>== | ||
− | This time | + | This time, let's use the tan-1-sec triangle. |
− | |||
− | |||
− | < | + | <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("1",O--A,S); | ||
+ | label("$\tan \alpha$",A--B,E); | ||
+ | label("$\sec \alpha$",O--B,dir(302.5)); | ||
+ | label("$\tan \beta$",B--C,E); | ||
+ | label(scale(0.75)*"$\tan \alpha \tan \beta$",C--D,N); | ||
+ | label(scale(0.75)*"$\sec \alpha \tan \beta$",B--D,dir(200)); | ||
+ | label(scale(0.75)*"$\sec \alpha \sec \beta$",D--O,dir(325)); | ||
+ | </asy> | ||
− | + | Wait, is that just the same diagram? No! the labels have changed! | |
− | + | Note: I did some algebra when noting that sin * sec = tan and cos * sec = 1 | |
− | + | Looking at the diagram, the height of the new triangle is <math>\tan \alpha + \tan \beta</math>, but the width is only <math>1-\tan\alpha\tan\beta</math>, so we arrive at <math>\frac{\tan\alpha+\tan\beta}{1-\tan\alpha\tan\beta}</math> | |
− | |||
− | <math>\ | + | ==<math>\sec(\alpha + \beta)</math>== |
− | <math>\ | + | I dunno why most people never use this, but it's right up there in the diagram. <math>\frac{\sec\alpha\sec\beta}{1-\tan\alpha\tan\beta}</math> |
− | <math>\ | + | ==<math>\csc(\alpha + \beta)</math>== |
− | + | Hey, if you don't need this, stop reading. | |
− | < | + | We need the third triangle here. I'm going to do something weird, you'll see why when I complete the diagram (I=[[User:Afly | afly]]. This page was all made by afly) |
+ | <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(scale(0.75)*"$\cot \alpha \cot \beta$",O--A,S); | ||
+ | label("$\cot \beta$",A--B,E); | ||
+ | label(scale(0.75)*"$\csc \alpha \cot \beta$",O--B,dir(302.5)); | ||
+ | label("$\cot \alpha$",B--C,E); | ||
+ | label("1",C--D,N); | ||
+ | label(scale(0.75)*"$\csc \alpha$",B--D,dir(200)); | ||
+ | label(scale(0.75)*"$\csc \alpha \csc \beta$",D--O,dir(325)); | ||
+ | </asy> | ||
− | <math>\ | + | Can you look at the diagram? what do you have? <math>\csc(\alpha+\beta)=\frac{\csc\alpha\csc\beta}{\cot\alpha\cot\beta-1}</math> |
− | = | + | ==<math>\cot(\alpha + \beta)</math>== |
− | |||
− | |||
− | |||
− | |||
− | <math>\ | + | Easy Peasy Lemon Squeezy. <math>\frac{\cot\alpha+\cot\beta}{\cot\alpha\cot\beta-1}</math> |
− | + | =Double angle formulas= | |
+ | This is a breeze. Just sub in for sum: | ||
− | + | <math>\sin(2\theta)=2\sin\cos</math> | |
− | <math>\theta =\ | + | <math>\cos(2\theta)=\cos^2-\sin^2</math> |
− | <math>\ | + | <math>\tan(2\theta)=\frac{2\tan}{1-\tan^2}</math> |
− | <math>\ | + | ==Variations== |
+ | Since <math>\sin^2+\cos^2=1</math>, we can edit the double angle cosine formula a bit. Here are the three most helpful variants: | ||
− | <math>\ | + | <math>\cos(2\theta)=2\cos^2-1</math> |
− | + | <math>\cos(2\theta)=\cos^2-\sin^2</math> | |
− | |||
− | |||
− | <math> | + | <math>\cos(2\theta)=1-2\sin^2</math> |
− | + | We can also solve for other expressions: | |
− | + | <math>\sin^2=\frac{1-\cos(2\theta)}{2}</math> | |
− | + | <math>\cos^2=\frac{\cos(2\theta)+1}{2}</math> | |
− | + | <center>[[#toc|Back to Top]]</center> | |
− | < | + | =Sum to Product to Sum= |
+ | These are the silliest identities I've ever seen. Do people really want to be surprised that much? | ||
+ | <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); | ||
+ | pair F = B+B-D; | ||
+ | draw(O--A--B--O--D--B--O--D--C--B--F--O); | ||
+ | dot(O); | ||
+ | dot(B); | ||
+ | dot(A,red); | ||
+ | dot(C,green); | ||
+ | dot(D,blue); | ||
+ | dot(F,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("D'",F,dir(302.5),blue); | ||
+ | label("$\cos \alpha \cos \beta$",O--A,S); | ||
+ | label("$\sin \alpha \cos \beta$",A--B,E); | ||
+ | label("$\cos \beta$",O--B,dir(302.5)); | ||
+ | label("$\cos \alpha \sin \beta$",B--C,E); | ||
+ | label("$\sin \alpha \sin \beta$",C--D,N); | ||
+ | label("$\sin \beta$",B--D,dir(200)); | ||
+ | label("1",D--O,dir(325)); | ||
+ | </asy> | ||
+ | Note: D' is the reflection of D about line OB. | ||
+ | So, we have the angles <math>\alpha+\beta</math> and <math>\alpha-\beta</math> illustrated nicely in here. B is the midpoint of DD'. It is half the sum of D and D'. Calculate the coordinates of B two ways: One by the labels on triangle AOB, and one by finding the coordinates of D and D' by the sine and cosine of <math>\alpha+\beta</math> and <math>\alpha-\beta</math>, then averaging them. | ||
− | + | Since half the difference of D to D' is the difference of B and one of them, it has the x coordinate equal to exactly the product of the sines, as illustrated above. | |
− | + | <math>\cos\alpha\cos\beta=\frac12(\cos(\alpha-\beta)+\cos(\alpha+\beta))</math> | |
+ | <math>\sin\alpha\cos\beta=\frac12(\sin(\alpha-\beta)+\sin(\alpha+\beta))</math> | ||
+ | <math>\sin\alpha\sin\beta=\frac12(\cos(\alpha-\beta)-\cos(\alpha+\beta))</math> I almost thought I got this last one wrong, but no, it's right. | ||
+ | <center>[[#toc|Back to Top]]</center> | ||
=Bonus: Product identity= | =Bonus: Product identity= | ||
Line 230: | Line 334: | ||
<math>\cos(2\alpha+k\pi)=\sin^2\alpha\cos^2\alpha</math> | <math>\cos(2\alpha+k\pi)=\sin^2\alpha\cos^2\alpha</math> | ||
+ | <center>[[#toc|Back to Top]]</center> | ||
=Halved angles= | =Halved angles= | ||
Line 254: | Line 359: | ||
<math>\pm\sqrt{\frac{1-\cos(2)}{1+\cos(2)}}\times\sqrt{\frac{1+\cos(2)}{1+\cos(2)}}=\pm\frac{\sin(2)}{1+\cos(2)}</math> | <math>\pm\sqrt{\frac{1-\cos(2)}{1+\cos(2)}}\times\sqrt{\frac{1+\cos(2)}{1+\cos(2)}}=\pm\frac{\sin(2)}{1+\cos(2)}</math> | ||
+ | <center>[[#toc|Back to Top]]</center> | ||
=Triple angles and more= | =Triple angles and more= | ||
Line 298: | Line 404: | ||
<math>\frac{\sqrt[3]{-4y+\sqrt{16y^2-1}}}{\sqrt[3]{4y+\sqrt{16y^2-1}}}</math>, <math>\frac{\sqrt[3]{-4y+\sqrt{16y^2-1}}+\sqrt[3]{-4y-\sqrt{16y^2-1}}}{\sqrt[3]{4y+\sqrt{16y^2-1}}+\sqrt[3]{4y-\sqrt{16y^2-1}}}</math>, and <math>\frac{\sqrt[3]{-4y-\sqrt{16y^2-1}}}{\sqrt[3]{4y-\sqrt{16y^2-1}}}</math> | <math>\frac{\sqrt[3]{-4y+\sqrt{16y^2-1}}}{\sqrt[3]{4y+\sqrt{16y^2-1}}}</math>, <math>\frac{\sqrt[3]{-4y+\sqrt{16y^2-1}}+\sqrt[3]{-4y-\sqrt{16y^2-1}}}{\sqrt[3]{4y+\sqrt{16y^2-1}}+\sqrt[3]{4y-\sqrt{16y^2-1}}}</math>, and <math>\frac{\sqrt[3]{-4y-\sqrt{16y^2-1}}}{\sqrt[3]{4y-\sqrt{16y^2-1}}}</math> | ||
+ | |||
+ | <center>[[#toc|Back to Top]]</center> | ||
=All identities= | =All identities= | ||
==Definition== | ==Definition== | ||
Line 319: | Line 427: | ||
<math>1+\cot^2=\csc^2</math> | <math>1+\cot^2=\csc^2</math> | ||
+ | ==Sum== | ||
==Sum== | ==Sum== | ||
<math>\sin(\alpha+\beta)=\sin\alpha\cos\beta+\sin\beta\cos\alpha</math> | <math>\sin(\alpha+\beta)=\sin\alpha\cos\beta+\sin\beta\cos\alpha</math> | ||
Line 325: | Line 434: | ||
<math>\tan(\alpha + \beta)=\frac{\tan \alpha + \tan \beta}{1 - \tan \alpha \tan \beta}</math> | <math>\tan(\alpha + \beta)=\frac{\tan \alpha + \tan \beta}{1 - \tan \alpha \tan \beta}</math> | ||
+ | |||
+ | <math>\sec(\alpha + \beta)=\frac{\sec \alpha \sec \beta}{1 - \tan \alpha \tan \beta}</math> | ||
+ | |||
+ | <math>\csc(\alpha + \beta)=\frac{\csc \alpha \csc \beta}{\cot \alpha + \cot \beta}</math> | ||
+ | |||
+ | <math>\cot(\alpha + \beta)=\frac{\cot \alpha \cot \beta - 1}{\cot \alpha + \cot \beta}</math> | ||
+ | |||
+ | Memory aids: sin is different, cos is same, tan is sum over one minus product, cot is product minus one over sum, sec is like tan but with product of sec on top, csc is like cot but with product of csc on top. | ||
==Double== | ==Double== | ||
<math>\sin(2n)=2\sin n\cos n</math> | <math>\sin(2n)=2\sin n\cos n</math> | ||
Line 384: | Line 501: | ||
[[Trigonometric identities]] | [[Trigonometric identities]] | ||
[[Category:Trigonometry]] | [[Category:Trigonometry]] | ||
− | Created by | + | |
+ | Created by [[User:Afly|Afly]] ([[User talk:Afly|talk]]) | ||
+ | <center>[[#toc|Back to Top]]</center> |
Latest revision as of 22:28, 29 August 2024
Shortcut: |
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:
It has three main triangles: cos-sin-1, 1-tan-sec, and cot-1-csc.
We can note that the functions are correct by similar triangles.
Symmetric identities
If we draw a few copies of the triangle, we get:
The other three can be derived by taking the reciprocals of these three.
x is easier to type than theta
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
When does sin appear? When does sin appear? In the first triangle, of course. Let's make a diagram!
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 .
This time, let's use the tan-1-sec triangle.
Wait, is that just the same diagram? No! the labels have changed!
Note: I did some algebra when noting that sin * sec = tan and cos * sec = 1
Looking at the diagram, the height of the new triangle is , but the width is only , so we arrive at
I dunno why most people never use this, but it's right up there in the diagram.
Hey, if you don't need this, stop reading.
We need the third triangle here. I'm going to do something weird, you'll see why when I complete the diagram (I= afly. This page was all made by afly)
Can you look at the diagram? what do you have?
Easy Peasy Lemon Squeezy.
Double angle formulas
This is a breeze. Just sub in for sum:
Variations
Since , we can edit the double angle cosine formula a bit. Here are the three most helpful variants:
We can also solve for other expressions:
Sum to Product to Sum
These are the silliest identities I've ever seen. Do people really want to be surprised that much? Note: D' is the reflection of D about line OB. So, we have the angles and illustrated nicely in here. B is the midpoint of DD'. It is half the sum of D and D'. Calculate the coordinates of B two ways: One by the labels on triangle AOB, and one by finding the coordinates of D and D' by the sine and cosine of and , then averaging them.
Since half the difference of D to D' is the difference of B and one of them, it has the x coordinate equal to exactly the product of the sines, as illustrated above.
I almost thought I got this last one wrong, but no, it's right.
Bonus: Product identity
This is a special identity. I hope this helps you.
and
There's something we can cancel.
If , then it simplifies to
Notice . If we let :
Halved angles
Starting with the identities from the double section:
We take the square root to obtain:
For tangent:
There are two nice variations to know.
Triple angles and more
Triple sums
Triple angles
Third angles
Let and . We get this depressed cubic:
First, divide both sides by -4 and rearrange: . The discriminant
Then,
The solutions are , , and .
A tiny adjustment gives us the cosine third-angle formulas:
, , and .
For tangent:
, , and
All identities
Definition
Symmetric
Pythagorean
Sum
Sum
Memory aids: sin is different, cos is same, tan is sum over one minus product, cot is product minus one over sum, sec is like tan but with product of sec on top, csc is like cot but with product of csc on top.
Double
Sum Product
Product
Halves
3 Sums
Triple
Thirds