Internal
problem
ID
[8779]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
1.0
Problem
number
:
67
Date
solved
:
Sunday, March 30, 2025 at 01:33:01 PM
CAS
classification
:
[[_2nd_order, _missing_x], [_2nd_order, _reducible, _mu_x_y1]]
ode:=3*y(x)*diff(diff(y(x),x),x)+y(x) = 5; dsolve(ode,y(x), singsol=all);
ode=3*y[x]*D[y[x],{x,2}]+y[x]==5; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(3*y(x)*Derivative(y(x), (x, 2)) + y(x) - 5,0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out