MATH528Due date: 09/20/18
Note: This will be the last homework in which model solutions are presented before due date. At this point, enough familiarity with TeXmacs and Mathematica has been obtained for students to complete subsequent homeworks.
Exercise. RQ.1.22
Compute:
hence
and gives . Verify:
In[1]:=
ODE = y'[x]+4 x y[x] == Exp[-2x^2]
In[2]:=
iCond = y[0]==-4.3
In[3]:=
DSolve[{ODE,iCond},y[x],x]
In[4]:=
Exercise. PS1.1.6
In[1]:=
Exercise. PS1.1.7
In[1]:=
Exercise. PS1.1.8
In[1]:=
Exercise. PS1.2.2
In[1]:=
Exercise. PS1.2.3
In[1]:=
Exercise. PS1.2.4
In[1]:=
Exercise. PS1.3.5
In[1]:=
Problem. RQ.1.27
In[6]:=
ODE = y'[t] == r y[t]
In[5]:=
iCond = y[0] == y0
In[9]:=
sol[t_,r_] = y[t] /. DSolve[{ODE,iCond},y[t],t][[1,1]]
In[11]:=
{sol[1,Log[1.25]]/y0,
sol[Log[2]/Log[1.25],Log[1.25]]/y0,
sol[Log[3]/Log[1.25],Log[1.25]]/y0}
In[12]:=
Problem. PS1.1.17
In[1]:=
Problem. PS1.1.18
In[1]:=
Problem. PS1.3.22
In[1]:=
See Lesson 4, slide 3 for an example of Picard's iteration.