Activity 4.7.1.
Solve this second order linear equation using a Taylor series centred at zero.
\begin{equation*}
4y^{\prime \prime} + t^2y = 0
\end{equation*}
Solution.
Zero is a ordinary point of the differential equation, so I can use a Taylor series. There are no singular points at all, so I expect solutions with infinite radius of convergence. First, I need the derivatives of an unknown series.
\begin{align*}
y \amp = \sum_{n=0}^\infty c_n t^n \\
y^\prime \amp = \sum_{n=1}^\infty c_n n t^{n-1}\\
y^{\prime\prime} \amp = \sum_{n=2}^\infty c_n n(n-1) t^{n-2}
\end{align*}
Then I put these expressions into the differential equation.
\begin{align*}
4y^{\prime \prime} + t^2 y \amp = 0 \\
4\sum_{n=2}^\infty c_n n(n-1) t^{n-2} +
\sum_{n=0}^\infty c_n t^{n+2} \amp = 0
\end{align*}
I shift the sums so that I have the same exponent for \(t\) in each sum.
\begin{equation*}
4\sum_{n=0}^\infty c_{n+2} (n+2)(n+1) t^n +
\sum_{n=2}^\infty c_{n-2} t^{n} = 0
\end{equation*}
Then I pull out terms so that the starting indices are the same for each sum. This lets me combine the sums into one sum.
\begin{align*}
8 c_2 + 24 c_3t + 4\sum_{n=2}^\infty c_{n+2} (n+2)(n+1)
t^n + \sum_{n=2}^\infty c_{n-2} t^{n} \amp = 0\\
8 c_2 + 24 c_3t + 4\sum_{n=2}^\infty \left[ c_{n+2}
(n+2)(n+1) + c_{n-2} \right] t^{n} \amp = 0
\end{align*}
First I look at the isolated terms. In this case, the constant and linear terms can only be zero if \(c_2 = 0\) and \(c_3 = 0\text{.}\) Then I look at the general terms and solve for the recurrence relation.
\begin{equation*}
c_{n+2} (n+2)(n+1) + c_{n-2} = 0 \implies c_{n+2} =
-\frac{c_{n-2}}{(n+2)(n+1)}
\end{equation*}
With the recurrence relation, I start calculating coefficients. This is a degree four recurrence relation. However, since \(c_2 = 0 \) and \(c_3 = 0\) all coefficients of the form \(n = 4k + 2\) and \(n = 4k +
3\) will be zero. For the others, I leave \(c_0\) and \(c_1\) as unknown constant (to be determined by initial conditions, if those had been provided). I’m going to work with multiples of \(4\) first.
\begin{align*}
c_4 \amp = \frac{-c_0}{(4)(3)} \\
c_8 \amp = \frac{c_0}{(8)(7)(4)(3)} \\
c_{12} \amp = \frac{-c_0}{(12)(11)(8)(7)(4)(3)}
\end{align*}
I can intuit a general form for this set of coefficients.
\begin{equation*}
c_{4k} = \frac{(-1)^k
c_0}{(4k)(4k-1)(4k-4)(4k-5)\ldots(8)(7)(4)(3)}
\end{equation*}
Now I’ll repeat the process for coefficients of the form \(n = 4k+1\text{.}\)
\begin{align*}
c_5 \amp = \frac{-c_1}{(5)(4)} \\
c_9 \amp = \frac{c_1}{(9)(8)(5)(4)} \\
c_{13} \amp = \frac{-c_1}{(13)(12)(9)(8)(5)(4)}
\end{align*}
From these calculations, I can intuit a general pattern for this set of coefficients.
\begin{equation*}
c_{4k+1} = \frac{(-1)^k
c_1}{(4k+1)(4k)(4k-3)(4k-4)\ldots(9)(8)(5)(4)}
\end{equation*}
I put the two general pattern into the Taylor series form, each with the matching unknown constant. With the two unknowns \(c_0\) and \(c_1\text{,}\) I get a linear combination of two linearly independent solutions.
\begin{align*}
y \amp = c_0 \sum_{k=0}^{\infty} \frac{(-1)^k
t^{4k}}{(4k)(4k-1)(4k-4)(4k-5)\ldots(8)(7)(4)(3)}\\
\amp + c_1 \sum_{k=0}^{\infty} \frac{(-1)^k
t^{4k+1}}{(4k+1)(4k)(4k-3)(4k-4)\ldots(9)(8)(5)(4)}
\end{align*}
I expected solutions with an infinite radius of convergence. I could use one of the convergence tests to verify this if I wanted.