Difference between revisions of "Angle Addition Formulas (Trigonometry)"

(Blanked the page)
Line 1: Line 1:
[asy]
+
 
real a,b,c;
 
a=0.4924;
 
b=0.5467;
 
c=a+b;
 
pair A,B,C,D,E,F;
 
A=(0,0);
 
D=(cos(c),sin(c));
 
B=(cos(a)*cos(b),0);
 
C=(cos(a)*cos(b),sin(a)*cos(b));
 
draw(A--B--C--D--cycle);
 
draw(A--C);
 
E=foot(D,A,B);
 
draw(D--E);
 
F=foot(C,D,E);
 
draw(C--F);
 
draw(anglemark(B,A,C,4));
 
draw(anglemark(C,A,D,5.5));
 
label("<math>\alpha</math>", A ,7*dir(a*30));
 
label("<math>\beta</math>", A ,9*dir(b*45+ a*30));
 
[/asy]
 

Revision as of 15:59, 26 November 2014