Internal
problem
ID
[22619]
Book
:
Applied
Differential
Equations.
By
Murray
R.
Spiegel.
3rd
edition.
1980.
Pearson.
ISBN
978-0130400970
Section
:
Chapter
two.
First
order
and
simple
higher
order
ordinary
differential
equations.
A
Exercises
at
page
63
Problem
number
:
3
Date
solved
:
Thursday, October 02, 2025 at 08:55:10 PM
CAS
classification
:
[_Clairaut]
ode:=y(x) = x*diff(y(x),x)-tan(diff(y(x),x)); dsolve(ode,y(x), singsol=all);
ode=y[x]==x*D[y[x],{x,1}]-Tan[ D[y[x],{x,1}] ]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-x*Derivative(y(x), x) + y(x) + tan(Derivative(y(x), x)),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : multiple generators [_X0, tan(_X0)] No algorithms are implemented to solve equ