Differential equations overview (HL)

This continues the discussion from solving simple differential equations (SL).

What are they?

A differential equation relates functions and their derivatives (and higher derivatives). Their solutions are functions or relations instead of individual values. In single-variable calculus, we will only look at ordinary differential equations (ODEs).

A common application for differential equation is in physics, relating position as influenced by force, which is mass times acceleration. The differential equation will be provided to you on Math AA exams.

Previously we looked at

dndxnf(x)=g(x)\frac{\d ^n}{\d x^n} f(x) = g(x)

which can be solved by repeated integration, as long as we are provided with nn initial values or boundary conditions.

Order and initial values

The order of a differential equation refers to the highest derivative that appears. Most differential equations in Math AA are first order, as it involves only the first derivative. Most higher-order differential equations in Math AA are solved via repeated integration as aforementioned.

An infinite number of functions or relations solve each differential equation. Instead, nn initial values are needed to pinpoint the specific function or relation to solve an nnth-order differential equation.

Higher order differential equation may also involve boundary conditions, which can be given for different xx values, whereas initial values give yy and all values up to the n1n-1th derivative for the same value of xx.

The polynomial degree for certain differential equations refer to the exponent of the highest derivative. Eg

(dydx)3+4y5=sinx \left(\frac{\d y}{\d x}\right)^3 + 4y^5 = \sin x

has an order of 11 (for first derivative) and polynomial degree of 33 (for highest derivative to the third power). So order and degree are distinct concepts in differential equations. Here one initial value is needed to pinpoint the specific solution, because of the order of 11.

Notation

Depending on context, yy^\prime could be y(t)y^\prime(t) or y(x)y^\prime(x). Usually if there is no tt, then y=y(x)=dydx\displaystyle y^\prime = y^\prime(x) = \frac{\d y}{\d x}.

xx^\prime is usally x(t)x^\prime(t)

x\bm x vs. t\bm t

The derivatives are almost always with respect to xx to tt, but it’s their locations in the derivatives that matter, not the letters themselves. Note that

dnxdtn=f(t)\frac{\d ^nx}{\d t^n} = f(t)

can be easily solved via repeated integration, whereas

dnxdtn=f(x)\frac{\d ^nx}{\d t^n} = f(x)

are generally much harder to solve.

Techniques

Numeric solutions in the form of Euler’s method, and Maclaurin series solutions will have question indicate as such. The other methods required in AA HL are below

formtechnique
dnydxn=f(x)\displaystyle \frac{\d ^ny}{\d x^n} = f(x)repeated integration with respect to xx
dydx=f(x)g(y)\displaystyle \frac{\d y}{\d x} = \frac{f(x)}{g(y)}separable ODE
dydx=Q(x)P(x)y\displaystyle \frac{\d y}{\d x} = Q(x) - P(x)yintegrating factor
dydx=f(yx)\displaystyle \frac{\d y}{\d x} = f\left(\frac yx\right)let y=vxy = vx

No matter the analytical technique in Math AA, you are one way or another need to integrate to cancel the derivative to solve.

Integral of 1x\frac{1}{x}

One of the first antiderivatives you learned is

1xdx=lnx+C\int \frac1x \d x = \ln \vert x\vert + C

However if you ever need raise e\e to this exponent, then

y=elnx+Cy = \e^{\ln \vert x\vert + C}

is two curves, meaning both y=eCxy = \e^C x and y=eCxy = -\e^C x. Which curve is right depends on the initial value given. In most cases, we can just group it as y=Axy = Ax, and this allows for both positive and negative AA.