#7144: desolve does not use contrib_ode
----------------------------+-----------------------------------------------
Reporter: robert.marik | Owner: burcin
Type: enhancement | Status: new
Priority: minor | Milestone: sage-4.1.3
Component: calculus | Keywords:
Work_issues: | Author: robert.marik
Reviewer: | Merged:
----------------------------+-----------------------------------------------
The following code fails
{{{
y=function('y',x)
eqn=x*diff(y,x)^2-(1+x*y)*diff(y,x)+y == 0
desolve(eqn,y)
}}}
However, Maxima is able to produce the solution using contrib_ode command.
If ode2 fails, Sage should call contrib_ode
maxima commands
{{{
load('contrib_ode)$
eqn:x*'diff(y,x)^2-(1+x*y)*'diff(y,x)+y=0;
contrib_ode(eqn,y,x);
}}}
--
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/7144>
Sage <http://www.sagemath.org>
Sage: Creating a Viable Open Source Alternative to Magma, Maple, Mathematica,
and MATLAB
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"sage-trac" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/sage-trac?hl=en
-~----------~----~----~----~------~----~------~--~---