Ver código fonte

Bisection method and Muellers method added

Martin Thoma 11 anos atrás
pai
commit
44b274b3a6

+ 34 - 0
documents/math-minimal-distance-to-cubic-function/cubic-functions.tex

@@ -216,4 +216,38 @@ initial guess.
 \todo[inline]{TODO}
 \clearpage
 
+\subsubsection{Muller's method}
+Muller's method was first presented by David E. Muller in 1956.
+
+\subsubsection{Bisection method}
+The idea of the bisection method is the following:
+
+Suppose you know a finite intervall $[a,b]$ in which you have 
+exactly one root $r \in (a,b)$ with $f(r) = 0$.
+
+Then you can half that interval:
+    \[[a, b] = \left [a, \frac{a+b}{2} \right ] \cup \left [\frac{a+b}{2}, b \right ]\]
+
+Now three cases can occur:
+\begin{enumerate}
+    \item[Case 1] $f(\frac{a+b}{2})=0$: You have found the exact root.
+    \item[Case 2] $\sgn(a) = \sgn(\frac{a+b}{2})$: Continue searching in $[\frac{a+b}{2}, b]$
+    \item[Case 3] $\sgn(b) = \sgn(\frac{a+b}{2})$: Continue searching in $[a, \frac{a+b}{2}]$
+\end{enumerate}
+
+\subsubsection{Bairstow's method}
+Cite from Wikipedia:
+The algorithm first appeared in the appendix of the 1920 book "Applied Aerodynamics" by Leonard Bairstow. The algorithm finds the roots in complex conjugate pairs using only real arithmetic.
+
+[...]
+\todo[inline]{Find a source for the following!}
+A particular kind of instability is observed when the polynomial has odd degree and only one real root.
+
+
+
 \section{Defined on a closed interval $[a,b] \subseteq \mdr$}
+The point with minimum distance can be found by:
+\[\underset{x\in[a,b]}{\arg \min d_{P,f}(x)} = \begin{cases}
+ S_3(f, P) &\text{if } S_3(f, P) \cap [a,b] \neq \emptyset\\
+  TODO     &\text{if } S_3(f, P) \cap [a,b] = \emptyset
+    \end{cases}\]

BIN
documents/math-minimal-distance-to-cubic-function/math-minimal-distance-to-cubic-function.pdf


+ 1 - 0
documents/math-minimal-distance-to-cubic-function/math-minimal-distance-to-cubic-function.tex

@@ -28,6 +28,7 @@
 \theorembodyfont{\normalfont} % nicht mehr kursiv
 
 \def\mdr{\ensuremath{\mathbb{R}}}
+\newcommand{\sgn}{\text{sgn}}
 \renewcommand{\qed}{\hfill\blacksquare}
 
 \newframedtheorem{theorem}{Theorem}

+ 4 - 1
documents/math-minimal-distance-to-cubic-function/quadratic-case-2.3.tex

@@ -2,5 +2,8 @@ One solution is
 \[x = \frac{(1-i \sqrt{3}) \alpha}{\sqrt[3]{12} \cdot t}
      -\frac{(1+i\sqrt{3}) t}{2\sqrt[3]{18}}\]
 
-The verification of this case is pretty much the same as for
+The complex conjugate root theorem states
+that if $x$ is a complex root of a polynomial $P$, then its
+complex conjugate $\overline{x}$ is also a root of $P$.
+The solution presented in this case is the complex conjugate of
 case 2.2.