Ordinary Differential Equations#
Definition: Ordinary Differential Equation
An ordinary differential equation (ODE) of order \(n\) is a function
which is dependent on its last argument.
Notation
Most commonly, an ODE is written directly as follows:
Definition: Explicit ODE
We say that \(F\) is explicit if there exists a function
with
for all \((x, y, y', y'', \dotsc, y^{(n)}) \in \mathcal{D}_F\).
Definition: Solution
We say that a function \(\phi: \mathcal{D}_{\phi} \subseteq \mathbb{R} \to \mathbb{R}\) is a solution of \(F\) on some subset \(S \subseteq \mathcal{D}_{\phi}\) if \(\phi\) is \(n\)-times differentiable on \(S\) with
for all \(x \in S\).
Example: \(y'(x) = a y(x)\)
Consider the ordinary differential equation
for some \(a \in \mathbb{R}\). It is a first-order ODE with the following canonical form \(F: \mathbb{R} \times \mathbb{R} \times \mathbb{R} \to \mathbb{R}\):
Its solutions on \(\mathbb{R}\) have an exponential form
for some \(c \in \mathbb{R}\). We easily see that any \(y\) of this form is a solution on \(\mathbb{R}\) by differentiating:
To show that all solutions on \(\mathbb{R}\) have such a form, let \(v\) be any arbitrary solution on \(\mathbb{R}\) and let \(q(x) = v(x) \mathrm{e}^{-ax}\). By differentiating \(q\), we get:
Since \(v\) is a solution, we have \(v'(x) = a v(x)\) and so \(q'(x) = 0\). This means that \(q\) must be constant on \(\mathbb{R}\), i.e. \(q(x) = c\) for some \(c \in \mathbb{R}\). Therefore, \(c = v(x)\mathrm{e}^{-ax}\) and so \(v(x) = c\mathrm{e}^{ax}\).
Example: \(y''(t) + \omega^2 y(t) = 0\)
Consider the ordinary differential equation
for some \(\omega \in \mathbb{R}_{\gt 0}\). It is very common in physics. It is a second-order ODE with the following canonical form:
It can be shown that its solutions on \(\mathbb{R}\) have the form
for some \(A, B \in \mathbb{R}\).
Theorem: Reduction of an ODE to a First-Order System
of order \(n\) is equivalent to an explicit system of ODEs
with \(n\) equations of order \(1\). Specifically, a function \(\phi: \mathcal{D}_{\phi} \subseteq \mathbb{R} \to \mathbb{R}\) is a solution to the ODE if and only if the function \(\boldsymbol{\phi}: \mathcal{D}_{\phi} \subseteq \mathbb{R} \to \mathbb{R}^n\) defined as
is a solution to the system of ODEs.
Proof
TODO