|
@@ -10,13 +10,17 @@
|
|
|
\chapter{Theoretical background}
|
|
|
\label{chap:background}
|
|
|
|
|
|
+This chapter is set to introduce the theoretical knowledge on which the work in this thesis is founded on. First we talk about domain mathematics and differential equations.
|
|
|
+In these sections both the explanations and the approach are strongly based on the book on analysis by W. Rudin\cite{Rudin2007} and the book about ordinary differential equations
|
|
|
+by M. Tenenbaum and H. Pollard. %\cite{Tenenbaum1985}. %TODO introduce other sections
|
|
|
+
|
|
|
% -------------------------------------------------------------------
|
|
|
|
|
|
-\section{Domain Mathematics}
|
|
|
+\section{Domain Mathematics and Functions}
|
|
|
\label{sec:domain}
|
|
|
|
|
|
-The mathematics of domains work with spaces of numbers on which several mathematical operations are performed to retrieve a number in a different space.
|
|
|
-For the definition of a function is essential. Which is described by Rudin\cite{Rudin2007}. A function $f$ assigns each element $x$ of the set $A$ to an
|
|
|
+% describe the meaning of a domain and codomain space to its problem and then shivvy to the function that translates from one to another.
|
|
|
+When looking at problems from a mathematical it is possible to describe it by putting it into a system. Then the base A function $f$ assigns each element $x$ of the set $A$ to an
|
|
|
element of the set $B$.
|
|
|
\begin{equation}
|
|
|
f: A \rightarrow B
|
|
@@ -32,8 +36,26 @@ Functions are able to describe the condition of a system given certain parameter
|
|
|
\section{Basics of Differential Equations}
|
|
|
\label{sec:differentialEq}
|
|
|
|
|
|
-- different information about the domain (domain -> codomain) -> (domain -> change of the funcion)
|
|
|
-- example
|
|
|
+In the real world states of system are under constant change. While functions are able to show the state of a system for a certain set of parameters that
|
|
|
+are living in the domain space, they can only indirectly give information about the change of the system under different sets of input. This shows the
|
|
|
+need of a way to retrieve the information of change from a function. One way would be taking the rate of change across a certain interval $[a, b]\subseteq\mathbb{R}$ of
|
|
|
+the domain of a function $f$, by calculating
|
|
|
+\begin{equation}
|
|
|
+ m = \frac{f(b) - f(a)}{a-b}
|
|
|
+\end{equation}
|
|
|
+$m$ is the average rate of change across the interval $[a, b]$. Since in most cases we want to find the rate of change in a specific spot and the average will
|
|
|
+not be sufficient. For this reason instead of looking across the whole interval we single out every $x\in[a, b]$. We narrow the interval down to be infinitesimal small
|
|
|
+and then calculate the average rate of change
|
|
|
+\begin{equation} \label{eqn:differential}
|
|
|
+ \frac{df}{dx} = \lim_{t\to x} \frac{f(t) - f(x)}{t-x}
|
|
|
+\end{equation}
|
|
|
+where this value exists. $\frac{df}{dx}$ is the rate of the change or derivative of the function $f$ undergoes in respect of its parameter $x$. This now is able to give information about
|
|
|
+the rate of change for a specific set of parameters. By re-iterating this process it is possible for us to calculate the rate of the rate of change as well, which is called the derivative of the second
|
|
|
+order. Equation \ref{eqn:differential} shows how to theoretically come from the function to its assigned derivative, but in many cases (applications) differential equations are built from
|
|
|
+semantics and logics. For this thesis we would like to concentrate on ordinary differential equations, which have only one input parameter.
|
|
|
+In our case this is $t$ the point of time. \\
|
|
|
+
|
|
|
+For illustrating the functionality of a derivative we will look upon the specific problem. For this we
|
|
|
|
|
|
% -------------------------------------------------------------------
|
|
|
|