The notion of a function is the mathematical way of formalising the idea that one or more independent quantities are assigned to one or more dependent quantities. Functions in general and their investigation are at the core of analysis. They help to model dependencies of variable quantities, from simple planar graphs, curves and surfaces in space to solutions of differential equations or the algorithmic construction of fractals. One the one hand, this chapter serves to introduce the basic concepts. On the other hand, the most important examples of real-valued, elementary functions are discussed in an informal way. These include the power functions, the exponential functions and their inverses. Trigonometric functions will be discussed in Chap. 3, complex-valued functions in Chap. 4.
2.1 Basic Notions
The simplest case of a real-valued function is a double-row list of numbers, consisting of values from an independent quantity x and corresponding values of a dependent quantity y.
Experiment 2.1



![$$ {x = [x_1, x_2, \dots , x_n] = [-1.00, -0.99, -0.98, \dots , 0.99, 1.00]}. $$](/epubstore/O/M-Oberguggenberger/Analysis-For-Computer-Scientists/OEBPS/images/215236_2_En_2_Chapter/215236_2_En_2_Chapter_TeX_Equ2.png)




A function
Definition 2.2
A real-valued function
f with domain D and range is a rule
which assigns to every
a real number
.





Example 2.3
A part of the graph of the quadratic function , f(x)
=
is shown in Fig. 2.2. If one chooses the
domain to be
, then the image is the interval
.

Quadratic function
An important tool is the concept of inverse functions, whether to solve equations or to find new types of functions. If and in which domain a given function has an inverse depends on two main properties, the injectivity and the surjectivity, which we investigate on their own at first.
Definition 2.4






Surjectivity can always be enforced by
reducing the range B; for
example, is always surjective. Likewise,
injectivity can be obtained by restricting the domain to a
subdomain.
If is bijective, then for every
there exists exactly one
with
. The mapping
then defines the inverse of the
mapping
.
Definition 2.5





Example 2.6











Bijectivity and inverse function

Inverse function and reflection in the diagonal
Experiment 2.7


2.2 Some Elementary Functions
The elementary functions are the powers and roots, exponential functions and logarithms, trigonometric functions and their inverse functions, as well as all functions which are obtained by combining these. We are going to discuss the most important basic types which have historically proven to be of importance for applications. The trigonometric functions will be dealt with in Chap. 3.






Equation of a straight line









Quadratic parabolas

Power functions with fractional and negative exponents
As an example of fractional exponents
we consider the root functions for
with domain
. Here
is defined as the inverse function of
the nth power,
see Fig. 2.9 left. The graph of
with domain
is pictured in Fig. 2.9 right.


Absolute value and sign









Example 2.8




Exponential functions

































Logarithms to the base and to the base 10
Hyperbolic functions and their inverses. Hyperbolic functions and their inverses will mainly be needed in Chap. 14 for the parametric representation of hyperbolas, in Chap. 10 for evaluating integrals and in Chap. 19 for explicitly solving some differential equations.




Hyperbolic sine and cosine (left), and hyperbolic tangent (right)




2.3 Exercises
- 1.
-
How does the graph of an arbitrary function
change under the transformations
? Distinguish the following different cases for a:
- 2.
-
Let the function
be given. Using MATLAB plot the graphs of f for
and find
- 3.
-
Which of the following functions are injective/surjective/bijective?
Hint. Illustrative examples for the use of the MATLAB plot command may be found in the M-file mat02_2.m.
- 4.
-
Sketch the graph of the function
and justify why it is bijective as a function from
to
. Compute its inverse function on the given domain.
- 5.
-
Check that the following functions
are bijective in the given regions and compute the inverse function in each case:
- 6.
-
Find the equation of the straight line through the points (1, 1) and (4, 3) as well as the equation of the quadratic parabola through the points
, (0, 5) and (2, 21).
- 7.
-
Let the amount of a radioactive substance at time
be A grams. According to the law of radioactive decay, there remain
grams after t days. Compute q for radioactive iodine 131 from its half life (8 days) and work out after how many days
of the original amount of iodine 131 is remaining.
Hint. The half life is the time span after which only half of the initial amount of radioactive substance is remaining.
- 8.
-
Let I [Watt/cm
] be the sound intensity of a sound wave that hits a detector surface. According to the Weber–Fechner law, its sound level L [Phon] is computed by
. If the intensity I of a loudspeaker produces a sound level of 80 Phon, which level is then produced by an intensity of 2I by two loudspeakers?
- 9.
-
For
the floor function
denotes the largest integer not greater than x, i.e.,
using the MATLAB command floor:
- 10.
-
A function
is given by the list of its function values
,
. Write a MATLAB program which determines whether f is bijective. Test your program by generating random y-values using
Hint. See the two M-files mat02_ex12a.m and mat02_ex12b.m or the Python-file python02_ex12.
- 11.
-
Draw the graph of the function
for different values of a. Distinguish between the cases
,
,
. For which values of a is the function f injective and surjective, respectively?
- 12.
-
Let
,
. Verify the laws of exponents
,
.
Hint. Start by verifying the laws for integer r and s (and arbitrary). To prove the first law for rational
,
, write
- 13.
-
Using the arithmetics of exponentiation, verify the rules
and
for
and
.
Hint. Set
,
, so
. Use the laws of exponents and take the logarithm.
- 14.
-
Verify the identity
.
- 15.
-
Show that
for
.
Hint. Set
and solve the identity
for y. Substitute
to derive the quadratic equation
for u. Observe that
to select the appropriate root of this equation.