Trigonometric functions play a major role
in geometric considerations as well as in the modelling of
oscillations. We introduce these functions at the right-angled
triangle and extend them periodically to using the unit circle. Furthermore,
we will discuss the inverse functions of the trigonometric
functions in this chapter. As an application we will consider the
transformation between Cartesian and polar coordinates.
3.1 Trigonometric Functions at the Triangle
The definitions of the trigonometric functions are based on elementary properties of the right-angled triangle. Figure 3.1 shows a right-angled triangle. The sides adjacent to the right angle are called legs (or catheti) , the opposite side hypotenuse.
One of the basic properties of the right-angled triangle is expressed by Pythagoras’ theorem.1
Proposition 3.1
(Pythagoras) In a right-angled triangle the sum of the squares
of the legs equals the square of the hypotenuse. In the notation of
Fig. 3.1
this says that .
Proof

A right-angled triangle with legs a, b and hypotenuse c

Basic idea of the proof of Pythagoras’ theorem

Similar triangles



Definition 3.2
















A general triangle

Straight line with slope k

Relationship between degrees and radian measure
As a second example we compute the slope
of a straight line. Figure 3.5 shows a straight line . Its slope k is the change of the y-value per unit change in x. It is calculated from the triangle
attached to the straight line in Fig. 3.5 as
.

The radian measure
of the angle (in degrees) is defined as the length
of the corresponding arc of the unit
circle with the sign of
. The arc length
on the unit circle has no physical
unit. However, one speaks about radians (rad) to emphasise the difference
to degrees.




![$$ 360^\circ \leftrightarrow 2 \pi \, \text {[rad]}$$](/epubstore/O/M-Oberguggenberger/Analysis-For-Computer-Scientists/OEBPS/images/215236_2_En_3_Chapter/215236_2_En_3_Chapter_TeX_IEq30.png)
![$$ \alpha ^\circ \ \leftrightarrow \ \frac{\pi }{180} \, \alpha \, \text {[rad]} \qquad \text {and} \qquad \ell \;\text {[rad]}\ \leftrightarrow \ \left( \frac{180}{\pi }\, \ell \right) ^\circ , $$](/epubstore/O/M-Oberguggenberger/Analysis-For-Computer-Scientists/OEBPS/images/215236_2_En_3_Chapter/215236_2_En_3_Chapter_TeX_Equ8.png)



Definition of the trigonometric functions on the unit circle

Extension of the trigonometric functions on the unit circle
3.2
Extension of the Trigonometric Functions to 
For the values
,
,
and
have a simple interpretation on the
unit circle; see Fig. 3.7. This representation follows from the fact
that the hypotenuse of the defining triangle has length 1 on the
unit circle.




![$$[0,2\pi ]$$](/epubstore/O/M-Oberguggenberger/Analysis-For-Computer-Scientists/OEBPS/images/215236_2_En_3_Chapter/215236_2_En_3_Chapter_TeX_IEq42.png)

















The graphs of the sine and cosine functions
in the interval
The graphs of the functions and
are presented in
Fig. 3.10. The domain D for the tangent is, as explained above,
given by
, the one for the cotangent is
.
Many relations are valid between the trigonometric functions. For example, the following addition theorems, which can be proven by elementary geometrical considerations, are valid; see Exercise 3. The maple commands expand and combine use such identities to simplify trigonometric expressions.
Proposition 3.3



The graphs of the tangent (left) and cotangent (right) functions
3.3 Cyclometric Functions
The cyclometric functions are inverse to the trigonometric functions in the appropriate bijectivity regions.
![$$[- \frac{\pi }{2}, \frac{\pi }{2}]$$](/epubstore/O/M-Oberguggenberger/Analysis-For-Computer-Scientists/OEBPS/images/215236_2_En_3_Chapter/215236_2_En_3_Chapter_TeX_IEq62.png)
![$$[-1,1]$$](/epubstore/O/M-Oberguggenberger/Analysis-For-Computer-Scientists/OEBPS/images/215236_2_En_3_Chapter/215236_2_En_3_Chapter_TeX_IEq63.png)
![$$ \arcsin : [-1,1] \rightarrow \left[ -\frac{\pi }{2}, \frac{\pi }{2}\right] . $$](/epubstore/O/M-Oberguggenberger/Analysis-For-Computer-Scientists/OEBPS/images/215236_2_En_3_Chapter/215236_2_En_3_Chapter_TeX_Equ14.png)
![$$ \sin (\arcsin y) = y\qquad \text {for all } y\in [-1,1]. $$](/epubstore/O/M-Oberguggenberger/Analysis-For-Computer-Scientists/OEBPS/images/215236_2_En_3_Chapter/215236_2_En_3_Chapter_TeX_Equ15.png)



