Application Center - Maplesoft

App Preview:

Trigonometry: Complete Set of Lessons

You can switch back to the summary page by clicking here.

Learn about Maple
Download Application


 

T01-Angles.mws

High School Modules > Trigonometry by Gregory A. Moore

Angles


Exploration of Degree and Radian measure of angles.

[Directions : Execute the Code Resource section first. Although there will be no output immediately, these definitions are used later in this worksheet.]

0. Code

> restart; with(plots): with(plottools):

Warning, the name changecoords has been redefined

Warning, the name arrow has been redefined

> libname:="C:\\Program Files\\Maple 7\\LIB\\Trig\\", libname:

1. Degrees


A degree is 1/360 of a rotation. If you were to stand in one point and rotate, your view would sweep out 360 degrees in a complete rotation. One degree, is therefore, very small.

> DegreePlot(1);

[Maple Plot]


30 degrees is a more reasonably sized angled.

> DegreePlot(30);

[Maple Plot]


90 degrees is called a "right angle".

> DegreePlot(90);

[Maple Plot]


135 degrees is into the second quadrant.

> DegreePlot(135);

[Maple Plot]




Above 180 degrees, angles start to get into the 3rd quadarant.

> DegreePlot(210);

[Maple Plot]



And above 270 degrees, angles get into the 4th quadrant.

> DegreePlot(300);

[Maple Plot]


Why is 360 used? The ancient Babylonians computed there were 360 days in a year. The passage of seasons is a universally known cycle, so the Babylonians assigned degrees of a circle to days of the year. 360 is also a convenient number to be divided! Since we often deal with fractions of a circle, its convenient to divide 360 by various denominators. Here is the set of 24 whole numbers that divide 360. In fact, the smaller integer that does NOT divide 360 is 7.

> numtheory[divisors](360);

{1, 2, 3, 4, 5, 6, 8, 9, 10, 12, 15, 18, 20, 24, 30...

> for k from 1 to 23 do cat(numtheory[divisors](360)[k],` * `,
360/numtheory[divisors](360)[k], ` = 360`); od;

`1 * 360 = 360`

`2 * 180 = 360`

`3 * 120 = 360`

`4 * 90 = 360`

`5 * 72 = 360`

`6 * 60 = 360`

`8 * 45 = 360`

`9 * 40 = 360`

`10 * 36 = 360`

`12 * 30 = 360`

`15 * 24 = 360`

`18 * 20 = 360`

`20 * 18 = 360`

`24 * 15 = 360`

`30 * 12 = 360`

`36 * 10 = 360`

`40 * 9 = 360`

`45 * 8 = 360`

`60 * 6 = 360`

`72 * 5 = 360`

`90 * 4 = 360`

`120 * 3 = 360`

`180 * 2 = 360`



So 1/2 of a circle has a degree measure of 1/2 of 360.

> 360/2; DegreePlot(%);

180

[Maple Plot]


So 1/4 of a circle has a degree measure of 1/4 of 360.

> 360/4; DegreePlot(%);

90

[Maple Plot]


So 1/3 of a circle has a degree measure of 1/3 of 360.

> 360/3; DegreePlot(%);

120

[Maple Plot]


So 1/8 of a circle has a degree measure of 1/8 of 360.

> 360/8; DegreePlot(%);

45

[Maple Plot]


So 1/12 of a circle has a degree measure of 1/12 of 360.

> 360/12; DegreePlot(%);

30

[Maple Plot]

2. Minutes & Seconds


Each degree can be further broken into 60 minutes, and each minute can be broken in 60 seconds. Fractional degrees can be represented in this system. You can think of a giant clock with 360 hours, 60 minutes per hour, and 60 seconds per minute.


Convert : Degrees/Minutes/Seconds to Decimal Degrees

Example 2.1 : Express 34 degrees, 42 minutes, 29 seconds in decimal form
.

> 34 + 42/60 + 29/60^2;

124949/3600

>



Example 2.2 : Express 119 degrees, 7 minutes, 57 seconds in decimal form
.

> 119 + 7/60 + 57/60^2;
evalf(%, 15);

47653/400

119.132500000000




Convert : Fractional/Decimal Degrees to Degrees/Minutes/Seconds

Example 2.3 :
Express 72.8921 degrees in Degree/Minute/Second form
.

> 72.8921;
a := evalf(%);

72.8921

a := 72.8921

> degrees := floor(a);

degrees := 72

> fractional_degree := a - degrees;

fractional_degree := .8921

> minutes := floor( 60*fractional_degree );

minutes := 53

> fractional_min := fractional_degree - minutes/60;

fractional_min := .87666667e-2

> seconds :=floor( 60^2 * fractional_min);

seconds := 31

> `Compare & Check`;
evalf(a);
print(cat(degrees, ` degrees, `, minutes, ` minutes, `, seconds, ` seconds`));
evalf( degrees + minutes/60 + seconds/60^2);

`Compare & Check`

72.8921

`72 degrees,  53  minutes, 31 seconds`

72.89194444


Note that these two values are slightly different. This is because we rounded off the seconds. If we left the decimals to be a decimal number too, then these both would agree.

> seconds := 60^2 * fractional_min ;

seconds := 31.56000012

> `Compare & Check`;
evalf(a);
print(cat(degrees, ` degrees, `, minutes, ` minutes, `, seconds, ` seconds`));
evalf( degrees + minutes/60 + seconds/60^2);

`Compare & Check`

72.8921

`72 degrees,  53  minutes, ` || (31.56000012) || ` ...

72.89210000


Example 2.4 : Express 18 5/7 degrees in Degree/Minute/Second form
.

> 18 + 5/7;
a := evalf(%);

131/7

a := 18.71428571

> degrees := floor(a);

degrees := 18

> fractional_degree := a - degrees;

fractional_degree := .71428571

> minutes := floor( 60*fractional_degree );

minutes := 42

> fractional_min := fractional_degree - minutes/60;

fractional_min := .142857100e-1

> seconds :=floor( 60^2 * fractional_min);

seconds := 51

> `Compare & Check`;
evalf(a);
print(cat(degrees, ` degrees, `, minutes, ` minutes, `, seconds, ` seconds`));
evalf( degrees + minutes/60 + seconds/60^2);

`Compare & Check`

18.71428571

`18 degrees,  42  minutes, 51 seconds`

18.71416667

3. Radians


Another way of measuring angles is to compute the arc length that the angle corresponds to on a unit circle. Since the circumference of an entire unit circle is
2*Pi , that is the radian measure of a complete rotation. Therefore, fractions of a circle correspond to fractions of 2*Pi radians.


1/2 of a circle is 1/2 of
2*Pi radians, or simply Pi radians

> (2*Pi)/2; AnglePlot(%);

Pi

[Maple Plot]



1/4 of a circle is 1/4 of
2*Pi radians, or Pi/2 radians

> (2*Pi)/4; AnglePlot(%);

1/2*Pi

[Maple Plot]



1/8 of a circle is 1/8 of
2*Pi radians, or simply Pi/4 radians

> (2*Pi)/8; AnglePlot(%);

1/4*Pi

[Maple Plot]



1/12 of a circle is 1/12 of
2*Pi radians, or simply Pi/6 radians

> (2*Pi)/12; AnglePlot(%);

1/6*Pi

[Maple Plot]




So what does 1 radian look like? (We'll find out how many degrees this is later.)

> AnglePlot(1);

[Maple Plot]


4. Radian & Degree Conversions


The key to conversion between the two types of angle measuring systems is that half of circle is 180 degrees and
Pi radians.

Convert : Radians to Degrees : Multiply by 180/Pi

> Pi/4; % * 180/Pi;

1/4*Pi

45

Note that 45 degrees and Pi/4 radians represent the same angle

> DegreePlot(45);

[Maple Plot]

> AnglePlot(Pi/4);

[Maple Plot]


Here are other examples

> 2*Pi/3; % * 180/Pi;

2/3*Pi

120

> Pi/6; % * 180/Pi;

1/6*Pi

30

> 7*Pi/6; % * 180/Pi;

7/6*Pi

210

> 5*Pi/3; % * 180/Pi;

5/3*Pi

300

> 11*Pi/6; % * 180/Pi;

11/6*Pi

330


There is also the built-in Maple function to make these conversions.

> convert(Pi/2, units, rad, degree);

90

> convert(11*Pi/6, units, rad, degree);

330

> convert(4*Pi/3, units, rad, degree);

240




Convert : Degrees to Radians : Multiply by Pi/180

> 60; % * Pi/180;

60

1/3*Pi

> 135; % * Pi/180;

135

3/4*Pi

> 240; % * Pi/180;

240

4/3*Pi

> 315; % * Pi/180;

315

7/4*Pi

> 330; % * Pi/180;

330

11/6*Pi


There is also the built-in Maple function to make these conversions - note to "multiply" the number of degrees by the word "degrees."

> with(Units[Standard]):

Warning, the assigned name polar now has a global binding

Warning, these protected names have been redefined and unprotected: *, +, -, /, <, <=, <>, =, Im, Re, ^, abs, arccos, arccosh, arccot, arccoth, arccsc, arccsch, arcsec, arcsech, arcsin, arcsinh, arctan, arctanh, argument, ceil, collect, combine, conjugate, convert, cos, cosh, cot, coth, csc, csch, csgn, diff, eval, evalc, evalr, exp, expand, factor, floor, frac, int, ln, log, log10, max, min, normal, root, round, sec, sech, shake, signum, simplify, sin, sinh, sqrt, surd, tan, tanh, trunc, type, verify

> convert(45*Unit(degree),units,radians);

1/4*Pi*Unit([rad])

> convert(120*Unit(degree), units, radians);

2/3*Pi*Unit([rad])

> convert(115*Unit(degree), units, radians);

23/36*Pi*Unit([rad])

> convert(252*Unit(degree), units, radians);

7/5*Pi*Unit([rad])

5. Famous Angles


There are various angles which are used frequently in geometry and trignometry - in particular the multiples of 30, 45, 60, and 90 degrees - or in radians
Pi/6, Pi/4, Pi/3, Pi/2 . It's a good idea to become familiar with all multiples of these angles in both degrees and radians.

> AngleSpectrum(Pi/2);

[Maple Plot]

> AngleSpectrum(Pi/4);

[Maple Plot]

> AngleSpectrum(Pi/8);

[Maple Plot]

> AngleSpectrum(Pi/6);

[Maple Plot]

> AngleSpectrum(Pi/12);

[Maple Plot]

> AngleSpectrum(Pi/3);

[Maple Plot]


6. Angles & Arclength


There is another advantage of using radians when it comes to finding the length of an arc. Since a radian measure is already an arclength on a unit circle, any larger or smaller circle can be scaled appropriately - in a since all circles are "similar" circles to the unit circle. So the arclength of an arc with central angle theta is
Arclength = radius * theta

Example : Find the arclength on a circle with radius 100 and central angle Pi/7

> ang := Pi/7;
radius := 100;

ang := 1/7*Pi

radius := 100

> arclength := radius*ang;
evalf(%);

arclength := 100/7*Pi

44.87989507

© 2002 Waterloo Maple Inc