An initial value problem (IVP) is a Differential equation together with initial conditions that specify the function and its derivatives at a single point. The DE alone has a family of solutions; the initial conditions pin down a specific one.
For an -th order ODE, you need initial conditions: the value of the function and the values of its first derivatives, all at the same point :
Why conditions for an -th order ODE
The general solution of an -th order ODE has arbitrary constants. To pin them all down uniquely, you need equations — one per condition.
For first-order: has general solution . One arbitrary constant, one initial condition needed: .
For second-order: has general solution . Two constants, so two conditions: typically (position) and (velocity).
Example
The IVP , has the unique solution .
For a second-order example: , , pins down a specific solution from the family .
Initial vs boundary conditions
Two kinds of “side conditions” for ODEs:
- Initial conditions: , , etc. — all at the same point. Used in IVPs.
- Boundary conditions: function values specified at different points, e.g., , . Used in boundary value problems (BVPs), which are common for PDEs (and rare for ODEs).
For ODEs, almost everything is an IVP. BVPs become important in PDEs (heat equation, wave equation) where you specify behavior on the boundary of a region.
When does the IVP have a solution?
The Existence and uniqueness theorem gives sufficient conditions: if in is continuous near and is also continuous, then a unique local solution exists.
If both conditions hold, the solution is guaranteed and unique in some interval around . If they fail, the IVP might have multiple solutions, no solution, or solutions that exist only briefly.
Solving IVPs
The general procedure:
- Find the general solution of the DE (using whichever method fits — separation of variables, integrating factor, characteristic equation, Laplace transform, etc.).
- Apply the initial conditions to solve for the arbitrary constants.
- Substitute back to get the particular solution.
For example, , , :
- General solution: .
- , so .
- , so .
- Particular solution: .
For solving IVPs efficiently, especially with discontinuous forcing terms, the Laplace transform is the most powerful tool.
For the case where the relationship between and is given implicitly, see Implicit solution to ODE.