Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
20865 views
1
<exercise>
2
<statement>
3
<p>
4
Use Euler's method with <m>h=<xsl:value-of select="h"/></m> to approximate
5
<m>x(<xsl:value-of select="final/t"/>)</m> and <m>y(<xsl:value-of select="final/t"/>)</m> given the following
6
system of IVPs.
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
<me>
13
y'=<xsl:value-of select="yp"/>\hspace{2em}
14
y(<xsl:value-of select="init/t"/>)=<xsl:value-of select="init/y"/>
15
</me>
16
</statement>
17
<answer>
18
<ul>
19
<xsl:for-each select="vals/*">
20
<li>
21
<m>x(<xsl:value-of select="t"/>)\approx <xsl:value-of select="x"/></m> and
22
<m>y(<xsl:value-of select="t"/>)\approx <xsl:value-of select="y"/></m>
23
</li>
24
</xsl:for-each>
25
</ul>
26
</answer>
27
</exercise>
28