Try to switch to a more KaTeX compatible command

This commit is contained in:
Danila Fedorin 2022-10-18 18:20:52 -07:00
parent db852cab68
commit d9ac5bd150

View File

@ -74,12 +74,12 @@ t_n = t_0 + nh
{{< /latex >}}
We can get the formula for \\(y_n\\) by looking at our aproximation steps above.
{{< latex >}}
\begin{gather*}
\begin{gather}
y_1 = y_0 + hf(t_0,y_0) \\
y_2 = y_1 + hf(t_1,y_1) \\
... \\
y_{n+1} = y_n + hf(t_n,y_n)
\end{gather*}
\end{gather}
{{< /latex >}}
What we have arrived at is [Euler's method](https://mathworld.wolfram.com/EulerForwardMethod.html).