../_images/book_cover.jpg

This notebook contains an excerpt from the Python Programming and Numerical Methods - A Guide for Engineers and Scientists, the content is also available at Berkeley Python Numerical Methods.

The copyright of the book belongs to Elsevier. We also have this interactive book online for a better learning experience. The code is released under the MIT license. If you find this content useful, please consider supporting the work on Elsevier or Amazon!

< 22.8 Summary and Problems | Contents | 23.1 ODE Boundary Value Problem Statement >

Chapter 23. Ordinary Differential Equation - Boundary Value Problems


Motivation

After the discussion of ODE initial value problems, in this chapter, we will introduce another type of problems - the boundary value problems.

The boundary value problem in ODE is an ordinary differential equation together with a set of additional constraints, that is boundary conditions. There are many boundary value problems in science and engineering. Therefore, this chapter covers the basics of ordinary differential equations with specified boundary values. We will discuss two methods for solving boundary value problems, the shooting methods and finite difference methods. By the end of this chapter, you should understand what ordinary differential equation boundary value problems are, how to pose these problems to Python, and how to solve the problems.