Numerical Solution to ODE System - IVP or BVP?

Click For Summary
SUMMARY

The discussion centers on the classification of a system of spatial ordinary differential equations (ODEs) as either an initial value problem (IVP) or a boundary value problem (BVP). The equations are defined over the domain x = 0..L with specific boundary conditions: f1(0)=0, f2(0)=100, f3(L)=0, and f4(L)=100. The consensus is that this system qualifies as a BVP due to the presence of boundary conditions at both ends of the interval, despite having only one condition per function. The mathematical distinction lies in the requirement for multiple conditions for BVPs, which is satisfied in this case.

PREREQUISITES
  • Understanding of ordinary differential equations (ODEs)
  • Familiarity with boundary value problems (BVP) and initial value problems (IVP)
  • Experience with numerical methods in MATLAB, specifically bvp4c
  • Knowledge of first-order differential equations and their conditions
NEXT STEPS
  • Explore the implementation of MATLAB's bvp4c for solving boundary value problems
  • Study the mathematical theory behind existence and uniqueness of solutions for BVPs
  • Learn about converting higher-order differential equations into first-order systems
  • Investigate the role of boundary conditions in determining the type of differential equation problem
USEFUL FOR

Mathematicians, engineers, and researchers working with differential equations, particularly those involved in numerical analysis and computational methods for solving ODE systems.

mpowers
Messages
4
Reaction score
0
I have a system of spatial ODEs to solve... Actually a DAE system, but here's the issue:

The equations are vaild over a specific domain, x = 0..L

The equations are only bound at one point (their "initial point") but at either 0 or L
f1(0)=0
f2(0)=100
f3(L)=0
f4(L)=100
(also an algebraic expression that links all of the functions)

Essentially, those functions bound at L are moving "backwards" with respect to those bound at 0.

My question is, is this an initial value problem, or a boundary value problem? I started in MAPLE, and it decided (automatically) that it was a BVP. In MATLAB I am attempting to use bvp4c to come up with a solution, but is it really even a BVP if it only has one boundary condition, essentially an initial conditition, but defined at different spatial coordinates for different functions?

Your insight is appreciated.
 
Physics news on Phys.org
Since you are given the values, of the function and its derivative, at two different points, that's a "boundary value" problem. The mathematical difference is that "existence and uniqueness", for an initial value problem, depend only on the equation. For a boundary value problem it also depends on the boundary conditions.
 
Last edited by a moderator:
Just to make sure I understand...

I only have one value for each function at *one* point... (let's say L, but could be 0 for the other functions) but for the boundary at the other point (let's say 0, but other functions are not bound at 0) I can use the derivative of the function?

These are First order, btw.
 
I don't know what you mean by "use the derivative of the function".
 
Sorry... I need two boundary conditions for each function for a BVP, right? I only have one boundary condition per function... I thought you were saying that I could use the derivative of the function as a boundary condition.
 
What order are the equations? Typically, systems of equations are first order (any set of m nth order equations can be reduced to a system of mn first order equations). If you have have a system of 4 first order equations in 4 functions, then you need 4 conditions- exactly what you have. If you have 4 second or higher order equations then you don't have enough information. You can't "use" the derivative because you are given the derivative.
 
All first order. I though that if I had 4 first order equations, then I would need 8 boundary conditions for both ends of the interval for each equation. I guess you're saying that is not right?
 

Similar threads

Replies
0
Views
2K
  • · Replies 9 ·
Replies
9
Views
3K
  • · Replies 5 ·
Replies
5
Views
3K
  • · Replies 6 ·
Replies
6
Views
2K
  • · Replies 2 ·
Replies
2
Views
1K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 4 ·
Replies
4
Views
3K
  • · Replies 1 ·
Replies
1
Views
3K
  • · Replies 2 ·
Replies
2
Views
5K