-
The following steps will guide you in calculating the Forward Euler approximation after one step of size $\Delta t = 10.0$, yielding an estimate of $v(10.0)$.
What is the initial condition? $v(0) = $
Based on that result and the differential equation, what is the slope of $v(t)$ at time $t=0$?
$\diff{ v }{t}(0) = 0.1 \left(- \frac{1}{80} v{\left (0 \right )} + 1\right) v{\left (0 \right )} =$
Those two numbers are enough information to make a linear approximation at $t=0$.
$L(t) = v(0) + \diff{ v }{t}(0) (t-0) =$
We use this linear approximation to approximate the value of $v(t)$ at $t=\Delta t = 10.0$.
$v(10.0) \approx L(10.0) =$
-
The following steps will guide you in calculating the Forward Euler approximation after the second step of size $\Delta t = 10.0$, yielding an estimate of $v(20.0)$.
Given the value of $v(10.0)$ estimated above and the differential equation, what is the slope of $v(t)$ at time $t=\Delta t = 10.0$?
$\diff{ v }{t}(10.0) = 0.1 \left(- \frac{1}{80} v{\left (10.0 \right )} + 1\right) v{\left (10.0 \right )} =$
Those two numbers are enough information to make a linear approximation at $t=\Delta t = 10.0$.
$L(t) = v(10.0) + \diff{ v }{t}(10.0) (t-10.0) =$
We use this linear approximation to approximate the value of $v(t)$ at $t=2\Delta t = 20.0$.
$v(20.0) \approx L(20.0) =$
-
The following steps will guide you in calculating the Forward Euler approximation after the third step of size $\Delta t = 10.0$, yielding an estimate of $v(30.0)$.
Given the value of $v(20.0)$ estimated above and the differential equation, what is the slope of $v(t)$ at time $t=2\Delta t = 20.0$?
$\diff{ v }{t}(20.0) = 0.1 \left(- \frac{1}{80} v{\left (20.0 \right )} + 1\right) v{\left (20.0 \right )} =$
Those two numbers are enough information to make a linear approximation at $t=2\Delta t = 20.0$.
$L(t) = v(20.0) + \diff{ v }{t}(20.0) (t-20.0) =$
We use this linear approximation to approximate the value of $v(t)$ at $t=3\Delta t = 30.0$.
$v(30.0) \approx L(30.0) =$