apr19-display

> evalf(1-1/2);

.5000000000

> evalf(1-1/2+1/3);

.8333333333

> evalf(1-1/2+1/3-1/4);

.5833333333

> evalf(1-1/2+1/3-1/4+1/5);

.7833333333

> evalf(1-1/2+1/3-1/4+1/5-1/6);

.6166666667

So the first several terms of the alternating harmonic series are:

1, .5, .833..., .5833..., .7833..., .6166..., ....

Based on what's happened so far, what do you think the 7th partial sum of this alternating series will be, roughly?

> f := n -> sum((-1)^(k+1)/k, k=1..n);

f := proc (n) options operator, arrow; sum((-1)^(k+...

> evalf(f(10));

.6456349206

> evalf(f(100));

.6881721793

> evalf(f(1000));

.6926474306

> evalf(f(2000));

.6928972431

> evalf(f(5000));

.6930471906

> evalf(f(6000));

`System error, `,

>