The principal branch of the sine (left); the arcsine function (right)
![$$[0,\pi ]$$](/epubstore/O/M-Oberguggenberger/Analysis-For-Computer-Scientists/OEBPS/images/215236_2_En_3_Chapter/215236_2_En_3_Chapter_TeX_IEq65.png)
![$$[-1,1]$$](/epubstore/O/M-Oberguggenberger/Analysis-For-Computer-Scientists/OEBPS/images/215236_2_En_3_Chapter/215236_2_En_3_Chapter_TeX_IEq66.png)
![$$ \arccos : [-1, 1] \rightarrow [0,\pi ]. $$](/epubstore/O/M-Oberguggenberger/Analysis-For-Computer-Scientists/OEBPS/images/215236_2_En_3_Chapter/215236_2_En_3_Chapter_TeX_Equ17.png)

The principal branch of the cosine (left); the arccosine function (right)



The principal branch of the arctangent
Application 3.4
(Polar coordinates in the
plane) The polar
coordinates of a point
in the plane are obtained by
prescribing its distance r from
the origin and the angle
with the positive x-axis (in counterclockwise direction);
see Fig. 3.14.

Plane polar coordinates





3.4 Exercises
- 1.
-
Using geometric considerations at suitable right-angled triangles, determine the values of the sine, cosine and tangent of the angles
,
,
. Extend your result for
to the angles
,
,
with the help of the unit circle. What are the values of the angles under consideration in radian measure?
- 2.
-
Using MATLAB write a function degrad.m which converts degrees to radian measure. The command degrad(180) should give
as a result. Furthermore, write a function mysin.m which calculates the sine of an angle in radian measure with the help of degrad.m.
- 3.
-
Prove the addition theorem of the sine function
Hint. If the angles x, y and their sum
are between 0 and
you can directly argue with the help of Fig. 3.15; the remaining cases can be reduced to this case.
- 4.
-
Prove the law of cosinesHint. The segment c is divided into two segments
(left) and
(right) by the height h. The following identities hold true by Pythagoras’ theorem
.
- 5.
-
Compute the angles
of the triangle with sides
,
,
and plot the triangle in maple.
Hint. Use the law of cosines from Exercise 4.
- 6.
-
Prove the law of sinesHint. The first identity follows from
- 7.
-
Compute the missing sides and angles of the triangle with data
,
,
, and plot your solutions using MATLAB.
Hint. Use the law of sines from Exercise 6.
- 8.
-
With the help of MATLAB plot the following functions
in the last case?
- 9.
-
Plot the functions
,
,
,
,
and
in the interval
. Explain your results.
Hint. Use the MATLAB command axis equal.
- 10.
-
Plot the graph of the function
for various values of a. For which values of a is the function f injective or surjective?
- 11.
-
Show that the following formulas for the surface line s and the surface area M of a right circular truncated cone (see Fig. 3.16, left) hold true
Hint. By unrolling the truncated cone a sector of an annulus with apex angle
is created; see Fig. 3.16, right. Therefore, the following relationships hold:
,
and
.
- 12.
-
The secant and cosecant functions are defined as the reciprocals of the cosine and the sine functions, respectively,
, and the cosecant is not defined for integer multiples of
.
- (a)
-
Prove the identities
and
.
- (b)
-
With the help of MATLAB plot the graph of the functions
and
for x between
and
.

Proof of Proposition 3.3

Right circular truncated cone with unrolled surface