Question 255679
how do i do the 45 45 90 and the 30 60 90 triangles
<pre><font size = 4 color = "indigo"><b>
For the 45°-45°-90° right triangle

Start with a 1x1 square,

{{{drawing(200,200, -.5,1.5,-.5,1.5, rectangle(0,0,1,1),
locate(.5,0,1), locate(1,.5,1), rectangle(0,0,.1,.1),
rectangle(0,.9,.1,1), rectangle(.9,0,1,.1), rectangle(.9,.9,1,1)  
 )}}}

It has four right, or 90° angles.

Now cut it into two congruent right triangles by drawing
a diagonal from the lower left to the upper right, like this:

{{{drawing(200,200, -.5,1.5,-.5,1.5, rectangle(0,0,1,1),
locate(.5,0,1), locate(1,.5,1), rectangle(0,0,.1,.1),
rectangle(0,.9,.1,1), rectangle(.9,0,1,.1), rectangle(.9,.9,1,1),
line(0,0,1,1)
  
 )}}}

That diagonal bisects the right angles on the lower left
and upper right corners, each into two 45° angles. Now
take away the top triangle, leaving only the bottom half:

{{{drawing(200,200, -.5,1.5,-1,1.5, triangle(0,0,1,1,1,0),
locate(.5,0,1), locate(1,.5,1), rectangle(.9,0,1,.1)
  
 )}}}

Now you have a 45°-45°-90° right triangle.

{{{drawing(200,200, -.5,1.5,-1,1.5, triangle(0,0,1,1,1,0),
locate(.5,0,1), locate(1,.5,1), rectangle(.9,0,1,.1),
locate(.15,.17,"45°"), locate(.8,.81,"45°")
  
 )}}}

Use the Pythagorean theorem to calculate its hypotenuse:

{{{c^2=a^2+b^2}}}
{{{c^2=1^2+1^2}}}
{{{c^2=1+1}}}
{{{c^2=2}}}
{{{c=sqrt(2)}}}

So the length of the hypotenuse is {{{sqrt(2)}}}

{{{drawing(200,200, -.5,1.5,-1,1.5, triangle(0,0,1,1,1,0),
locate(.5,0,1), locate(1,.5,1), rectangle(.9,0,1,.1),
locate(.15,.17,"45°"), locate(.8,.81,"45°"),
locate(.3,.6,sqrt(2))
  
 )}}}

Now memorize the way this right triangle looks and the 
lengths of the three sides.  For you will need it to find 
the exact values for the sine, cosine, and tangent of 45°:

{{{sin("45°")=(opposite)/(hypotenuse)=1/sqrt(2)=sqrt(2)/2}}}, (after rationalizing the denominator)

{{{cos("45°")=(adjacent)/(hypotenuse)=1/sqrt(2)=sqrt(2)/2}}}, (after rationalizing the denominator)

[Notice that the sine and cosine of 45° are the same!]

{{{tan("45°")=(opposite)/(adjacent)=1/1=1}}}.

--------------------------------------------------------

For the 30°-60°-90° right triangle

Start with an equilateral triangle, each side of
which has length 2,

{{{drawing(200,200, -.5,2.5,-.5,2.5, triangle(0,0,2,0,1,sqrt(3)),  
locate(1,0,2), locate(.3,.9,2),locate(1.6,.9,2) )}}}

It has three 60° angles.

{{{drawing(200,200, -.5,2.5,-.5,2.5, triangle(0,0,2,0,1,sqrt(3)),
locate(.2,.25,"60°"),locate(1.5,.25,"60°"),locate(.85,1.45,"60°"),
locate(1,0,2), locate(.3,.9,2),locate(1.6,.9,2)
 )}}}

Now cut it into two congruent triangles by drawing a median, which
is also an altitude as well as a bisector of the upper 60°-vertex angle:

{{{drawing(200,200, -.5,2.5,-.5,2.5, triangle(0,0,2,0,1,sqrt(3)),
locate(.2,.25,"60°"),locate(1.5,.25,"60°"),locate(.85,1.45,"60°"),
line(1,0,1,sqrt(3)), rectangle(.8,.2,1),
locate(1,0,2), locate(.3,.9,2),locate(1.6,.9,2)
 )}}}
  
That bisects the upper 60° angle into two 30° angles. It also
bisects the base of the equilateral into two parts, each with
length 1. Now take away the triangle on the right, leaving only 
the one on the left:

{{{drawing(200,200, -.5,2.5,-.5,2.5, triangle(0,0,1,0,1,sqrt(3)),
locate(.2,.25,"60°"), locate(.65,1.15,"30°"),locate(.3,.9,2),
locate(.5,0,1), line(1,0,1,sqrt(3)), rectangle(.8,.2,1) )}}}


Now you have a 30°-60°-90° right triangle.

Use the Pythagorean theorem to calculate its altitude:

{{{c^2=a^2+b^2}}}
{{{2^2=1^2+b^2}}}
{{{4=1+b^2}}}
{{{3=b^2}}}
{{{sqrt(3)=b}}}

So the length of the altitude is {{{sqrt(3)}}}

{{{drawing(200,200, -.5,2.5,-.5,2.5, triangle(0,0,1,0,1,sqrt(3)),
locate(.2,.25,"60°"), locate(.65,1.15,"30°"),locate(.3,.9,2),
locate(1.1,.85,sqrt(3)),
locate(.5,0,1), line(1,0,1,sqrt(3)), rectangle(.8,.2,1) )}}}
  
Now memorize the way this right triangle looks and the lengths 
of the three sides.  For you will need it to find the exact
values for the sine, cosine, and tangent of BOTH 60° AND 30°:

{{{sin("60°")=(opposite)/(hypotenuse)=sqrt(3)/2}}},

{{{cos("60°")=(adjacent)/(hypotenuse)=1/2}}}, 

{{{tan("60°")=(opposite)/(adjacent)=sqrt(3)/1=sqrt(3)}}}.

{{{sin("30°")=(opposite)/(hypotenuse)=1/2}}},

{{{cos("30°")=(adjacent)/(hypotenuse)=sqrt(3)/2}}}, 

{{{tan("30°")=(opposite)/(adjacent)= 1/sqrt(3)=sqrt(3)/3}}},
after rationalizing

[Notice that the sine of 60° and the cosine of 30° are the same,
and also that the sine of 30° and the cosine of 60° are the same!]

Edwin</pre>