Series solution to nonlinear differential equation

Click For Summary

Homework Help Overview

The discussion revolves around deriving a series solution for a nonlinear differential equation of the form \(\frac{\mathrm{d^2}\phi }{\mathrm{d} x^2} = \frac{\phi^{3/2}}{x^{1/2}}\). Participants are tasked with truncating the series at \(n=12\) and expressing the coefficients in terms of the parameter \(\lambda\).

Discussion Character

  • Exploratory, Assumption checking

Approaches and Questions Raised

  • Participants discuss the method of equating coefficients of like powers of \(x\) but express uncertainty regarding the presence of \(x\) under a root. There is mention of using Mathematica to obtain terms but confusion about deriving relationships between coefficients. One participant suggests a substitution of variables.

Discussion Status

The discussion is ongoing, with participants clarifying the form of the solution and exploring different approaches. Some have acknowledged errors in their initial statements, and there is an active exploration of how to manipulate the series representation.

Contextual Notes

There is a noted difficulty in handling the \(x\) terms under the root, which may affect the approach to finding relationships between coefficients. Participants are also considering the implications of their assumptions regarding the series expansion.

teroenza
Messages
190
Reaction score
5

Homework Statement



By truncating the differential equation below at n=12, derive the form of the solution, obtaining expressions for all the ancoefficients in terms of the parameter [itex]\lambda[/itex].

Homework Equations


The ODE is:
[tex]\frac{\mathrm{d^2}\phi }{\mathrm{d} x^2} = \frac{\phi^{3/2}}{x^{1/2}}[/tex]

I am told that the solutions have the form:

[tex]\phi = 1+ \lambda x + \sum_{n=3}^{12}a_{n} x^{3/2}[/tex]

The Attempt at a Solution


The way I have solved series equations before was to equate the coefficients of like powers of x. In this case, however, I have those x underneath the root, and I don't know how to go about doing this. I have the terms, via Mathematica. But I don't know how to get relationships between the coefficients.

Code:
p[x_] := 1 + \[Lambda]*x + Sum[Subscript[a, n]*x^(n/2), {n, 3, 12}];
pdd[x_] :=
  Sum[Subscript[a, n]*(n^2 - 2*n)/4 x^((n - 4)/2), {n, 3, 12}];

LHS = pdd[x] - x^(-1/2)*(p[x])^(3/2)
 
Last edited by a moderator:
Physics news on Phys.org
teroenza said:

Homework Statement



By truncating the differential equation below at n=12, derive the form of the solution, obtaining expressions for all the ancoefficients in terms of the parameter [itex]\lambda[/itex].

Homework Equations


The ODE is:
[tex]\frac{\mathrm{d^2}\phi }{\mathrm{d} x^2} = \frac{\phi^{3/2}}{x^{1/2}}[/tex]

I am told that the solutions have the form:

[tex]\phi = 1+ \lambda x + \sum_{n=3}^{12}a_{n} x^{3/2}[/tex]

The Attempt at a Solution


The way I have solved series equations before was to equate the coefficients of like powers of x. In this case, however, I have those x underneath the root, and I don't know how to go about doing this. I have the terms, via Mathematica. But I don't know how to get relationships between the coefficients.

Code:
p[x_] := 1 + \[Lambda]*x + Sum[Subscript[a, n]*x^(n/2), {n, 3, 12}];
pdd[x_] :=
  Sum[Subscript[a, n]*(n^2 - 2*n)/4 x^((n - 4)/2), {n, 3, 12}];

LHS = pdd[x] - x^(-1/2)*(p[x])^(3/2)
Do you mean [tex]\phi = 1+ \lambda x + \sum_{n=2}^{12}a_{n} x^{n}[/tex]?
 
No, but I did make an error in the above. It should be:

[tex]\phi = 1+ \lambda x + \sum_{n=3}^{12}a_{n} x^{n/2}[/tex]

But I can't figure out how to edit my original post.
 
That suggests to me the substitution x = u2. Haven't tried it, though.
 

Similar threads

Replies
6
Views
3K
  • · Replies 7 ·
Replies
7
Views
2K
  • · Replies 7 ·
Replies
7
Views
2K
  • · Replies 5 ·
Replies
5
Views
2K
Replies
6
Views
1K
Replies
8
Views
2K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 5 ·
Replies
5
Views
2K