Questions tagged [boundary-value-problem]

For questions concerning the properties and solutions to the boundary-value problem for differential equations. By a Boundary value problem, we mean a system of differential equations with solution and derivative values specified at more than one point. Most commonly, the solution and derivatives are specified at just two points (the boundaries) defining a two-point boundary value problem.

Let $~I = (a, b) ⊆ \mathbb{R}$ be an interval. Let $p, q, r : (a, b) → \mathbb{R}~$ be continuous functions. Consider the linear second order equation given by $$y′′ + p(x)y′ + q(x)y = r(x), \qquad a < x < b.$$Corresponding to this ODE, there are four important kinds of (linear) boundary conditions. They are given by

$1.\quad$Dirichlet or First kind :$$y(a) = η_1,\quad y(b) = η_2,$$ $2.\quad$Neumann or Second kind : $$y′(a) = η_1,\quad y′(b) = η_2,$$ $3.\quad$ Robin or Third or Mixed kind : $$α_1y(a) + α_2y′(a) = η_1, \quad β_1y(b) + β_2y′(b) = η_2,$$ $4.\quad$ Periodic : $$y(a) = y(b),\quad y′(a) = y′(b).$$


There are three types of boundary conditions commonly encountered in the solution of partial differential equations:

$1.\quad$Dirichlet boundary conditions specify the value of the function on a surface} $$T=f(r,t),$$

$2.\quad$ Neumann boundary conditions specify the normal derivative of the function on a surface, $$\frac{\partial T}{\partial n}=\hat{n}\cdot \delta T=f(\vec{r},t), $$ $3.\quad$Robin boundary conditions for an elliptic partial differential equation in a region $\Omega$, Robin boundary conditions specify the sum of $~\alpha u~$ and the normal derivative of $u=f$ at all points of the boundary of $\Omega$, with $\alpha$ and $f$ being prescribed.

References:

"https://en.wikipedia.org/wiki/Boundary_value_problem"

"http://www.math.iitb.ac.in/~siva/ma41707/ode6.pdf"

1754 questions
0
votes
0 answers

How to solve the two dimension Poisson equation with a Dirac delta function.

The equation is from the paper "Point defect sink efficiency of low-angle tilt grain boundaries". I get confused that the author get a solution without firstly giving the boundary condition. the equation is $$\Delta c=\delta(\Gamma)$$ and…
0
votes
0 answers

Determine the boundary of M

Be a set $M ⊆ R^2$ given by $M = ${$x = (x_1,x_2)^T ∈ R^2 | 0 < x_1^2 + x_2^2 < 4\text{ and }x_1 ≤1$} Determine the boundary of M Attempt, i know that $x_1^2 + x_2^2 = 4$ is the circle and $x_1 = 1$ is the line. How can i combine them, to get the…
Vek
  • 303
0
votes
0 answers

Definition of Energy Functional

I am currently learning about boundary value problems and how to calculate their weak formulations. I came across something called "Energy Functional" some call it "The Energy of a System" and I could not find a proper definition for this. So what…
0
votes
1 answer

How should I solve a BVP for a certain fourth order ordinary differential equation?

The material of this question is relevant to solving boundary value problems, Rayleigh-Benard convection and the Boussinesq equations. How might I solve the boundary value problem ( BVP ),defined by \begin{align} \left[-S+ \left( …
0
votes
0 answers

Boundary Summation Problems

I am taking Algorithm and DS class this semster and the first questiom on the homework was to find the tight bounds of a series. I have never studied boundary summation problems and don't know how to solve such problems. Can someone cite me some…
0
votes
1 answer

Solving the boundary value problem $y''+\lambda y=0,\ y(0)-y'(0)=0,\ y(1)=0$

For the boundary value problem $$y''+\lambda y=0,\ \ y(0)-y'(0)=0,\ \ y(1)=0$$ I believe only the trivial solution applies when $\lambda =0$. When $\lambda <0$ I get solutions of the form $c_1e^{-\sqrt{-\lambda}t}+c_2e^{\sqrt{-\lambda}t}$ and…
Addem
  • 5,656
0
votes
0 answers

Robin boundary condition evaluation confusion

I wish to clear up a slight confusion that I have. This isn't very complicated but I'm just a bit stumped. we know the the Robin Boundary Condition states: $$ au+b\frac{\partial u}{\partial n} = g\hspace{15pt}on\hspace{15pt}\partial\Omega$$ My…
RRR
  • 1
0
votes
1 answer

Finding the solution to a boundary value problem

I am trying to get through an assignment for my ODE class and was sick for a few lectures so I missed this part of the material. The question asks me: Find the solution to the boundary value problem $$\frac{d^2y}{dt^2}-12\frac{dy}{dt}+35y=0,…
1
2