Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
23129 views
ubuntu2004
1
<exercise>
2
<statement>
3
<p>
4
For each ODE, describe an appropriate strategy to find its
5
general solution, and the features of the ODE that make
6
that strategy appropriate. (Do not fully solve these ODEs.)
7
</p>
8
<ol>
9
<xsl:for-each select="odes/*">
10
<li>
11
<m><xsl:value-of select="ode"/></m>
12
</li>
13
</xsl:for-each>
14
</ol>
15
</statement>
16
<answer>
17
<ol>
18
<xsl:for-each select="odes/*">
19
<li>
20
The ODE is <xsl:value-of select="form"/>, so it can be solved
21
by <xsl:value-of select="strategy"/>.
22
</li>
23
</xsl:for-each>
24
</ol>
25
</answer>
26
</exercise>
27
28