Internal
problem
ID
[9046]
Book
:
First
order
enumerated
odes
Section
:
section
1
Problem
number
:
62
Date
solved
:
Sunday, March 30, 2025 at 02:00:15 PM
CAS
classification
:
[[_homogeneous, `class C`], _dAlembert]
ode:=diff(y(x),x) = (1+6*x+y(x))^(1/4); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]==(1+6*x+y[x])^(1/4); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-(6*x + y(x) + 1)**(1/4) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)