vault backup: 2024-12-02 13:14:39

This commit is contained in:
Dane Sabo 2024-12-02 13:14:39 -05:00
parent 7dad4922d7
commit 12829572f0

View File

@ -6,3 +6,12 @@ First order DDE:
$$\frac{dx}{dt} = -x(t-1)$$ $$\frac{dx}{dt} = -x(t-1)$$
This is a problem. We cannot use an initial value, we need **an initial history function (IHF)**. This is the behaviour of x(t) defined in an interval $[-\tau_0, 0]$, assuming solution time starts at $t=0$ This is a problem. We cannot use an initial value, we need **an initial history function (IHF)**. This is the behaviour of x(t) defined in an interval $[-\tau_0, 0]$, assuming solution time starts at $t=0$
## Method of Steps
Think of DDE as being a mapping between the past interval and the present interval
$$x(t) = \phi_{i-1}(t)$$ on any interval $[t_i-1,t_i]$
$$\int_{\phi_{i-1}(t)}^{x(t)}dx' = - \int_{t_i}^t \phi_{i-1}(t' - 1)dt'$$
Then after some steps
$$\frac{dx}{dt} = -x(t-1) \rightarrow dx' = -x'(t'-1)dt'$$
And then this can be solved at each interval.
- This gets annoying.
- Need to solve at each interval over and over.