An initial value problem (IVP) is a first-order ODE together with the solution value at the left endpoint.
y′(t)=f(t,y),a≤t≤b,y(a)=α
Most IVPs have no analytical solution. Numerical methods approximate y at discrete points of [a,b].
Lipschitz Condition
f(t,y) satisfies a Lipschitz condition in y on D⊆R2iff a constant L>0 exists with
∣f(t,y1)−f(t,y2)∣≤L∣y1−y2∣
for all (t,y1),(t,y2)∈D. L is a Lipschitz constant for f.
Partial Derivative Test
If D is convex and a constant L>0 exists with ∂y∂f(t,y)≤L for all (t,y)∈D, then f satisfies a Lipschitz condition in y on D with Lipschitz constant L.
Existence and Uniqueness
Let D=[a,b]×R. If f is continuous on Dand satisfies a Lipschitz condition in y on D, then the IVP has a unique solution y(t) for a≤t≤b.
For example, consider: y′=1+tsin(ty), 0≤t≤2, y(0)=0.
Here ∂y∂f=∣t2cos(ty)∣≤4 on [0,2]×R, so a unique solution exists.
Stable Solution
Let δ(t) be a continuous perturbation of the equation and δ0 a perturbation of the initial value. The perturbed problem is
z′(t)=f(t,z)+δ(t),a≤t≤b,z(a)=α+δ0
The solution y(t) is stable iff constants ε0>0 and k>0 exist such that for every ε∈(0,ε0):
whenever ∣δ(t)∣<ε for all t∈[a,b]and∣δ0∣<ε
the perturbed problem has a unique solution z(t)
∣z(t)−y(t)∣<kε for all t∈[a,b]
Here:
k: stability constant, independent of ε
The perturbed solution stays within kε of the original. The change in the solution is bounded proportionally to the size of the perturbations.
Well-Posed Problem
The IVP is well-posed iff:
a unique solution y(t) exists
the solution is stable
Check well-posedness before applying any numerical method.
Well-Posedness from Lipschitz
Let D=[a,b]×R. If f is continuous and satisfies a Lipschitz condition in y on D, then the IVP is well-posed.
A well-posed IVP may fail the Lipschitz condition. If Lipschitz fails, check the well-posed definition directly.
Worked Example
y′(t)=y−t2+1, 0≤t≤2, y(0)=0.5.
f(t,y)=y−t2+1 is continuous on D=[0,2]×R, and ∂y∂f=1. So f is Lipschitz in y with L=1, and the IVP is well-posed.
To see the stability bound directly, take a constant equation perturbation δ and an initial perturbation δ0