Internal
problem
ID
[3492]
Book
:
Mathematical
methods
for
physics
and
engineering,
Riley,
Hobson,
Bence,
second
edition,
2002
Section
:
Chapter
15,
Higher
order
ordinary
differential
equations.
15.4
Exercises,
page
523
Problem
number
:
Problem
15.9(b)
Date
solved
:
Sunday, March 30, 2025 at 01:44:50 AM
CAS
classification
:
[[_2nd_order, _with_linear_symmetries], [_2nd_order, _reducible, _mu_xy]]
ode:=-1/y(x)^2*diff(y(x),x)^2+1/y(x)*diff(diff(y(x),x),x)+2*a*coth(2*a*x)/y(x)*diff(y(x),x) = 2*a^2; dsolve(ode,y(x), singsol=all);
ode=D[1/y[x]*D[y[x],x],x]+(2*a*Coth[1/y[x]*D[y[x],x]])==2*a^2; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") y = Function("y") ode = Eq(-2*a**2 + 2*a*Derivative(y(x), x)/(y(x)*tanh(2*a*x)) + Derivative(y(x), (x, 2))/y(x) - Derivative(y(x), x)**2/y(x)**2,0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE -(a*y(x) + sqrt((-2*a**2*y(x)*tanh(2*a*x)**2 + a**2*y(x) + tanh(2*a*x)**2*Derivative(y(x), (x, 2)))*y(x)))/tanh(2*a*x) + Derivative(y(x), x) cannot be solved by the factorable group method