Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
3776 views
ubuntu2004
1
<exercise checkit-seed="0008" checkit-slug="AA2" checkit-title="Direction Fields">
2
<statement>
3
<p>
4
Modify the line of SageMath code
5
<c>t,y = var('t y'); plot_slope_field(FIXME, (t,-5,5), (y,-5,5))</c>
6
and run it at <url href="https://sagecell.sagemath.org/"/> to
7
produce the direction field for the ODE <m>{y'} = \frac{1}{9} \, {y} t + \frac{1}{3} \, t</m>.
8
</p>
9
<p>
10
Then explain how to use its direction field to approximate the
11
value of <m>y(-1)</m> given
12
the initial value <m>y(1)=0</m>.
13
</p>
14
</statement>
15
<answer>
16
<p>
17
Replace <c>FIXME</c> with <c>t*y/9+t/3</c> to show
18
the direction field. Then sketch a curve passing through the initial value
19
to show that
20
<m>y(-1)\approx -0.085</m>.
21
</p>
22
</answer>
23
</exercise>
24
25