next up previous
Next: About this document ...

EULER's METHOD

Euler's Method:
given $y'=f(t,y)$, with $y(t_0) = y_0$, use

\begin{displaymath}y_{n+1} = y_n + hf(t_n,y_n), \mbox{ with } t_n = t_0+nh,\end{displaymath}

where $h$ is some fixed stepsize, and we want $y_n \simeq y(t_n)$. Note: we do not get $y(t)$; only $y_1, y_2, \ldots \simeq y(t_1), y(t_2), \ldots$.
Issues: accuracy? efficiency?
Motivations:
  1. If $y_n \simeq y(t_n)$, then $f(t_n,y_n)$ is the slope of the tangent line to the solution at $t_n$, so if $h$ is small enough, we can approximate $y(t)$ near $t_n$ using the tangent line, and then $y(t_n) \simeq y_n + hf(t_n,y_n)$.
  2. The integrated form of the DE is

    \begin{displaymath}\rule{0pt}{5pt}\hspace{-4cm}y(t_{n+1}) = y(t_n) + \int_{t_n}^{t_{n+1}}f(s,y(s))ds\end{displaymath}

    so, using rectangle approximation for integral,

    \begin{displaymath}y(t_{n+1})\simeq y(t_n)+hf(t_n,y(t_n)) \simeq y_n+hf(t_n,y_n).\end{displaymath}

EXISTENCE and UNIQUENESS THEORY

General DE:
$y'=f(t,y)$, given $y(0) = 0$.
Solution Theorem:
if $f$ and $f_y$ are continuous for
$R = \{ (y,t) :\vert t\vert < a, \vert y\vert < b\}$, then there exists
an $h>0$, such that, for all $\vert t\vert \leq h \leq a$, there exists
a unique solution $\phi(t)$ for $y'=f(t,y)$.
Picard's Proof




next up previous
Next: About this document ...
2006-09-11