Trigonometry

Review

The student should read carefully Appendix D in Stewart.

Angles

Definition -- Radians : An angle of [Maple Math] radians is the angle that subtends an arc of [Maple Math] units when placed at the centre of a unit circle.

==> [Maple Math] radians = 180 degrees;

1 radian = [Maple Math] degrees; 1 degree = [Maple Math] radians

If an angle of [Maple Math] radians subtends an arc of s units when placed at the centre of a circle of radius r then [Maple Math] or [Maple Math] (follows by considering similar figures -- ask me nicely).

It follows that, being a ratio of distances, radians are unitless .

If [Maple Math] is obtained by an anticlockwise (counterclockwise) rotation then [Maple Math] is positive .

If [Maple Math] is obtained by a clockwise rotation then [Maple Math] is negative .

>

[Maple Math]
[Maple Math]
[Maple Math] [Maple Math] [Maple Math] [Maple Math]
[Maple Math] [Maple Math] [Maple Math] [Maple Math]
[Maple Math] [Maple Math] [Maple Math] [Maple Math]
[Maple Math] [Maple Math] [Maple Math] [Maple Math]
[Maple Math] [Maple Math] [Maple Math] [Maple Math]
[Maple Math] [Maple Math] [Maple Math] [Maple Math]
[Maple Math] [Maple Math] [Maple Math] [Maple Math]
[Maple Math] [Maple Math] [Maple Math] [Maple Math]

> convert(1*degrees,radians);evalf(%);

[Maple Math]

[Maple Math]

> convert(1,degrees);evalf(%);

[Maple Math]

[Maple Math]

Trig Functions

Definition :

If [Maple Math] is any angle in standard position and P(x,y) is any point on its terminal side, then:

[Maple Math] [Maple Math] = [Maple Math]

[Maple Math] [Maple Math] = [Maple Math]

[Maple Math] = [Maple Math] [Maple Math] = [Maple Math] where [Maple Math] = distance from P to the origin.

Note: in Quadrant I , these definitions yield SOHCAHTOA .

The sign of a trig function of [Maple Math] depends on which quadrant [Maple Math] is in: A ll S udents T ake C alculus.

Definition : If [Maple Math] is any Real number then [Maple Math] means the sine of [Maple Math] radians. Similar definition for each of the trig functions.

Trig functions of special angles. You are expected to know and use these special values. You should memorize the special triangles (see blackboard! ) that they come from rather than memorizing the actual values. You should also know the quadrantal angles and their trig functional values:

[Maple Math] [Maple Math] [Maple Math] [Maple Math]
[Maple Math] [Maple Math] [Maple Math] [Maple Math]
[Maple Math] [Maple Math] [Maple Math] [Maple Math]
[Maple Math] [Maple Math] [Maple Math] [Maple Math]
[Maple Math] [Maple Math] [Maple Math] [Maple Math]
[Maple Math] [Maple Math] [Maple Math] [Maple Math]
[Maple Math] [Maple Math] [Maple Math] [Maple Math]
[Maple Math] [Maple Math] [Maple Math] [Maple Math]
[Maple Math] [Maple Math] [Maple Math] [Maple Math]

Graphs

> restart:

> plot(sin(x),x=-4*Pi..4*Pi,colour=black);

[Maple Plot]

> plot([sin(x),cos(x)],x=-4*Pi..4*Pi,colour=black);

[Maple Plot]

Note : Both the sine and cosine functions are periodic with period [Maple Math] .

> plot([sin(x),csc(x)],x=-4*Pi..4*Pi,y=-3..3,colour=black,discont=true);

[Maple Plot]

> plot([cos(x),sec(x)],x=-4*Pi..4*Pi,y=-3..3,colour=black,discont=true);

[Maple Plot]

Note : Both the secant and cosecant functions are periodic with period [Maple Math] .

> plot(tan(x),x=-4*Pi..4*Pi,y=-4..4,discont=true,colour=black);

[Maple Plot]

Note : The tangant and cotangent functions are both periodic with period [Maple Math] .

> plot(cot(x),x=-4*Pi..4*Pi,y=-4..4,discont=true,colour=black);

[Maple Plot]

Identities

Recall : An identity is a statement about an expression that is true for all values in the domain of the expression.

Even-Odd identities

odd: [Maple Math] [Maple Math]

even: [Maple Math]

Pythagorean identities

[Maple Math] [Maple Math] [Maple Math]

