5. Boundary Value Problems#
The ordinary differential equations (ODEs) considered so far have been initial value problems (IVPs), where the value of the solution and, for higher-order equations, its derivatives are specified at a single point in the domain. Another important class of problems are boundary value problems (BVPs), where conditions are specified at the endpoints of the interval. In this chapter, we consider two-point boundary value problems governed by second-order ODEs.
Definition 5.1 (General two-point boundary value problem)
A two-point boundary value problem is a second-order ODE together with boundary conditions specified at two distinct points of the domain
for some known values \(a\) and \(b\).
5.1. Existence and uniqueness of solutions to boundary value problems#
For well-posed linear initial value problems satisfying the conditions of the existence and uniqueness theorem, a solution is unique. Boundary value problems behave differently and may possess a unique solution, no solution, or infinitely many solutions.
To illustrate the different possibilities, consider the following examples.
The general solution to the ODE \(y'' + 4y = 0\) is
Substituting the boundary values we have
Here we can determine the values of \(c_1\) and \(c_2\) so this boundary value problem has the unique solution
Changing the boundary conditions produces a very different outcome.
Substituting the boundary values into equation (5.2) we have
Here we have a solution for \(c_1\) but we cannot determine the value of \(c_2\) so the solution to the boundary value problem is
where \(c_2\) can be any value. So we have infinitely many solutions.
Finally, a slight modification of the upper boundary condition leads to an inconsistent system
and substituting the boundary values equation (5.2) we have
Here we have \(c_1 = 1\) and \(c_1 = 2\) which is a contradiction, so this boundary value problem does not have a solution.
Theorem 5.1 (Uniqueness of the solution to boundary value problems)
A linear boundary value problem of the form
where \(p(t)\), \(q(t)\) and \(r(t)\) are continuous functions on the interval. The boundary value problem has a unique solution provided that the following conditions are satisfied
\(p(t)\), \(q(t)\) and \(r(t)\) are continuous on \([t_0, t_{\max}]\);
\(q(t) > 0\) for all \(t\in [t_0,t_{\max}]\).
Example 5.1
Show that the following boundary value problem has a unique solution
Solution
Comparing this boundary value problem to equation (5.3) we have
which are all continuous on \([0,1]\) and \(q(t) > 0\) for all \(t\in [0,1]\) so this boundary value problem has a unique solution.