Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
U
uva
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Taddeüs Kroes
uva
Commits
806d63aa
Commit
806d63aa
authored
Mar 02, 2011
by
Sander Mathijs van Veen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ModSim: Finished assignment 2.5
parent
9b3a2865
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
4 deletions
+16
-4
modsim/ass2/q5.c
modsim/ass2/q5.c
+1
-1
modsim/ass2/report.tex
modsim/ass2/report.tex
+15
-3
No files found.
modsim/ass2/q5.c
View file @
806d63aa
...
@@ -28,7 +28,7 @@ double f2(double x) {
...
@@ -28,7 +28,7 @@ double f2(double x) {
int
main
(
int
argc
,
char
**
argv
)
{
int
main
(
int
argc
,
char
**
argv
)
{
if
(
argc
!=
2
)
{
if
(
argc
!=
2
)
{
printf
(
"Usage: %s S
TEP
S
\n
"
,
argv
[
0
]);
printf
(
"Usage: %s S
LICE
S
\n
"
,
argv
[
0
]);
return
-
1
;
return
-
1
;
}
}
...
...
modsim/ass2/report.tex
View file @
806d63aa
...
@@ -130,7 +130,9 @@ aantal stappen is afgerond op een geheel getal.
...
@@ -130,7 +130,9 @@ aantal stappen is afgerond op een geheel getal.
\section
{
Newton-Raphson
}
% {{{
\section
{
Newton-Raphson
}
% {{{
\label
{
sec:Newton-Raphson
}
\label
{
sec:Newton-Raphson
}
% TODO: alleen voor snijlijnen en niet voor raaklijnen op de x-as (bisection,
% regula falsi). Starting values: plotten. En voeg output van q4 toe en
% vergelijk het aantal benodigde stappen.
% }}}
% }}}
...
@@ -178,8 +180,10 @@ double f2(x):
...
@@ -178,8 +180,10 @@ double f2(x):
double sin(x);
double sin(x);
\end{verbatim}
\end{verbatim}
\noindent
Dit heeft het volgende resultaat gegeven als we het programma met
\noindent
We hebben de exacte resultaten van de integralen berekend en die van
1.000.000 steps uitvoeren:
vergeleken met de benaderingen. Dit heeft het volgende resultaat gegeven toen we
het programma met 1.000.000 ``slices'' (het aantal stukjes waarin het interval
$
[
a, b
]
$
wordt verdeeld) hebben uitgevoerd:
\begin{table}
[H]
\begin{table}
[H]
\begin{tabular}
{
llllrr
}
\toprule
\begin{tabular}
{
llllrr
}
\toprule
...
@@ -213,6 +217,14 @@ sin & 0 & $8\pi$ & gauss & $-1.797258919631 \cdot 10^{-14}$ & $1.797258919
...
@@ -213,6 +217,14 @@ sin & 0 & $8\pi$ & gauss & $-1.797258919631 \cdot 10^{-14}$ & $1.797258919
\end{tabular}
\end{tabular}
\end{table}
\end{table}
De benaderingsfuncties in de tabel hebben elk hetzelfde aantal slices gebruikt.
Toch zien we verschillen in de afwijking van de exacte resultaten. De simpson's
rule en two-point gauss integration hebben een kleinere afwijking dan de
rectangle rule en trapezoidal rule methoden. We zien slechts nihile verschillen
tussen simpson's rule en two-point gauss integration. Echter zijn er (mits goed
ge
\"
implementeerd) minder cycles nodig voor de gauss integration. Daarom heeft
deze methode de voorkeur.
\\
\\
We kunnen de integraal
$
\int
_
0
^
2
{
x
^{
-
0
.
5
}
dx
}$
als volgt exact berekenen:
We kunnen de integraal
$
\int
_
0
^
2
{
x
^{
-
0
.
5
}
dx
}$
als volgt exact berekenen:
$$
\int
_
0
^
2
{
x
^{
-
0
.
5
}
dx
}
=
\left
[
2
\sqrt
{
x
}
\right
]
_
0
^
2
=
2
\sqrt
{
2
}
$$
$$
\int
_
0
^
2
{
x
^{
-
0
.
5
}
dx
}
=
\left
[
2
\sqrt
{
x
}
\right
]
_
0
^
2
=
2
\sqrt
{
2
}
$$
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment