How do i deal with integral boundary conditions?

nocloud
Messages
11
Reaction score
0
I am trying to solve an ode of the form u"(x)=a(x) where a(x) is some known function and the domain is from -inf to +inf. I am required to use Green's function.

The boundary condition is u(0) = Integral[u(x),{x,0,1}] = 0

My Green's function has the form
G(x,y) = A(y)*x+B(y) x<y
G(x,y) = C(y)*x+D(y) x>y

How the heck do I use that integral to find the coefficients A and B?
 
Physics news on Phys.org
nocloud said:
I am trying to solve an ode of the form u"(x)=a(x) where a(x) is some known function and the domain is from -inf to +inf. I am required to use Green's function.

The boundary condition is u(0) = Integral[u(x),{x,0,1}] = 0

My Green's function has the form
G(x,y) = A(y)*x+B(y) x<y
G(x,y) = C(y)*x+D(y) x>y

How the heck do I use that integral to find the coefficients A and B?
Since G(x,y) must satisfy the same boundary conditions as u, for all y, you must have
\int_0^1 G(x, y)dx= 0
for all y.
\int_0^1 G(x,y)dx= \int_0^y (Ax+ B) dx+ \int_y^1 (Cx+ D) dx
= \frac{1}{2}Ay^2+ By+ C+ D - \frac{1}{2}Cy^2- Dy= 0

You will also need to use, of course, the conditions at x= y: Ay+ B= Cy+ D and A- C= 1. That is still only three conditions to determine four functions of y. The difficulty is not that the boundary condition is integral but that there is only one boundary condition. In spite of the fact that the single boundary condition involves both endpoints, you still only have one boundary condition and you need two.
 
Thread 'Direction Fields and Isoclines'
I sketched the isoclines for $$ m=-1,0,1,2 $$. Since both $$ \frac{dy}{dx} $$ and $$ D_{y} \frac{dy}{dx} $$ are continuous on the square region R defined by $$ -4\leq x \leq 4, -4 \leq y \leq 4 $$ the existence and uniqueness theorem guarantees that if we pick a point in the interior that lies on an isocline there will be a unique differentiable function (solution) passing through that point. I understand that a solution exists but I unsure how to actually sketch it. For example, consider a...
Back
Top