MHB Euler’s Method y'+2y=2-e^(-4t) y(0)-1

  • Thread starter Thread starter karush
  • Start date Start date
  • Tags Tags
    Method
karush
Gold Member
MHB
Messages
3,240
Reaction score
5
Use Euler’s Method with a step size of h=0.1h=0.1
to find approximate values of the solution at tt = 0.1, 0.2, 0.3, 0.4, and 0.5.
Compare them to the exact values of the solution at these points.

Given IVP
$$y'+2y=2-{{\bf{e}}^{- 4t}}\quad yt(0)=1$$
ok from a previous post we found that the general solution was
$$y( t ) = 1 + \frac{1}{2}{{\bf{e}}^{ - 4t}} - \frac{1}{2}{{\bf{e}}^{ - 2t}}$$ Steward gives this for Euler's Method so not real sure how to follow this
https://www.physicsforums.com/attachments/8742​
Have to go to class, but will back on this when I get back.


 
Physics news on Phys.org
First, express the ODE in the form:

$$y'=f(t,y)$$

And then iterate the recursion:

$$y_{n+1}=y_n+hf\left(t_n,y_n\right)$$

where:

$$t_{n+1}=t_n+h$$

$$h=0.1,\,t_0=0,\,y_0=1$$
 
Euler's method approximates the derivative, y'= \frac{dy}{dx}, by the "difference quotient \frac{\Delta y}{\Delta x}: here \frac{\Delta y}{\Delta x}= -2y- e^{-4t} or \Delta y= (-2y- e^{-4t})\Delta x.

Start with t= 0, y= 1. Taking \Delta t= 0.1, \Delta y= (-2- e^0)(0.1)= -0.3 so the next step is t= 0+ 0.1= 0.1, y= 1- 0.3= 0.7. Now, \Delta t is still 0.1 and \Delta y= (-2(0.7)- e^{-0.4})(0.1)= (-1.4- 0.67032)(0.1)= -0.20703. The third step is t= 0.1+ 0.1= 0.2 and y= 0.7- 0.20703= 0.492968. \Delta t= 0.1 and \Delta y= (-2(0.492968)- e^{-0.8})(0.1)= -0.14353. The fourth step is t= 0.2+ 0.1= 0.3 and y= 0.492968- 0.14353= 0.0492968. Continue two more times.
 
Country Boy said:
Euler's method approximates the derivative, y'= \frac{dy}{dx}, by the "difference quotient \frac{\Delta y}{\Delta x}: here \frac{\Delta y}{\Delta x}= -2y- e^{-4t} or \Delta y= (-2y- e^{-4t})\Delta x.

wait isn't
$$\displaystyle y'=\frac{\Delta y}{\Delta x}= (2-2y- e^{-4t})$$
$$\Delta y = (2-2y- e^{-4t}) \Delta x$$
 
MarkFL said:
First, express the ODE in the form:

$$y'=f(t,y)$$

And then iterate the recursion:

$$y_{n+1}=y_n+hf\left(t_n,y_n\right)$$

where:

$$t_{n+1}=t_n+h$$

$$h=0.1,\,t_0=0,\,y_0=1$$

so $$f(t,y)=f(0,1)=2-2(0)-e^{-4(0)}=2-1=1$$
 
karush said:
so $$f(t,y)=f(0,1)=2-2(0)-e^{-4(0)}=2-1=1$$

$$y'=f(t,y)=2-e^{-4t}-2y$$

And so:

$$y_{n+1}=y_n+h\left(2-e^{-4t_n}-2y_n\right)$$

We then begin with:

$$y(0)=y_0=1$$ and $$t_0=0$$

$$y(0.1)\approx y_1=y_0+h\left(2-e^{-4t_0}-2y_0\right)=1+0.1\left(2-e^{-4\cdot0}-2\cdot1\right)=1+0.1(2-1-2)=0.9$$

For comparison:

$$y(0.1)=1+\frac{1}{2}e^{-0.4}-\frac{1}{2}e^{-0.2}\approx0.9257946$$

Now, continue iterating and comparing. :)
 
Thread 'Direction Fields and Isoclines'
I sketched the isoclines for $$ m=-1,0,1,2 $$. Since both $$ \frac{dy}{dx} $$ and $$ D_{y} \frac{dy}{dx} $$ are continuous on the square region R defined by $$ -4\leq x \leq 4, -4 \leq y \leq 4 $$ the existence and uniqueness theorem guarantees that if we pick a point in the interior that lies on an isocline there will be a unique differentiable function (solution) passing through that point. I understand that a solution exists but I unsure how to actually sketch it. For example, consider a...
Back
Top