ubuntu2004
<exercise checkit-seed="0006" checkit-slug="AA2" checkit-title="Direction Fields">1<statement>2<p>3Modify the line of SageMath code4<c>t,y = var('t y'); plot_slope_field(FIXME, (t,-5,5), (y,-5,5))</c>5and run it at <url href="https://sagecell.sagemath.org/"/> to6produce the direction field for the ODE <m>{y'} = \frac{1}{9} \, {y} t - \frac{1}{3} \, t</m>.7</p>8<p>9Then explain how to use its direction field to approximate the10value of <m>y(-2)</m> given11the initial value <m>y(0)=1</m>.12</p>13</statement>14<answer>15<p>16Replace <c>FIXME</c> with <c>t*y/9-t/3</c> to show17the direction field. Then sketch a curve passing through the initial value18to show that19<m>y(-2)\approx 0.58</m>.20</p>21</answer>22</exercise>232425