Skip to content
Snippets Groups Projects
Commit 2d61c3d8 authored by Michael Wimmer's avatar Michael Wimmer
Browse files

try to use split environment

parent 62cf45a5
No related branches found
No related tags found
No related merge requests found
Pipeline #43784 passed
......@@ -55,11 +55,13 @@ $$y_{1} = y, \ y_{2} = y', \ \cdots, \ y_{n} = y^{(n-1)}.$$
Then, the differential equation can be re-written as
$$y_1 ' = y_2$$
$$y_2 ' = y_3$$
$$ \vdots $$
$$y_{n-1} ' = y_{n}$$
$$y_{n} ' = - a_{0} y_{1} - a_{1} y_{2} - \cdots - a_{n-1} y_{n}.$$
$$\begin{split}
y_1 ' = & y_2 \\
y_2 ' = & y_3 \\
\vdots & \\
y_{n-1} ' = & y_{n} \\
$$y_{n} ' = & - a_{0} y_{1} - a_{1} y_{2} - \cdots - a_{n-1} y_{n}.
\end{split}$$
Notice that together these $n$ equations form a linear first order system, the
first $n-1$ equations of which are trivial. Note that this trick can be used to
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment