rtoy / maxima

A Clone of Maxima's repo
Other
0 stars 0 forks source link

odeL returns spurious result for incorrect inputs; should give warning #3182

Open rtoy opened 2 months ago

rtoy commented 2 months ago

Imported from SourceForge on 2024-07-07 15:54:14 Created by danielvolinski on 2018-12-18 07:19:20 Original: https://sourceforge.net/p/maxima/bugs/3511


load(odes)$

odeL('diff(y,x) - (2 x+3 y + 1)/(4 x+6 y + 1), y, x); => y=matrix([])

Daniel

rtoy commented 2 months ago

Imported from SourceForge on 2024-07-07 15:54:15 Created by aleksasd on 2018-12-19 20:05:37 Original: https://sourceforge.net/p/maxima/bugs/3511/#2605


Function odeL is only for solving linear differential equation Ly=f with constant coefficients. For solving equation y' = (2 x + 3y + 1)/(4x + 6 y + 1) use contrib_ode or change u=2x+3y. In this case odeL must return "false" or some warning. I'm thinking about updated version of package odes.

Merry Christmas

Aleksas D.

2018-12-18, an, 09:19 Daniel Volinski danielvolinski@users.sourceforge.net rašė:


Status: open Group: None Created: Tue Dec 18, 2018 07:19 AM UTC by Daniel Volinski Last Updated: Tue Dec 18, 2018 07:19 AM UTC Owner: nobody

load(odes)$

odeL('diff(y,x) - (2 x+3 y + 1)/(4 x+6 y + 1), y, x); => y=matrix([])

Daniel

Sent from sourceforge.net because you indicated interest in https://sourceforge.net/p/maxima/bugs/3511/

To unsubscribe from further messages, please visit https://sourceforge.net/auth/subscriptions/

Attachments:

rtoy commented 2 months ago

Imported from SourceForge on 2024-07-07 15:54:18 Created by danielvolinski on 2018-12-19 20:53:01 Original: https://sourceforge.net/p/maxima/bugs/3511/#54fd


Thanks Aleksas!

rtoy commented 2 months ago

Imported from SourceForge on 2024-07-07 15:54:22 Created by robert_dodier on 2020-12-23 00:16:45 Original: https://sourceforge.net/p/maxima/bugs/3511/#5958


rtoy commented 2 months ago

Imported from SourceForge on 2024-07-07 15:54:25 Created by robert_dodier on 2020-12-23 00:17:27 Original: https://sourceforge.net/p/maxima/bugs/3511/#2ea5


rtoy commented 2 months ago

Imported from SourceForge on 2024-07-07 15:54:29 Created by robert_dodier on 2020-12-23 00:36:07 Original: https://sourceforge.net/p/maxima/bugs/3511/#a1c3


See also #3510 which is another example.