Internal
problem
ID
[10335]
Book
:
First
order
enumerated
odes
Section
:
section
1
Problem
number
:
65
Date
solved
:
Tuesday, September 30, 2025 at 07:22:10 PM
CAS
classification
:
[[_homogeneous, `class C`], _dAlembert]
ode:=diff(y(x),x) = (a+b*x+c*y(x))^6; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]==(a+b*x+c*y[x])^6; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") b = symbols("b") c = symbols("c") y = Function("y") ode = Eq(-(a + b*x + c*y(x))**6 + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
TypeError : argument of type Mul is not iterable