Solving an Initial Value Problem with Separable Differential Equations

In summary, the problem is to find the solution to the initial value problem dy/dx=kappa(y+y^3) where y(0)=s. Under what conditions on s does the solution exist?
  • #1
jjr
51
1

Homework Statement



The problem is from Walter Gautschi - Numerical Analysis, exercise 5.1.

Consider the initial value problem

[itex]\frac{dy}{dx}=\kappa(y+y^3), 0\leq x\leq1; y(0)=s[/itex]

where [itex]\kappa > 0[/itex] (in fact, [itex]\kappa >> 1[/itex]) and s > 0. Under what conditions on s does the solution [itex]y(x) = y(x;s)[/itex] exist on the whole interval [0,1]? {Hint: find y explicitly.}

The Attempt at a Solution



Following the hint, I tried solving it as a separable differential equation:

[itex]\frac{dy}{y+y^3} = \kappa dx[/itex]

(Using wolframalpha here)

[itex]log(y) - \frac{1}{2}log(y^2+1) = \kappa x[/itex]

[itex]10^{log(y)-\frac{1}{2}log(y^2+1)} = 10^{\kappa x}[/itex]

Ending up with

[itex]\frac{y}{2} + \frac{1}{2y} = 10^{-\kappa x}[/itex]

Not sure how to solve this, so used wolframalpha again and got:

[itex]y = 10^{-\kappa x} \pm \sqrt{10^{-2 \kappa x} - 1} [/itex]

Evidently [itex]y(0) = 1[/itex], which means that s has to be equal to 1.

This doesn't seem right to me. Especially considering the work needed to find y explicitly, seeing as how this is not a course in differential equations. So what I am missing here?
 
Physics news on Phys.org
  • #2
jjr said:

Homework Statement



The problem is from Walter Gautschi - Numerical Analysis, exercise 5.1.

Consider the initial value problem

[itex]\frac{dy}{dx}=\kappa(y+y^3), 0\leq x\leq1; y(0)=s[/itex]

where [itex]\kappa > 0[/itex] (in fact, [itex]\kappa >> 1[/itex]) and s > 0. Under what conditions on s does the solution [itex]y(x) = y(x;s)[/itex] exist on the whole interval [0,1]? {Hint: find y explicitly.}

The Attempt at a Solution



Following the hint, I tried solving it as a separable differential equation:

[itex]\frac{dy}{y+y^3} = \kappa dx[/itex]

(Using wolframalpha here)

[itex]log(y) - \frac{1}{2}log(y^2+1) = \kappa x[/itex]

I see no constant of integration; the right hand side should be [itex]\kappa x + C[/itex].
 
  • Like
Likes 1 person
  • #3
Thank you, and right you are; that was quite sloppy of me. So starting then at

[itex]\frac{y}{2}+\frac{1}{2y}=C10^{\kappa x}[/itex]

yielding

[itex]y = C10^{-\kappa x} \pm \sqrt{ C^{2}10^{-2 \kappa x} - 1 }[/itex]

so

[itex] y(0) = s = C \pm \sqrt{C^2-1}[/itex]

Which imposes a constraint on C: [itex] |C| \geq 1 [/itex]

But they are asking for what conditions on s the solution [itex]y(x) = y(x;s)[/itex] exists on the interval [0,1]? I am having some trouble seeing the connection here, especially in the context of the chapter "Initial Value Problems for ODEs: One-Step Methods". Any thoughts?
 
  • #4
jjr said:
Thank you, and right you are; that was quite sloppy of me. So starting then at

[itex]\frac{y}{2}+\frac{1}{2y}=C10^{\kappa x}[/itex]

[tex]\log(y) - \frac12 \log(y^2 + 1) = \log\left( \frac{y}{\sqrt{1 + y^2}}\right).[/tex] This is not in general equal to [itex]\log(y/2 + 1/(2y))[/itex], which is what your expression implies (and I must apologise for not pointing this out in my first reply).