note : [Maple Math] means [ [Maple Math] ][ [Maple Math] ] as opposed to [Maple Math] etc.

[Maple Math]

[Maple Math]

Addition identities

[Maple Math] ==> [Maple Math] = [Maple Math]

[Maple Math]

[Maple Math] ==> [Maple Math]

= [Maple Math]

= [Maple Math]

[Maple Math]

Equations

Find all x [Maple Math] [0, [Maple Math] ] satisfying 2cos(x) - 1 = 0 (#65, pg. A35)

> equ1:=2*cos(x)-1=0;

[Maple Math]

> solve(equ1,x);

[Maple Math]

> plot(2*cos(x)-1,x=0..2*Pi,colour=black);

[Maple Plot]

Note: the graph suggests Maple has not given a full answer. FIX!

Find all x [Maple Math] [0, [Maple Math] ] satisfying [Maple Math] (#67, pg. A35)

> plot(2*(sin(x))^2-1,x=0..2*Pi,colour=black);

[Maple Plot]

> solve( 2*sin(x)^2 = 1,x);

[Maple Math]

Real answer: [Maple Math] , [Maple Math] , [Maple Math] , [Maple Math] . FIX!

Find all x [Maple Math] [0, [Maple Math] ] satisfying sin(2x) = cos(x) (#69, pg. A35)

> equ3:=sin(2*x)=cos(x);

[Maple Math]

> solve(equ3,x);

[Maple Math]

> plot(sin(2*x)-cos(x),x=-2*Pi..2*Pi,colour=black);

[Maple Plot]

Note : The plot "says" there are 4 solutions on the given interval. They are: [Maple Math] , [Maple Math] , [Maple Math] , [Maple Math] . WHY???!!

Derivatives of Trig Functions

The Big One

> q:=h->(sin(x+h)-sin(x))/h;

[Maple Math]

> plot({q(1),q(1/2),q(1/5),q(1/10)},x,colour=black);

[Maple Plot]

The plots above suggest that [Maple Math]

Let's ask Maple:

> Limit((sin(x+h)-sin(x))/h,h=0)=limit((sin(x+h)-sin(x))/h,h=0);

[Maple Math]

Theorem : [Maple Math] .

The proof of this amazing result depends on knowing four limits:

1) [Maple Math] . This seems obvious from "knowing" the graph of y = sin(h). Its proof is not so obvious.

2) [Maple Math] This seems obvious and follows easily from the first limit.

3) [Maple Math] This is neither obvious nor "easy" to prove.

4) [Maple Math] . This is not obvious but follows rather easily from #3.

** You are not expected to be able to prove #1 or #3 but you should be able to use them to prove #2 and #4.

proof : see blackboard.

>

[Maple Math] [Maple Math] [Maple Math]
[Maple Math] [Maple Math] [Maple Math]
[Maple Math] [Maple Math] [Maple Math]
[Maple Math] [Maple Math] [Maple Math]
[Maple Math] [Maple Math] [Maple Math]
[Maple Math] [Maple Math] [Maple Math]
[Maple Math] [Maple Math] [Maple Math]
[Maple Math] [Maple Math] [Maple Math]
[Maple Math] [Maple Math] [Maple Math]
[Maple Math] [Maple Math] [Maple Math]
[Maple Math] [Maple Math] [Maple Math]

The Other Ones

[Maple Math]

[Maple Math]

[Maple Math]

[Maple Math]

[Maple Math]

E.G.s

1. Find f'(x) if [Maple Math] .

> exp1:=(sin(x)*tan(x))/x^3;

[Maple Math]

> exp2:=diff(exp1,x);

[Maple Math]

> simplify(%);

[Maple Math]

Working by hand I got exp3 below. Are they the same???

> exp3:=sin(x)*(x*(1+sec(x)^2)-3*tan(x))/x^4;

[Maple Math]

> exp4:=exp2-exp3;

[Maple Math]

> simplify(%);

[Maple Math]

2. Find the equation of the tangent line to [Maple Math] at ( [Maple Math] , [Maple Math] ). (#35, page 149)

> curve:=x*cos(x);

[Maple Math]

> derivative:=diff(curve,x);

[Maple Math]

> subs(x=Pi,derivative);

[Maple Math]

> simplify(%);

[Maple Math]

> line:=y+Pi=-1*(x-Pi);

[Maple Math]

> Line:=solve(line,y);

[Maple Math]

> plot({curve,Line},x,colour=black);

[Maple Plot]