differential equation problems.

i like this post (click again to cancel)
0
i dont like this post (click again to cancel)

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?

asked Jan 18 '11

mhfrey gravatar image mhfrey
117 1 4 11

updated May 05 '11

Kelvin Li gravatar image Kelvin Li
423 9 16
Surprising! I copy pasted both the equations and they work fine for me. Shashank (Jan 18 '11)

2 Answers:

i like this answer (click again to cancel)
0
i dont like this answer (click again to cancel)

You may not be doing anything wrong. I got two different kinds of errors:

TypeError: Error executing code in Maxima
CODE:
    sage99 : ('y(x))+(diff('y(x), x, 1))+(-1)$
Maxima ERROR:
     sage99 : ('y(x))+(diff('y(x), x, 1))+(-1)$

stdin:7094:Incorrect syntax: Too many )'s
(%i87) 
stdin:7145:Incorrect syntax: Premature termination of input at $.
(%i88) 

and

sage: desolve(diff(y,x) + y - 1, y)
sage103

before getting the right answer:

sage: desolve(diff(y,x) + y - 1, y)
(c + e^x)*e^(-x)

Then I did it from a restart and everything worked the first time, and I can't reproduce the errors anymore. Looks like the maxima interface can get itself into a state, whether because of something I'd done previously or not. But this definitely shouldn't happen: were these the same kinds of errors you saw?

link

posted Jan 18 '11

DSM gravatar image DSM flag of Canada
4802 12 61 103
i like this answer (click again to cancel)
0
i dont like this answer (click again to cancel)

I had to restart and it is working now for both examples. Unfortunately I did not capture the error information. If I see it again I will capture the information and post it.

Thank you for your help.

link

posted Jan 18 '11

mhfrey gravatar image mhfrey
117 1 4 11

Your answer

Please start posting your answer anonymously - your answer will be saved within the current session and published after you log in or create a new account. Please try to give a substantial answer, for discussions, please use comments and please do remember to vote (after you log in)!
[hide preview]

Question tools

Tags:

Stats:

Asked: Jan 18 '11

Seen: 128 times

Last updated: Jan 18 '11

powered by ASKBOT version 0.7.22
Copyright Sage, 2010. Some rights reserved under creative commons license.