[NumCS] Integrate numeric quadrature

This commit is contained in:
2025-10-18 09:09:17 +02:00
parent e71350b8f7
commit e37378d7c7
5 changed files with 60 additions and 33 deletions

View File

@@ -10,7 +10,7 @@
\begin{definition}[]{Lagrange Polynome}
Für Knoten (auch gennannt Stützstellen) $x_0, x_1, \ldots, x_n \in \R$ definieren wir die Lagrange-Polynome für $n = \text{Anzahl Stützstellen}$, also haben wir $n - 1$ Brüche, da wir eine Iteration überspringen, weil bei dieser $j = i$ ist:
\begin{align*}
l_i(x) = \prod_{j = 0 \neq i}^n \frac{x - x_j}{x_i - x_j}
l_i(x) = \prod_{j = 0 \atop j \neq i}^n \frac{x - x_j}{x_i - x_j}
\end{align*}
\end{definition}
Falls $j = i$ im Produkt, so überspringt $j$ diese Zahl.