2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-25 22:38:04 +02:00
LaTeX-examples/documents/math-minimal-distance-to-cubic-function/math-minimal-distance-to-cubic-function.tex

366 lines
15 KiB
TeX
Raw Normal View History

2013-11-05 20:30:34 +01:00
\documentclass[a4paper]{scrartcl}
\usepackage{amssymb, amsmath} % needed for math
2013-11-13 08:50:04 +01:00
\usepackage{mathtools} % \xRightarrow
2013-11-05 20:30:34 +01:00
\usepackage[utf8]{inputenc} % this is needed for umlauts
\usepackage[english]{babel} % this is needed for umlauts
\usepackage[T1]{fontenc} % this is needed for correct output of umlauts in pdf
\usepackage[margin=2.5cm]{geometry} %layout
\usepackage{hyperref} % links im text
\usepackage{braket} % needed for \Set
\usepackage{parskip}
\usepackage[colorinlistoftodos]{todonotes}
\usepackage{pgfplots}
\pgfplotsset{compat=1.7,compat/path replacement=1.5.1}
\usepackage{tikz}
2013-11-22 23:23:03 +01:00
\usepackage[framed,amsmath,thmmarks,hyperref]{ntheorem}
\usepackage{framed}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Define theorems %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\theoremstyle{break}
\setlength\theoremindent{0.7cm}
\theoremheaderfont{\kern-0.7cm\normalfont\bfseries}
\theorembodyfont{\normalfont} % nicht mehr kursiv
\newframedtheorem{theorem}{Theorem}[section]
\newframedtheorem{lemma}[theorem]{Lemma}
\newtheorem{plaindefinition}{Definition}
\newenvironment{definition}{\begin{plaindefinition}}{\end{plaindefinition}}
\newenvironment{definition*}{\begin{plaindefinition*}}{\end{plaindefinition*}}
\newtheorem{example}{Example}
\theoremstyle{nonumberplain}
\newtheorem{proof}{Proof:}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2013-11-05 20:30:34 +01:00
\title{Minimal distance to a cubic function}
\author{Martin Thoma}
\hypersetup{
pdfauthor = {Martin Thoma},
pdfkeywords = {},
pdftitle = {Minimal Distance}
}
\def\mdr{\ensuremath{\mathbb{R}}}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Begin document %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\maketitle
\begin{abstract}
2013-11-22 21:40:15 +01:00
When you have a selfdriving car, you have to plan which path you
want to take. A reasonable choice for the representation of this
path is a cubic spline. But you also have to be able to calculate
how to steer to get or to remain on this path. A way to do this
is applying the \href{https://en.wikipedia.org/wiki/PID_algorithm}{PID algorithm}.
But this algorithm needs to know the current error. So you need to
be able to get the minimal distance of a point to a cubic spline.
As you need to get the signed error (and one steering direction might
be prefered), it is not only necessary to
get the minimal absolute distance, but also to get all points
on the spline with minimal distance.
In this paper I want to discuss how to find all points on a cubic
2013-11-05 20:30:34 +01:00
function with minimal distance to a given point.
2013-11-22 21:40:15 +01:00
As other representations of paths might be easier to understand and
to implement, I will also cover the problem of finding the minimal
distance of a point to a polynomial of degree 0, 1 and 2.
2013-11-05 20:30:34 +01:00
\end{abstract}
\section{Description of the Problem}
Let $f: \mdr \rightarrow \mdr$ be a polynomial function and $P \in \mdr^2$
2013-11-22 23:23:03 +01:00
be a point. Let $d_{P,f}: \mdr^2 \rightarrow \mdr_0^+$
be the Euklidean distance $d_{P,f}$ of a point $P$ and a point $\left (x, f(x) \right )$:
\[d_{P,f} (x) := \sqrt{(x_P - x)^2 + (y_P - f(x))^2}\]
2013-11-05 20:30:34 +01:00
2013-11-22 21:40:15 +01:00
Now there is \todo{Should I proof this?}{finite set} $x_1, \dots, x_n$ such that
2013-11-22 23:23:03 +01:00
\[\forall \tilde x \in \mathbb{R} \setminus \{x_1, \dots, x_n\}: d_{P,f}(x_1) = \dots = d_{P,f}(x_n) < d_{P,f}(\tilde x)\]
2013-11-05 20:30:34 +01:00
2013-11-22 23:23:03 +01:00
Essentially, you want to find the minima $x_1, \dots, x_n$ for given
$f$ and $P$.
But minimizing $d_{P,f}$ is the same as minimizing $d_{P,f}^2$:
\begin{align}
d_{P,f}(x)^2 &= \sqrt{(x_P - x)^2 + (y_P - f(x))^2}^2\\
&= x_p^2 - 2x_p x + x^2 + y_p^2 - 2y_p f(x) + f(x)^2
\end{align}
2013-11-22 21:40:15 +01:00
2013-11-22 23:23:03 +01:00
\todo[inline]{hat dieser Satz einen Namen? kann ich den irgendwo zitieren? Ich habe ihn aus \href{https://github.com/MartinThoma/LaTeX-examples/tree/master/documents/Analysis I}{meinem Analysis I Skript} (Satz 22.3).}
\begin{theorem}[Minima of polynomial functions]\label{thm:minima-of-polynomials}
Let $n \in \mathbb{N}, n \geq 2$, $f$ polynomial function of
degree $n$, $x_0 \in \mathbb{R}$, \\
$f'(x_0) = f''(x_0) = \dots = f^{(n-1)} (x_0) = 0$
and $f^{(n)} > 0$.
Then $x_0$ is a local minimum of $f$.
\end{theorem}
\clearpage
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Constant functions %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2013-11-05 20:30:34 +01:00
\section{Minimal distance to a constant function}
2013-11-22 21:40:15 +01:00
Let $f(x) = c$ with $c \in \mdr$ be a constant function.
2013-11-05 20:30:34 +01:00
2013-11-05 20:47:41 +01:00
\begin{figure}[htp]
\centering
\begin{tikzpicture}
\begin{axis}[
legend pos=north west,
axis x line=middle,
axis y line=middle,
grid = major,
width=0.8\linewidth,
height=8cm,
grid style={dashed, gray!30},
xmin=-5, % start the diagram at this x-coordinate
xmax= 5, % end the diagram at this x-coordinate
ymin= 0, % start the diagram at this y-coordinate
ymax= 3, % end the diagram at this y-coordinate
axis background/.style={fill=white},
xlabel=$x$,
ylabel=$y$,
tick align=outside,
minor tick num=-3,
enlargelimits=true,
tension=0.08]
\addplot[domain=-5:5, thick,samples=50, red] {1};
\addplot[domain=-5:5, thick,samples=50, green] {2};
\addplot[domain=-5:5, thick,samples=50, blue] {3};
\addplot[black, mark = *, nodes near coords=$P$,every node near coord/.style={anchor=225}] coordinates {(2, 2)};
2013-11-22 21:40:15 +01:00
\addplot[blue, mark = *, nodes near coords=$P_{h,\text{min}}$,every node near coord/.style={anchor=225}] coordinates {(2, 3)};
\addplot[green, mark = x, nodes near coords=$P_{g,\text{min}}$,every node near coord/.style={anchor=120}] coordinates {(2, 2)};
\addplot[red, mark = *, nodes near coords=$P_{f,\text{min}}$,every node near coord/.style={anchor=225}] coordinates {(2, 1)};
2013-11-05 20:47:41 +01:00
\draw[thick, dashed] (axis cs:2,0) -- (axis cs:2,3);
\addlegendentry{$f(x)=1$}
\addlegendentry{$g(x)=2$}
\addlegendentry{$h(x)=3$}
\end{axis}
\end{tikzpicture}
2013-11-22 23:23:03 +01:00
\caption{Three constant functions and their points with minimal distance}
2013-11-22 21:40:15 +01:00
\label{fig:constant-min-distance}
2013-11-05 20:47:41 +01:00
\end{figure}
2013-11-05 20:30:34 +01:00
Then $(x_P,f(x_P))$ has
minimal distance to $P$. Every other point has higher distance.
2013-11-22 21:40:15 +01:00
See Figure~\ref{fig:constant-min-distance}.
2013-11-05 20:30:34 +01:00
2013-11-22 23:23:03 +01:00
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Linear functions %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2013-11-05 20:30:34 +01:00
\section{Minimal distance to a linear function}
Let $f(x) = m \cdot x + t$ with $m \in \mdr \setminus \Set{0}$ and
2013-11-22 21:40:15 +01:00
$t \in \mdr$ be a linear function.
2013-11-05 20:30:34 +01:00
2013-11-05 20:47:41 +01:00
\begin{figure}[htp]
\centering
\begin{tikzpicture}
\begin{axis}[
legend pos=north east,
axis x line=middle,
axis y line=middle,
grid = major,
width=0.8\linewidth,
height=8cm,
grid style={dashed, gray!30},
xmin= 0, % start the diagram at this x-coordinate
xmax= 5, % end the diagram at this x-coordinate
ymin= 0, % start the diagram at this y-coordinate
ymax= 3, % end the diagram at this y-coordinate
axis background/.style={fill=white},
xlabel=$x$,
ylabel=$y$,
tick align=outside,
minor tick num=-3,
enlargelimits=true,
tension=0.08]
\addplot[domain=-5:5, thick,samples=50, red] {0.5*x};
\addplot[domain=-5:5, thick,samples=50, blue] {-2*x+6};
\addplot[black, mark = *, nodes near coords=$P$,every node near coord/.style={anchor=225}] coordinates {(2, 2)};
\addlegendentry{$f(x)=\frac{1}{2}x$}
\addlegendentry{$g(x)=-2x+6$}
\end{axis}
\end{tikzpicture}
\caption{The shortest distance of $P$ to $f$ can be calculated by using the perpendicular}
2013-11-22 21:40:15 +01:00
\label{fig:linear-min-distance}
2013-11-05 20:47:41 +01:00
\end{figure}
2013-11-05 20:30:34 +01:00
2013-11-22 21:40:15 +01:00
Now you can drop a perpendicular $f_\bot$ through $P$ on $f(x)$. The slope of $f_\bot$
is $- \frac{1}{m}$. Now you can calculate $f_\bot$:\nobreak
2013-11-05 20:30:34 +01:00
\begin{align}
f_\bot(x) &= - \frac{1}{m} \cdot x + t_\bot\\
\Rightarrow y_P &= - \frac{1}{m} \cdot x_P + t_\bot\\
2013-11-22 21:40:15 +01:00
\Leftrightarrow t_\bot &= y_P + \frac{1}{m} \cdot x_P
\end{align}
Now find the point $(x, f(x))$ where the perpendicular crosses the function:
\begin{align}
2013-11-05 20:30:34 +01:00
f(x) &= f_\bot(x)\\
\Leftrightarrow m \cdot x + t &= - \frac{1}{m} \cdot x + \left(y_P + \frac{1}{m} \cdot x_P \right)\\
\Leftrightarrow \left (m + \frac{1}{m} \right ) \cdot x &= y_P + \frac{1}{m} \cdot x_P - t\\
\Leftrightarrow x &= \frac{m}{m^2+1} \left ( y_P + \frac{1}{m} \cdot x_P - t \right )
\end{align}
2013-11-22 21:40:15 +01:00
There is only one point with minimal distance. See Figure~\ref{fig:linear-min-distance}.
2013-11-05 20:47:41 +01:00
\clearpage
2013-11-22 21:40:15 +01:00
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Quadratic functions %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2013-11-05 20:30:34 +01:00
\section{Minimal distance to a quadratic function}
Let $f(x) = a \cdot x^2 + b \cdot x + c$ with $a \in \mdr \setminus \Set{0}$ and
2013-11-22 21:40:15 +01:00
$b, c \in \mdr$ be a quadratic function.
2013-11-05 20:30:34 +01:00
\begin{figure}[htp]
\centering
\begin{tikzpicture}
\begin{axis}[
legend pos=north west,
axis x line=middle,
axis y line=middle,
grid = major,
width=0.8\linewidth,
height=8cm,
grid style={dashed, gray!30},
xmin=-3, % start the diagram at this x-coordinate
xmax= 3, % end the diagram at this x-coordinate
ymin=-0.25, % start the diagram at this y-coordinate
ymax= 9, % end the diagram at this y-coordinate
axis background/.style={fill=white},
xlabel=$x$,
ylabel=$y$,
%xticklabels={-2,-1.6,...,7},
%yticklabels={-8,-7,...,8},
tick align=outside,
minor tick num=-3,
enlargelimits=true,
tension=0.08]
\addplot[domain=-3:3, thick,samples=50, red] {0.5*x*x};
\addplot[domain=-3:3, thick,samples=50, green] {x*x};
\addplot[domain=-3:3, thick,samples=50, blue] {x*x + x};
\addplot[domain=-3:3, thick,samples=50, orange] {x*x + 2*x};
\addplot[domain=-3:3, thick,samples=50, black] {-x*x + 6};
\addlegendentry{$f_1(x)=\frac{1}{2}x^2$}
\addlegendentry{$f_2(x)=x^2$}
\addlegendentry{$f_3(x)=x^2+x$}
\addlegendentry{$f_4(x)=x^2+2x$}
\addlegendentry{$f_5(x)=-x^2+6$}
\end{axis}
\end{tikzpicture}
\caption{Quadratic functions}
\end{figure}
2013-11-22 23:23:03 +01:00
\subsection{Calculate points with minimal distance}
We use Theorem~\ref{thm:minima-of-polynomials}:\nobreak
\begin{align}
0 &\stackrel{!}{=} (d_{P,f}^2)'\\
&= -2 x_p + 2x -2y_p f'(x) + \left (f(x)^2 \right )'\label{eq:minimizingFirstDerivative}\\
&= -2 x_p + 2x -2y_p (2ax+b) + ((ax^2+bx+c)^2)'\\
&= -2 x_p + 2x -2y_p \cdot 2ax-2 y_p b + (a^2 x^4+2 a b x^3+2 a c x^2+b^2 x^2+2 b c x+c^2)'\\
&= -2 x_p + 2x -4y_p ax-2 y_p b + (4a^2 x^3 + 6 ab x^2 + 4acx + 2b^2 x + 2bc)\\
&= 4a^2 x^3 + 6 ab x^2 + 2(1 -2y_p a+ 2ac + b^2)x +2(bc-by_p-x_p)\\
0 &\stackrel{!}{=}(d_{P,f}^2)''\\
&= 12a^2 x^2 + 12abx + 2(1 -2y_p a+ 2ac + b^2)
\end{align}
This is an algebraic equation of degree 3.
There can be up to 3 solutions in such an equation. An example is
\begin{align*}
a &= 1 & b &= 0 & c &= 1 & x_p &= 0 & y_p &= 1
\end{align*}
So $f(x) = x^2 + 1$ and $P(0, 1)$.
\begin{align}
0 &\stackrel{!}{=} 4 x^3 - 2x\\
&=2x(2x^2 - 1)\\
\Rightarrow x_1 &= 0 \;\;\; x_{2,3} = \pm \frac{1}{\sqrt{2}}
\end{align}
As you can easily verify, only $x_1$ is a minimum of $d_{P,f}$.
2013-11-05 20:30:34 +01:00
\subsection{Number of points with minimal distance}
It is obvious that a quadratic function can have two points with
minimal distance.
For example, let $f(x) = x^2$ and $P = (0,5)$. Then $P_{f,1} \approx (2.179, 2.179^2)$
has minimal distance to $P$, but also $P_{f,2}\approx (-2.179, 2.179^2)$.
Obviously, there cannot be more than three points with minimal distance.
But can there be three points?
\begin{figure}[htp]
\centering
2013-11-05 20:47:41 +01:00
\begin{tikzpicture}
\begin{axis}[
legend pos=north west,
axis x line=middle,
axis y line=middle,
grid = major,
width=0.8\linewidth,
height=8cm,
grid style={dashed, gray!30},
xmin=-0.7, % start the diagram at this x-coordinate
xmax= 0.7, % end the diagram at this x-coordinate
ymin=-0.25, % start the diagram at this y-coordinate
ymax= 0.5, % end the diagram at this y-coordinate
axis background/.style={fill=white},
xlabel=$x$,
ylabel=$y$,
%xticklabels={-2,-1.6,...,7},
%yticklabels={-8,-7,...,8},
tick align=outside,
minor tick num=-3,
enlargelimits=true,
tension=0.08]
\addplot[domain=-0.7:0.7, thick,samples=50, orange] {x*x};
\draw (axis cs:0,0.5) circle[radius=0.5];
\draw[red, thick] (axis cs:0,0.5) -- (axis cs:0.101,0.0102);
\draw[red, thick] (axis cs:0,0.5) -- (axis cs:-0.101,0.0102);
\draw[red, thick] (axis cs:0,0.5) -- (axis cs:0,0);
\addlegendentry{$f(x)=x^2$}
\end{axis}
\end{tikzpicture}
2013-11-05 20:30:34 +01:00
\caption{3 points with minimal distance?}
\end{figure}
2013-11-22 23:23:03 +01:00
\todo[inline]{write this}
2013-11-22 21:40:15 +01:00
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Cubic %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2013-11-05 20:30:34 +01:00
\section{Minimal distance to a cubic function}
2013-11-22 21:40:15 +01:00
Let $f(x) = a \cdot x^3 + b \cdot x^2 + c \cdot x + d$ be a cubic function
with $a \in \mdr \setminus \Set{0}$ and
2013-11-05 20:47:41 +01:00
$b, c, d \in \mdr$ be a function.
2013-11-05 20:30:34 +01:00
\subsection{Number of points with minimal distance}
2013-11-13 08:50:04 +01:00
2013-11-05 20:30:34 +01:00
\todo[inline]{Write this}
2013-11-05 20:47:41 +01:00
\subsection{Special points}
\todo[inline]{Write this}
\subsection{Voronoi}
For $b^2 \geq 3ac$
\todo[inline]{Write this}
2013-11-05 20:30:34 +01:00
\subsection{Calculate points with minimal distance}
2013-11-22 21:40:15 +01:00
When you want to calculate points with minimal distance, you can
2013-11-22 23:23:03 +01:00
take the same approach as in Equation \ref{eq:minimizingFirstDerivative}:
2013-11-22 21:40:15 +01:00
\begin{align}
0 &\stackrel{!}{=} -2 x_p + 2x -2y_p(f(x))' + (f(x)^2)'\\
\Leftrightarrow 0 &\stackrel{!}{=} 2 f(x) \cdot f'(x) - 2 y_p f'(x) + 2x - 2 x_p\\
\Leftrightarrow 0 &\stackrel{!}{=} \underbrace{\left (2 f(x) - 2 y_p \right ) \cdot f'(x)}_{\text{Polynomial of degree 5}} + \underbrace{2x - 2 x_p}_{\text{:-(}}
\end{align}
2013-11-05 20:30:34 +01:00
\todo[inline]{Write this}
\end{document}