mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-25 14:28:05 +02:00
Übungsblatt 11, Aufgabe 31 hinzugefügt
This commit is contained in:
parent
550dc54f9c
commit
d780636075
5 changed files with 114 additions and 1 deletions
|
@ -8,7 +8,7 @@ Zunächst ist nach der Familie von Quadraturformeln gefragt, für die gilt: ($p
|
||||||
\end{align}
|
\end{align}
|
||||||
|
|
||||||
Nach Satz 29 sind in der Familie genau die QFs, für die gilt: \\
|
Nach Satz 29 sind in der Familie genau die QFs, für die gilt: \\
|
||||||
Für alle Polynome $g(x)$ mit Grad $\le m-1$ gilt:
|
Für alle Polynome $g(x)$ mit Grad $\le m-1 = 0$ gilt:
|
||||||
\begin{align}
|
\begin{align}
|
||||||
\int_0^1 M(x) \cdot g(x) \mathrm{d}x = 0 \label{a3}
|
\int_0^1 M(x) \cdot g(x) \mathrm{d}x = 0 \label{a3}
|
||||||
\end{align}
|
\end{align}
|
||||||
|
|
Binary file not shown.
58
documents/Numerik/UB11/Aufgabe31.tex
Normal file
58
documents/Numerik/UB11/Aufgabe31.tex
Normal file
|
@ -0,0 +1,58 @@
|
||||||
|
\section*{Aufgabe 31}
|
||||||
|
\subsection*{Gesucht:}
|
||||||
|
Eine Quadraturformel maximaler Ordnung mit:
|
||||||
|
\begin{align}
|
||||||
|
s &= 3\\
|
||||||
|
c_1 &= 0\\
|
||||||
|
c_3 &= 1\\
|
||||||
|
\end{align}
|
||||||
|
|
||||||
|
\subsection*{Lösung:}
|
||||||
|
|
||||||
|
Nach Satz 28 können Ordnungen $\geq s = 3$ erreicht werden.
|
||||||
|
|
||||||
|
Die Ordnung kann nach Satz 31 höchstens $2s = 6$ sein. Da $c_1 = 0$
|
||||||
|
ist, kann es jedoch keine Gauß-Quadraturformel sein. Also kann
|
||||||
|
die Ordnung höchstens $5$ sein.
|
||||||
|
|
||||||
|
\paragraph*{Ordnung 5}
|
||||||
|
|
||||||
|
Nutze Satz 29:
|
||||||
|
|
||||||
|
\begin{align}
|
||||||
|
M(x) &= (x-c_1) (x-c_2) (x-c_3)\\
|
||||||
|
&= x (x-c_2) (x-1)\\
|
||||||
|
&= (x^2- x) (x-c_2)\\
|
||||||
|
&= x^3 - (1+c_2)x^2 + c_2 x\\
|
||||||
|
\int_0^1 M(x) \cdot g(x) \mathrm{d} x &\stackrel{!}{=} 0
|
||||||
|
\end{align}
|
||||||
|
|
||||||
|
Da wir Ordnung $5 = s + 2$ erreichen wollen, muss $g$ ein beliebiges
|
||||||
|
Polynom vom Grad $\leq 2-1 = 1$ sein. Also:
|
||||||
|
\begin{align}
|
||||||
|
g(x) &= ax + b\\
|
||||||
|
M(x) \cdot g(x) &= ax^4 + (b-a-ac_2)x^3 + (ac_2-bc_2-b)x^2 + b c_2 x\\
|
||||||
|
\int_0^1 M(x) g(x) \mathrm{d} x &= \frac{a}{5} + \frac{b-a-ac_2}{4} + \frac{ac_2 - bc_2-b}{3} + \frac{b c_2}{2}\\
|
||||||
|
&= \frac{a c_2}{12}-\frac{a}{20}+\frac{b c_2}{6}-\frac{b}{12}\\
|
||||||
|
0 &\stackrel{!}{=}\frac{a c_2}{12}-\frac{a}{20}+\frac{b c_2}{6}-\frac{b}{12}\\
|
||||||
|
\Leftrightarrow 0 &\stackrel{!}{=} 5 a c_2 - 3a + 10 b c_2 - 5 b\\
|
||||||
|
\Leftrightarrow -5 a c_2 - 10 b c_2&\stackrel{!}{=} - 3a - 5 b\\
|
||||||
|
\Leftrightarrow 5 a c_2 + 10 b c_2&\stackrel{!}{=} 3a + 5 b\\
|
||||||
|
\Leftrightarrow c_2(5 a + 10 b)&\stackrel{!}{=} 3a + 5 b\\
|
||||||
|
\Leftrightarrow c_2 &\stackrel{!}{=} \frac{3a + 5 b}{5 a + 10 b}
|
||||||
|
\end{align}
|
||||||
|
|
||||||
|
Offensichtlich gibt es kein $c_2$, dass diese Bedingung für jedes $a,b \in \mathbb{R}$
|
||||||
|
erfüllt. Daher kann es keine Quadraturformel der Ordnung $5$ mit den Knoten
|
||||||
|
$0$ und $1$ geben.
|
||||||
|
|
||||||
|
\paragraph*{Ordnung 4}
|
||||||
|
Die Simpson-Regel erfüllt offensichtlich alle Bedinungen und hat
|
||||||
|
Ordnung 5:
|
||||||
|
|
||||||
|
\begin{align}
|
||||||
|
c_2 &= \nicefrac{1}{2}\\
|
||||||
|
b_1 &= \nicefrac{1}{6}\\
|
||||||
|
b_2 &= \nicefrac{4}{6}\\
|
||||||
|
b_3 &= \nicefrac{1}{6}
|
||||||
|
\end{align}
|
8
documents/Numerik/UB11/Makefile
Normal file
8
documents/Numerik/UB11/Makefile
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
SOURCE = UB11
|
||||||
|
make:
|
||||||
|
pdflatex -shell-escape $(SOURCE).tex -output-format=pdf
|
||||||
|
pdflatex -shell-escape $(SOURCE).tex -output-format=pdf
|
||||||
|
make clean
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -rf $(TARGET) *.class *.html *.log *.aux *.out *.pyg
|
47
documents/Numerik/UB11/UB11.tex
Normal file
47
documents/Numerik/UB11/UB11.tex
Normal file
|
@ -0,0 +1,47 @@
|
||||||
|
\documentclass[a4paper]{scrartcl}
|
||||||
|
\usepackage{amssymb, amsmath} % needed for math
|
||||||
|
\usepackage[utf8]{inputenc} % this is needed for umlauts
|
||||||
|
\usepackage[ngerman]{babel} % this is needed for umlauts
|
||||||
|
\usepackage[T1]{fontenc} % this is needed for correct output of umlauts in pdf
|
||||||
|
\usepackage{pdfpages} % Signatureinbingung und includepdf
|
||||||
|
\usepackage{geometry} % [margin=2.5cm]layout
|
||||||
|
\usepackage[pdftex]{hyperref} % links im text
|
||||||
|
\usepackage{color}
|
||||||
|
\usepackage{framed}
|
||||||
|
\usepackage{enumerate} % for advanced numbering of lists
|
||||||
|
\usepackage{marvosym} % checkedbox
|
||||||
|
\usepackage{wasysym}
|
||||||
|
\usepackage{braket} % for \Set{}
|
||||||
|
\usepackage{pifont}% http://ctan.org/pkg/pifont
|
||||||
|
\usepackage{gauss}
|
||||||
|
\usepackage{algorithm,algpseudocode}
|
||||||
|
\usepackage{parskip}
|
||||||
|
\usepackage{lastpage}
|
||||||
|
\usepackage{gauss}
|
||||||
|
\usepackage{units}
|
||||||
|
\usepackage{amsthm}
|
||||||
|
\allowdisplaybreaks
|
||||||
|
|
||||||
|
\newcommand{\cmark}{\ding{51}}%
|
||||||
|
\newcommand{\xmark}{\ding{55}}%
|
||||||
|
|
||||||
|
\title{Numerik Übungsblatt 11 - Musterlösung}
|
||||||
|
\makeatletter
|
||||||
|
\AtBeginDocument{
|
||||||
|
\hypersetup{
|
||||||
|
pdfauthor = {Martin Thoma, Peter, Felix},
|
||||||
|
pdfkeywords = {Numerik, KIT, Übungsblatt},
|
||||||
|
pdftitle = {\@title}
|
||||||
|
}
|
||||||
|
\pagestyle{fancy}
|
||||||
|
\lhead{\@title}
|
||||||
|
\rhead{Seite \thepage{} von \pageref{LastPage}}
|
||||||
|
}
|
||||||
|
\makeatother
|
||||||
|
|
||||||
|
\usepackage{fancyhdr}
|
||||||
|
\fancyfoot[C]{}
|
||||||
|
|
||||||
|
\begin{document}
|
||||||
|
\input{Aufgabe31}
|
||||||
|
\end{document}
|
Loading…
Add table
Add a link
Reference in a new issue