Sunday 13 January 2013

Why Linear Differential Equations are First Order

First, a note on format. Dn(y)x is the n-th differential of y with respect to x. 
I've used this format to keep it somewhat close to the format used by sagemath. However, I have broken down here and there and used y` to represent the first differential of y w.r.t. x.

It's a well-known fact that linear differential equations of the form:
Dn(y)x+ ... + a D(y)x + by =f(x)
are particularly easy to solve.

Since:
Dn(y+z)x = Dn(y)x + Dn(z)x 
it is easy to split the problem into several subproblems and add them all at the end.

But matrices allow us to rearrange linear differential equations of any order into a simple first order differential equation of the form:
D(y)x = ky
We'll ignore the f(x) components for this post, as once the idea is clear, they're pretty easy to add back in.

The trick is to define a new solution phase space that consists of y, and differentials of y.

Example:

So we start with a 2nd order linear differential equation f, and we define z as the differential of y with respect to z. The rest (rearr and zin) are just some sagemath fudging to get expressions we can substitute in later.

We define u as a vector function of x (y and z), and we find out that the derivative of u can be written as linear equations of y and z.

In fact, we can write it as a matrix equation thus:
The last line is a total fudge to get sagemath to do the pretty formatting for me.

Now this is where it gets schmick. Differentiation (as defined as a limit) works fine on vectors (and matrices) as all it really requires is vector addition/subtraction, and division by scalars. So we can ignore the fact that we have a great big matrix in this equation, and use 1-dimensional calculus to get a general solution for u:
log(u) = Mx + C
u(x) = eMx C

Now all we need to do is:
  1. Multiply M by the scalar x.
  2. Find the exponent of the matrix Mx
  3. Multiply the result by a vector C that represents initial conditions of y and y`.
(Did you note that C has to be a vector to ensure that u is a vector answer. We've fudged dramatically here as it's not clear if the first line of our general solution was adding vectors, matrices or what. It all works though.)

And we end up with the equation of y. (As well as y`)

It shouldn't be too hard to see that we can extend this to third-, fourth- etc. order linear equations, with a new phase space variable for each differential of y.

Thus all linear differential equations are essentially first order, which is part of why they're so easy to solve, and why they always have exponential (or trig.) factors in their solutions.

This also extends nicely to catastrophe and chaos theory, where the first order differential matrix can be examined at stationary points to identify their behaviour as parameters change. That's a future post though.

No comments:

Post a Comment