This is Maple's attempt at solving for c in Equation (14)

> restart;

> s:=diff(Xi(xi),xi);

[Maple Math]

> t:=diff((s*xi),xi);

[Maple Math]

> eq1:=(1/xi)*t+(c^2)*(1-xi^2)*Xi(xi)=0;

[Maple Math]

This is Equation (14), I'm applying only the first boundary condition here.

> p:=dsolve({eq1},Xi(xi));

[Maple Math]

This is the solution following the imposition of the boundary condition at xi=1.

> assign(p);Xi:=unapply(Xi(xi),xi);

[Maple Math]

> eq2:=diff(Xi(xi),xi)=0;

[Maple Math]
[Maple Math]

> xi:=1;

[Maple Math]

> eq2;

[Maple Math]
[Maple Math]

> simplify(eq2);

[Maple Math]
[Maple Math]

> f:=solve(eq2,c);

[Maple Math]
[Maple Math]
[Maple Math]

> _Z:=1;

[Maple Math]

> f;

Error, (in collect) cannot collect, 1
> g:=solve(eq2,_C1);

[Maple Math]

> h:=solve(eq2,_C2);

[Maple Math]

So by solving for c we get some mysterious variable _Z that I don't know anything about.
 
 

 BACK