SymPy/Differential Equations

From PrattWiki
Revision as of 05:38, 19 February 2023 by DukeEgr93 (talk | contribs) (Created page with " == Lessons Learned == * dsolve is good for up to two coupled ODEs. Once there are three or more...not so much (even if all the coefficients are ints or floats). Once ther...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search


Lessons Learned

  • dsolve is good for up to two coupled ODEs. Once there are three or more...not so much (even if all the coefficients are ints or floats). Once there are three or more (linear) coupled differential equations, consider going the Laplace route.
  • If your equations are a combination of differential equations a non-differential equations, dsolve expects all the differential equations to come first.

Example

See SymPy/Differential Equations/RC Example for a complete example