#6479: desolve for 2nd order ODE with initial condition gives wrong answer
-----------------------+----------------------------------------------------
Reporter: gmhossain | Owner: burcin
Type: defect | Status: new
Priority: major | Milestone:
Component: calculus | Keywords:
Reviewer: | Author:
Merged: |
-----------------------+----------------------------------------------------
{{{
sage: y(x) = function('y',x)
sage: desolve( y(x).diff(x,2) == 0, y(x))
k2*x + k1
sage: desolve( y(x).diff(x,2) == 0, y(x), [0,0,1])
x + y(0)
sage: desolve( y(x).diff(x,2) == 0, y(x), [0,1,1])
x + y(0)
}}}
It seems desolve instead of using the given initial
value of y at x=0, it literally passes "y(0)" to maxima.
--
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/6479>
Sage <http://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
-~----------~----~----~----~------~----~------~--~---