Also: in calculus, "log" means "natural logarithm", so if [itex]a = \log b[/itex] then [itex]b = e^a[/itex].
 
  • #5
Ah, that explains the seemingly frivolous interchangeable use of log and ln I've sometimes seen. And yes, I see that I've made en error when dealing with the [itex] \frac{1}{2} [/itex] factor. Well, being more explicit this time and starting from (I will for my own sake switch to using ln now):

[itex] ln(y) - \frac{1}{2}ln(y^2+1) = \kappa x + C_1 [/itex]

[itex] ln(y) - ln( \sqrt{y^2+1}) = \kappa x + C_1 [/itex]

[itex] e^{ln(y) - ln(\sqrt{y^2+1})} = C_2 e^{\kappa x} [/itex]

[itex] \frac{e^{ln(y)}}{e^{ln(\sqrt{y^2+1})}} = C_2 e^{\kappa x} [/itex]

[itex] \frac{y}{\sqrt{(y^2+1)}} = C_2 e^{\kappa x} [/itex]

[itex] \frac{y^2}{y^2+1} = C_3 e^{2\kappa x} [/itex]

[itex] \frac{y^2+1}{y^2} = C_4 e^{-2\kappa x} [/itex]

[itex] 1 + y^{-2} = C_4 e^{-2\kappa x} [/itex]

[itex] y^{-2} = C_4 e^{-2\kappa x} - 1 [/itex]

[itex] y^2 = \frac{1}{C_4 e^{-2\kappa x} -1} [/itex]

[itex] y = \pm \frac{1}{\sqrt{C_4 e^{-2\kappa x} -1}} [/itex]

So

[itex] y(0) = s = \pm \frac{1}{\sqrt{C_4 - 1}} [/itex]

and thus [itex] C_4 > 1 [/itex].

Hopefully the math checks out this time. But I am still not sure how to use this in the context of the exercise. Any ideas?
 
  • #6
It was given that s>0. Find the integration constant C4 in terms of s. Than write y(x) using s, and see what should be true for s, so y(x,s) is defined for the whole interval [0,1].

ehild
 
  • Like
Likes 1 person
  • #7
Perfect, thanks!
 
  • #8
You are welcome:smile:

ehild
 

Related to Solving an Initial Value Problem with Separable Differential Equations

What is an initial value problem?

An initial value problem is a type of differential equation that involves finding the solution of a function given both its initial value and the derivative at that value. It is commonly used in modeling physical systems where the initial conditions are known.

What is the difference between an initial value problem and a boundary value problem?

The main difference between these two types of problems is the conditions that are given. In an initial value problem, the initial conditions are known, while in a boundary value problem, the conditions are known at different points in the domain of the function.

What are some common methods for solving initial value problems?

Some common methods for solving initial value problems include Euler's method, Runge-Kutta methods, and the shooting method. These methods involve numerical techniques for approximating the solution of the differential equation.

Why are initial value problems important in science?

Initial value problems are important in science because they allow us to mathematically model and analyze physical systems. By solving these types of problems, we can make predictions and understand how different variables affect the behavior of a system over time.

Are there any limitations to solving initial value problems?

Yes, there are limitations to solving initial value problems. The most common limitation is that the solution may only be valid for a specific range of values or a specific set of initial conditions. Additionally, the accuracy of the solution may be affected by the chosen method for solving the problem.

Similar threads

  • Calculus and Beyond Homework Help
Replies
2
Views
583
  • Calculus and Beyond Homework Help
Replies
5
Views
342
  • Calculus and Beyond Homework Help
Replies
6
Views
894
  • Calculus and Beyond Homework Help
Replies
6
Views
586
  • Calculus and Beyond Homework Help
Replies
5
Views
663
  • Calculus and Beyond Homework Help
Replies
6
Views
799
  • Calculus and Beyond Homework Help
Replies
4
Views
727
  • Calculus and Beyond Homework Help
Replies
10
Views
515
  • Calculus and Beyond Homework Help
Replies
1
Views
1K
  • Calculus and Beyond Homework Help
Replies
2
Views
492
Back
Top