On Wednesday, September 18, 2013 7:03:56 AM UTC-7, jorges wrote:
>
> Hi,
> I guess the answer is no, as I can't seem to find any reference to 
> non-homogeneous DE neither in the reference nor searching the web. 
>

What sort of equation do you want to solve? Here's a simple example; there 
is also a first order example in the Sage tutorial.

sage: x = function('x', t)
sage: DE = diff(x,t,t) - x + sin(t)
sage: desolve(DE, [x,t])
k2*e^(-t) + k1*e^t + 1/2*sin(t) 

-- 
John

-- 
You received this message because you are subscribed to the Google Groups 
"sage-support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-support+unsubscr...@googlegroups.com.
To post to this group, send email to sage-support@googlegroups.com.
Visit this group at http://groups.google.com/group/sage-support.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to