I am trying to get the differential equation examples to work:
x = var('x') y = function('y',x) desolve(diff(y,x) + y - 1, y)
or
t = var('t') x = function('x',t) DE = diff(x, t) + x - 1 desolve(DE, [x,t])
Both return errors. What am I doing wrong?
| 1 | initial version |
I am trying to get the differential equation examples to work:
x = var('x') y = function('y',x) desolve(diff(y,x) + y - 1, y)
or
t = var('t') x = function('x',t) DE = diff(x, t) + x - 1 desolve(DE, [x,t])
Both return errors. What am I doing wrong?
| 2 | retagged |
I am trying to get the differential equation examples to work:
x = var('x') y = function('y',x) desolve(diff(y,x) + y - 1, y)
or
t = var('t') x = function('x',t) DE = diff(x, t) + x - 1 desolve(DE, [x,t])
Both return errors. What am I doing wrong?
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.