In the documentation for inverse_laplace, we see this example:

         sage: f(t) = t*cos(t)
         sage: s = var('s')
         sage: L = laplace(f, t, s); L
         t |--> 2*s^2/(s^2 + 1)^2 - 1/(s^2 + 1)

Shouldn't that last function take the parameter s instead of t?  In 
other words, shouldn't that last returned result be:

         sage: L = laplace(f, t, s); L
         s |--> 2*s^2/(s^2 + 1)^2 - 1/(s^2 + 1)

Thanks,

Jason


--~--~---------~--~----~------------~-------~--~----~
To post to this group, send email to sage-devel@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/sage-devel
URLs: http://www.sagemath.org
-~----------~----~----~----~------~----~------~--~---

Reply via email to