A well-usable iteration formula for the approximate calculation of a is
un+1=21(un+una)
where un is an n-th approximation value. It is to be proven:
1. If u0=0 is an underestimated approximation for a, then u1=21(u0+u0a) is an overestimated approximation. 2. If un is an overestimated approximation for a, then un+1=21(un+una) is a better overestimated approximation.
3. The sequence {un}, obtained by repeated application of the iteration formula, converges to a.
This one wants a proof. Work it on paper, then read the official solution and mark
yourself. Be honest about it: the record is only any use to you if it is.
Official solution
Let a=x, thus a=x2.
1.) To prove: If 0<x, then u0x−Δx with x>Δx>0 (by assumption). Then,
u1=21(u0+u0a)=(x−Δx+x−Δxx2)=x+2(x−Δx)Δx2
Since x>Δx, it follows that x−Δx>0, and thus
2(x−Δx)Δx2>0
and therefore u1>x=a.
2.) To prove: If un>x, then un+1=21(un+una)>x.
Proof: Let un=x+Δx with Δx>0 (by assumption). Then,
un+1=21(un+una)=(x+Δx+x+Δxx2)=x+2(x+Δx)Δx2
Now,
0<2(x+Δx)Δx2(since Δx>0, Δxx>0), thus
un=x+Δx>un+1=x+2(x+Δx)Δx2>x=a
3.) With these proofs, it is shown that the sequence {un} approaches a=x (at least from the second term onwards from above), but it is not yet proven that it actually converges to this value (i.e., that it approaches it arbitrarily closely). It could be that it converges to a value x+c, where c is a positive constant.
0<Δxn+1=2(x+Δxn)Δxn2<2xΔxn2<2Δxn(since x>Δxn and Δxn>0)
Thus, Δxn+1<2Δxn, and by induction, Δxn<2n−1Δx1 for all n≥1. Therefore, the sequence {Δxn} is decreasing and bounded below by 0, so it converges to 0.
Consider the sequence {vn}={x+2n−1Δx1}. This is a majorant for the sequence {un}. Since
n→∞limvn=n→∞lim(x+2n−1Δx1)=x
and un>x for every n, by the majorant criterion, it follows that limn→∞un=x=a.
Conclusion: For every a>0 and for every Δx0>0, the sequence {un} with un+1=21(un+una) converges to a.
Thus, one can start from any initial approximation (even seemingly nonsensical ones like a≈1 or a≈a). The approximation will approach the correct value from above, at the latest from the second term onwards.
Source: NuminaMath-1.5,
licensed Apache-2.0.
Statement and solution reproduced as published; topic, difficulty and ordering added
by this site.