Solving a Non-Exact O.D.E. with Coordinate Axis Shift

  • Thread starter Thread starter asdf1
  • Start date Start date
  • Tags Tags
    Weird
  • #31
I just realized something: For this problem and the other one Asdf posted, the solution, using Laplace Transforms, can be obtained in three easy steps in Mathematica:

Code:
alist = {u, v} /. 
    Solve[{s u == 2 u - 4 v + 5/s, s v - 1 == - u + 2 v - 3/s}, {u, v}]
x = InverseLaplaceTransform[alist[[1, 1]], s, t]
y = InverseLaplaceTransform[alist[[1, 2]], s, t]

I find that amazing! Granted, in general, I'd have to include two extra lines to first calculate the transform and this doesn't help one learn the math; I would not recommend this to anyone just learning the technique, but once learned, this provides an effective, concise means of approching the global behavior of these systems. :smile:
 

Similar threads

Replies
8
Views
2K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 7 ·
Replies
7
Views
4K
  • · Replies 10 ·
Replies
10
Views
2K
  • · Replies 5 ·
Replies
5
Views
3K
  • · Replies 9 ·
Replies
9
Views
2K
  • · Replies 4 ·
Replies
4
Views
3K
  • · Replies 8 ·
Replies
8
Views
2K