Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
23129 views
ubuntu2004
1
<exercise>
2
<statement>
3
<p>
4
Show how to use Euler's method with two steps to approximate
5
<m>x(<xsl:value-of select="final/t"/>)</m> given the following
6
IVP.
7
</p>
8
<me>
9
x'=<xsl:value-of select="xp"/>\hspace{2em}
10
x(<xsl:value-of select="init/t"/>)=<xsl:value-of select="init/x"/>
11
</me>
12
</statement>
13
<answer>
14
<ul>
15
<xsl:for-each select="vals/*">
16
<li>
17
<m>x(<xsl:value-of select="t"/>)\approx <xsl:value-of select="x"/></m>
18
</li>
19
</xsl:for-each>
20
</ul>
21
</answer>
22
</exercise>
23