Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
23129 views
ubuntu2004
1
<exercise>
2
<statement>
3
<p>
4
For each of the following Initial Value Problems (IVPs), designate the following:
5
</p>
6
<ul>
7
<li>its Ordinary Differential Equation (ODE)</li>
8
<li>its Initial Value or Values (IVs)</li>
9
<li>the order of the IVP</li>
10
<li>its independent variable</li>
11
<li>its dependent variable</li>
12
<li>whether its solution is implicit or explicit</li>
13
</ul>
14
<p>
15
Then show how to verify that its solution is valid.
16
</p>
17
<ol>
18
<xsl:for-each select="ivps/*">
19
<li>
20
<ul>
21
<li>IVP:
22
<m>
23
<xsl:value-of select="ode"/>\hspace{2em}
24
<xsl:value-of select="y"/>(<xsl:value-of select="t0"/>)=
25
<xsl:value-of select="y0"/><xsl:if test="yp0">,
26
<xsl:value-of select="y"/>'(<xsl:value-of select="t0"/>)=
27
<xsl:value-of select="yp0"/></xsl:if>
28
</m>
29
</li>
30
<li>Solution: <m><xsl:value-of select="sol"/></m></li>
31
</ul>
32
</li>
33
</xsl:for-each>
34
</ol>
35
</statement>
36
<answer>
37
<ol>
38
<xsl:for-each select="ivps/*">
39
<li>
40
<ul>
41
<li>ODE: <m><xsl:value-of select="ode"/></m></li>
42
<li>IV(s): <m>
43
<xsl:value-of select="y"/>(<xsl:value-of select="t0"/>)=
44
<xsl:value-of select="y0"/><xsl:if test="yp0">,
45
<xsl:value-of select="y"/>'(<xsl:value-of select="t0"/>)=
46
<xsl:value-of select="yp0"/></xsl:if>
47
</m></li>
48
<li>Order: <xsl:value-of select="order"/></li>
49
<li>Independent variable: <m><xsl:value-of select="t"/></m></li>
50
<li>Dependent variable: <m><xsl:value-of select="y"/></m></li>
51
<li>The solution <m><xsl:value-of select="sol"/></m> is <xsl:value-of select="ex_im"/>.</li>
52
</ul>
53
</li>
54
</xsl:for-each>
55
</ol>
56
</answer>
57
</exercise>
58
59