5. Boundary Value Problems#
The ODEs that we have encountered so far are initial value problems where we know the solution of the ODE at the lower boundary of the \(t\) domain. Another type of problem are Boundary Value Problems (BVP) which is where the solution at both boundaries of the \(t\) domain are known. Here we will be looking at solving two-point boundary value problems based on second-order ODEs.
(General two-point boundary value problem)
A two-point boundary value problem is a second-order ODE where the solutions at the lower and upper boundaries of the domain are known
for some known values \(\alpha\) and \(\beta\).
5.1. Existence and uniqueness of solutions to boundary value problems#
If an initial value problem has a solution it will be unique for a particular initial value. This is not true for boundary value problems which can have a unique solution, no solution or an infinite number of solutions. Consider the following boundary value problem
The general solution to the ODE \(y'' + 4y = 0\) is
so 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
Now consider the boundary value problem
and substituting the boundary values 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 consider the boundary value problem
and substituting the boundary values we have
Here we have \(c_1 = 1\) and \(c_2 = 2\) which is a contradiction so this boundary value problem does not have a solution.
(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 some functions of \(t\) then it has a unique solution if the following are satisfied
\(p(t)\), \(q(t)\) and \(r(t)\) are continuous on \([t_{\min}, t_{\max}]\);
\(q(t) > 0\) for all \(t\in [t_{\min},t_{\max}]\).
Show that the following boundary value problem has a unique solution
Solution (click to show)
Comparing this boundary value problem to equation (5.2) we have
which are all continuous on \([0,1]\) and \(q(t)\geq \) for all \(t\in [0,1]\) so this boundary value problem has a unique solution.