Internal
problem
ID
[9074]
Book
:
Second
order
enumerated
odes
Section
:
section
1
Problem
number
:
3
Date
solved
:
Sunday, March 30, 2025 at 02:06:16 PM
CAS
classification
:
[[_2nd_order, _quadrature]]
ode:=diff(diff(y(x),x),x)^n = 0; dsolve(ode,y(x), singsol=all);
Maple trace
Methods for second order ODEs: --- Trying classification methods --- trying a quadrature <- quadrature successful
Maple step by step
ode=(D[y[x],{x,2}])^n==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") n = symbols("n") y = Function("y") ode = Eq(Derivative(y(x), (x, 2))**n,0) ics = {} dsolve(ode,func=y(x),ics=ics)
TypeError : cannot determine truth value of Relational