homeworks
#2: Transform IVP ; into an equivalent problem with the initial point at the origin.
Sol'n: Replace and and the IVP becomes ;
This ode is separable so we can solve it:
#4Suppose ; . Let and define by the method of successive approximations:
a. Determine for an arbitrary value of .
The plan is to compute successive approximations and try to suss out a pattern.
Sol'n:
The pattern will persist, so that as
Well, that's enough hard pencil and paper work. Here's a little script for cranking these things out...and graphing them!
b. Plot for . Observe whether the iterates appear to be converging.
SOLN: See above. Looks good!
c. Express in terms of elementary functions; that is, solve the given initial value problem.
SOLN: This was worked out above by sussing out the pattern of the Taylor series for . Shall we give it a go the other way?
The ode is linear: has the integrating factor , so we have whence
The initial conditions require , so and the solution is
#8. Consider
let and use the method of successive approximations to approximate the solution of the initial value problem.
a. Calculate .
SOL'N: Here, is autonomous, so we can write
b. Plot Observe whether the iterates appear to be converging.
It doesn't look great...what's going on? Well, the equation is separable so we can solve it in explicit, closed form:
Being lazy, I'll use Python's numpy to get the antiderivative:
...and...moving right along!
#10 Consider
Let and use the method of successive approximations to approximate the solution of the initial value problem.
a. Calculate , or (if necessary) Taylor approximations to these iterates. Keep terms up to order six.
SOLN:
#14 If is continuous in the rectangle , show that there is a
positive constant such that , (31)
where and are any two points in having the same coordinate.
This inequality is known as a Lipschitz condition.
Hint: Hold fixed and use the mean value theorem on as a function
of only. Choose to be the maximum value of in .
SOLN: Fix a value of so that the vertical line segment in the plane from to is contained in the rectangle, .
Following the hint, we recall that the mean value theorem guarantees that if is differentiable
on then there exists such that .
Swapping sides, and equating the absolute values,
Since, by assumption, is continuous in the interval, is bounded by some finite value, .
#15 and 16 If and are members of the sequence , use
the result of Problem 14 to show that .
SOLN: Proof by induction may work here. Start with
where is an upper bound on the partial derivative in .
Further, look at
This was shown in problem 14, to be
Now the inductive hypothesis is that for some . Then
, completing the proof by induction.
#17. Note that
a. Then, by the triangle inequality, .
b. And by the results of Problem 16, if , then is bount by the "bow tie" and so .
Further, each successive difference has .
Thus by the triangle inequality, .
c. Show that the sum in part b converges as and, hence,
the sum in part a also converges as . Conclude therefore
that the sequence converges since it is the sequence of,br> partial sums of a convergent infinite series.
SOLN: The sequence of partial sums converges to . Using the comparison test
(remember Chapter 11 of 1B?!) the terms of part a must also converge and so the th term must go to zero: is convergent.