[NumCS] Start on dft-chebyshev (chapter 3.6)

This commit is contained in:
2025-10-13 13:43:37 +02:00
parent 418d4968e0
commit d209a37067
2 changed files with 14 additions and 0 deletions

View File

@@ -118,6 +118,7 @@ Moral of the story: Use descriptive variable names and do NOT use $t$, $tt$, $tt
\input{parts/01_interpolation/01_trigonometric/03_interpolation/00_intro.tex}
\input{parts/01_interpolation/01_trigonometric/03_interpolation/01_zero-padding.tex}
\input{parts/01_interpolation/01_trigonometric/04_error-estimation.tex}
\input{parts/01_interpolation/01_trigonometric/05_dft-chebyshev.tex}
% ── piece-wise interpolation ────────────────────────────────────────
\newsection

View File

@@ -0,0 +1,13 @@
\subsection{DFT und Chebyshev-Interpolation}
Mithilfe der DFT können günstig und einfach die Chebyshev-Koeffizienten berechnet werden.
Die Idee basiert auf dem Satz 2.4.16, durch welchen schon schnell klar wird, dass es eine Verbindung zwischen den Fourier-Koeffizienten und Chebyshev-Koeffizienten gibt.
Die Chebyshev-Knoten sind folgendermassen definiert:
\begin{align*}
t_k := \cos\left( \frac{2k + 1}{2(n + 1)} \pi \right), \smallhspace k = 0, \ldots, n
\end{align*}
Mit den Hilfsfunktionen $g: [-1, 1] \rightarrow \C, s \mapsto f(\cos(2\pi s))$ und $q: [-1, 1] \rightarrow \C, s \mapsto p(\cos(2\pi s))$,
können wir folgendes mit der Interpolationsbedingung $f(t_k) = p(t_k)$ tun:
\begin{align*}
f(t_k) = p(t_k)
\end{align*}