True Cartesian curvature equation, trying to solve it

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
7 replies · 2K views
c0der
Messages
52
Reaction score
0

Homework Statement


Solve the following equation:

v is the dependent variable, x is the independent variable

Homework Equations



[itex]\frac{d^2v/dx^2}{(1+\frac{dv}{dx}^2)^{3/2}}=1[/itex]

The Attempt at a Solution



Hi,

I am trying to solve the following equation:

[itex]\frac{d^2v/dx^2}{(1+\frac{dv}{dx}^2)^{3/2}}=1[/itex]

I used separation of variables as follows:

Let [itex]u = \frac{dv}{dx}[/itex]

[itex]\frac{du/dx}{(1+u^2)^{3/2}}=1[/itex]

Separate the variables and integrate:

[itex]\frac{du}{(1+u^2)^{3/2}}=dx[/itex]

[itex]\frac{u}{(1+u^2)^{1/2}}=x + C[/itex]

[itex]u= \sqrt{\frac{(x+C)^2}{1-(x+C)^2}} or -\sqrt{\frac{(x+C)^2}{1-(x+C)^2}}[/itex]

Why is this not a valid solution when substituting back into the above equation for u and du/dx?
 
Physics news on Phys.org
You have made a mistake somewhere in the final step. Here is what I get:

Screen Shot 2015-05-08 at 8.34.50 AM.png
 
c0der said:

Homework Statement


Solve the following equation:

v is the dependent variable, x is the independent variable

Homework Equations



[itex]\frac{d^2v/dx^2}{(1+\frac{dv}{dx}^2)^{3/2}}=1[/itex]

The Attempt at a Solution



Hi,

I am trying to solve the following equation:

[itex]\frac{d^2v/dx^2}{(1+\frac{dv}{dx}^2)^{3/2}}=1[/itex]

I used separation of variables as follows:

Let [itex]u = \frac{dv}{dx}[/itex]

[itex]\frac{du/dx}{(1+u^2)^{3/2}}=1[/itex]

Separate the variables and integrate:

[itex]\frac{du}{(1+u^2)^{3/2}}=dx[/itex]

[itex]\frac{u}{(1+u^2)^{1/2}}=x + C[/itex]

[itex]u= \sqrt{\frac{(x+C)^2}{1-(x+C)^2}} or -\sqrt{\frac{(x+C)^2}{1-(x+C)^2}}[/itex]

Why is this not a valid solution when substituting back into the above equation for u and du/dx?

If a fraction is equal to 1, then the numerator must be equal to the denominator.

So this equation: [itex]\frac{d^2v/dx^2}{(1+\frac{dv}{dx}^2)^{3/2}}=1[/itex]
could be written as [itex]\frac{d^2v}{dx^2} = {(1+\frac{dv}{dx}^2)^{3/2}}[/itex]
or, since the Leibniz notation is a bit clumsy here, as this:
v'' = (1 + (v')2)3/2
The first equation and either of the next two equations say exactly the same thing.
 
Last edited:
Thanks for your replies.

Zondrina: I believe that's the same answer, just in a different form as 1 = [1 - (x + C)^2] / [ 1 - (x+C)^2 ] ?

Mark44: I evaluated the integral in mathematica and matlab, and the same answer is given. I am integrating 1/(1+u^2)^(3/2) over u not x?
 
c0der said:
Thanks for your replies.

Zondrina: I believe that's the same answer, just in a different form as 1 = [1 - (x + C)^2] / [ 1 - (x+C)^2 ] ?

Mark44: I evaluated the integral in mathematica and matlab, and the same answer is given. I am integrating 1/(1+u^2)^(3/2) over u not x?
Edit: I checked your work and it's fine. Disregard what I said. I have edited my previous post.
 
Last edited:
Thanks for checking. It strikes me as odd that Matlab cannot solve this ODE and that the above procedure I used does not turn out to be a solution when back substituting for u and du/dx:

>> syms u(x)
>> dsolve(diff(u,x)/(1+u^2)^(3/2)==1)
Warning: Explicit solution could not be found.
> In dsolve at 194
ans =
[ empty sym ]
 
Solving the equation in post #2 yields the solution:

$$v = \pm \left[- \frac{(x+C)}{\sqrt{\frac{1}{1 - (x+C)^2} - 1}} + K\right] = \mp \left[\frac{(x+C)}{\sqrt{\frac{1}{1 - (x+C)^2} - 1}} - K\right] = \mp \left[\sqrt{1 - (x+C)^2} - K \right]$$

If there were initial conditions, you could even solve for the constants ##C## and ##K##.
 
Matlab's simplifier was the problem, I verified the solution by hand, thanks for the help.