A question on Boundary Value Problem asked in CSIR(India)-Dec16

78 Views Asked by At

The boundary value problem $x^2y''-2xy'+2y=0$ subjected to boundary conditions$y(1)+\alpha y'(1)=1 ; y(2)+\beta y'(2)=2$ has unique solution if $$1.\alpha=-1,\beta=2\\2.\alpha=-2,\beta=2\\3.\alpha=-1,\beta=-2\\4.\alpha=-3,\beta=2/3.\\$$ Kindly suggest from where do I prepare to solve such problem and how do I solve them? Question seems very nice to me but I couldn't find any usual ODE technique I could solve it.

1

There are 1 best solutions below

3
On BEST ANSWER

Given the boundary value problem

$$\tag 1 x^2y''-2xy'+2y=0$$

We see that this is an Euler-Cauchy type equation, so we try

$$y = x^m \implies y' = mx^{m-1}, y''=m(m-1)x^{m-2}$$

It is worth noting that as an alternate approach, we can make the substitution $x = e^t$ and then simplify to arrive at the same result.

We substitute this back into $(1)$ and combine like terms

$$x^m(m^2 - 3 m + 2) = 0 \implies m_{1,2} = 1, 2$$

This gives us the solution

$$y(x) = c_1 x^{m_1} + c_2 x^{m_2} = c_1 x + c_2 x^2$$

Now for the BCs.

Case 1:

$$y(1)+\alpha y'(1)=1 , y(2)+\beta y'(2)=2, \alpha=-1,\beta=2$$

This gives

$$y(x) = c_1 x + c_2 x^2 \implies y'(x) = c_1 + 2 c_2 x$$

$$y(1) - y'(1) = c_1 + c_2 - (c_1 + 2 c_2) = -c_2 = 1 \implies c_2 = -1\\y(2) + 2 y'(2) = 2 c_1 + 4 c_2 +2 (c_1 + 4c_2) = 4 c_1 + 12 c_2 = 2 \implies c_1 = \dfrac{7}{2}$$

Thus

$$y(x) = \dfrac{7 }{2}x - x^2$$

You should do the other three cases.