Evanalysis
5.1Estimated reading time: 29 min

5.1 Sequences, recursion, and series

Read sequences as functions on positive integers, compare explicit and recursive definitions, and derive arithmetic and geometric sum formulas.

Course contents

What a sequence really is

A sequence is not merely a row of numbers written with commas. Formally, it is a function whose input is a positive integer and whose output is a real number. The input tells us the position of the term. The output is the value sitting at that position.

Definition

Sequence of real numbers

A sequence of real numbers is a function

a:Z+R.a:\mathbb Z^+\to \mathbb R.

Instead of writing a(n)a(n), we usually write ana_n, and we denote the whole sequence by {an}\{a_n\}. Here the starting index is n=1n=1, and all general-term formulas in this definition apply for integers n1n ≥ 1.

This definition is worth taking seriously. It explains why the same values in a different order form a different sequence, and why a formula for ana_n must say what happens for every positive integer nn.

Worked example

Reading a general term

If an=(1)na_n=(-1)^n, then

a1=1,a2=1,a3=1,a4=1.a_1=-1,\quad a_2=1,\quad a_3=-1,\quad a_4=1.

If bn=2n1b_n=2^{n-1}, then

b1=1,b2=2,b3=4,b4=8.b_1=1,\quad b_2=2,\quad b_3=4,\quad b_4=8.

Both are sequences because each positive integer nn determines exactly one real number.

Checkpoint

A sequence is formally a function from which set to which set in this chapter?

Use the chapter definition.

Solution · Answer

It is a function a:Z+Ra:\mathbb Z^+\to\mathbb R, so each positive integer index returns one real-number term.

Finding general terms from patterns

A finite list suggests a pattern, but the general term must describe the nn-th term, not just the first few terms. Without a rule, a finite initial list never uniquely determines an infinite sequence: a later term can be changed while every listed term stays the same. In pattern exercises, the intended continuation must therefore be stated as part of the proposed rule.

Worked example

Alternating zeros and ones

The sequence

1,0,1,0,1,0,1,0,\ldots

is 11 when nn is odd and 00 when nn is even. A compact formula is

an=1+(1)n12.a_n=\frac{1+(-1)^{n-1}}2.

When nn is odd, n1n-1 is even and the numerator is 22. When nn is even, n1n-1 is odd and the numerator is 00.

Worked example

Products of even and odd factors

The product

246(2n)2\cdot4\cdot6\cdots(2n)

has the kk-th factor 2k2k. Therefore

24(2n)=k=1n2k=2nn!.2\cdot4\cdots(2n) =\prod_{k=1}^n 2k =2^n n!.

Similarly,

135(2n1)=(2n)!2nn!,1\cdot3\cdot5\cdots(2n-1) =\frac{(2n)!}{2^n n!},

because (2n)!(2n)! is the product of all factors from 11 to 2n2n, and dividing by the even part 24(2n)=2nn!2\cdot4\cdots(2n)=2^n n! leaves only the odd part.

Worked example

A sequence made from repeated differentiation

The chapter also uses f(x)=sinxf(x)=\sin x to show that sequences do not have to come from ordinary lists first. Define an=f(n)(0)a_n=f^{(n)}(0), where f(n)f^{(n)} means the nn-th derivative. The derivatives cycle:

sinx,cosx,sinx,cosx,sinx,\sin x,\quad \cos x,\quad -\sin x,\quad -\cos x,\quad \sin x,\ldots

So

a1=1,a2=0,a3=1,a4=0,a_1=1,\quad a_2=0,\quad a_3=-1,\quad a_4=0,

and the same four-term pattern repeats. One compact general term is

an=cos((n1)π2).a_n=\cos\left(\frac{(n-1)\pi}{2}\right).

This example is important because it separates the idea of a sequence from the idea of a simple algebraic pattern. The sequence is still a function of the index nn; its values are produced by a calculus operation before evaluating at 00.

Common mistake

A pattern is not a definition until the indexing is fixed

With indexing starting at n=1n=1, the formula an=2na_n=2^n gives 2,4,8,...2,4,8,..., whereas an=2n1a_n=2^{n-1} gives 1,2,4,...1,2,4,.... These are different sequences, not interchangeable descriptions of the same list. Substituting the first index is a quick way to check whether a proposed formula has shifted the sequence.

Recursive definitions

Some sequences are easier to define by saying how to get the next term from earlier terms. An explicit definition computes a term directly from its index; a recursive definition specifies how known terms determine later ones. A first-order rule needs a starting value, and a rule involving the previous two terms generally needs two starting values. The rule alone does not choose those values. A recurrence with sufficient initial data can define a sequence completely even when no convenient closed formula is available.

Definition

Recursive sequence

A recursive sequence is a sequence whose terms are defined using one or more preceding terms, together with enough initial values to start the process.

For example,

a1=4,an+1=2an+1a_1=4,\qquad a_{n+1}=2a_n+1

gives

a2=9,a3=19,a4=39.a_2=9,\quad a_3=19,\quad a_4=39.

The recurrence determines the next term only after the earlier term is known.

For this particular recurrence, we can also find a closed formula. Add 11 to both sides and set bn=an+1b_n=a_n+1. Then

bn+1=an+1+1=2an+2=2(an+1)=2bn.b_{n+1}=a_{n+1}+1=2a_n+2=2(a_n+1)=2b_n.

Since b1=a1+1=5b_1=a_1+1=5, the transformed sequence is geometric:

bn=52n1.b_n=5\cdot2^{n-1}.

Therefore

an=bn1=52n11.a_n=b_n-1=5\cdot2^{n-1}-1.

The lesson is not that every recurrence becomes geometric. The useful habit is to look for a change of variables that removes the constant term when the recurrence is affine.

Concept lensAlgorithmic

One sequence, two ways to obtain a term

The explicit formula an=52n11a_n=5\cdot2^{n-1}-1 takes a positive integer nn as its input. To obtain a4a_4, substitute n=4n=4 and get 3939 directly. The recursive description instead starts from a1=4a_1=4 and repeatedly applies x2x+1x\mapsto2x+1, generating 4,9,19,394,9,19,39. It describes how to produce the next value from the current value; the initial value is part of that description.

These are two descriptions of the same sequence, not two different kinds of number. The derivation above links the step-by-step process to the explicit formula for every integer n1n\ge1. Agreement at the first four terms alone would not establish that link. Use the explicit view when asking for a term at a specified index, and the recursive view when following successive changes. The existence of a generative rule does not by itself supply a closed formula.

Theorem

Recursion theorem

Let XX be a set, let bXb\in X, and let f:XXf:X\to X be a function. Then there is a unique function a:Z+Xa:\mathbb Z^+\to X such that

a(1)=b,a(n+1)=f(a(n))a(1)=b,\qquad a(n+1)=f(a(n))

for every nZ+n\in\mathbb Z^+.

The theorem gives the formal reason why a first term plus a rule such as an+1=f(an)a_{n+1}=f(a_n) really defines a sequence. The rule never leaves XX, because ff maps XX back into XX, and uniqueness says that there is no second sequence satisfying the same starting value and same next-term rule. Existence means the repeated construction supplies a value at every positive integer index. Uniqueness can be understood step by step: two proposed sequences agree at the first term, and whenever they agree at one term, applying the same function forces agreement at the next. Requiring f:XXf:X\to X is essential; the next step must remain defined after every previous step.

Worked example

Turning a recurrence into theorem data

For

a1=1,an+1=an2+1,a_1=1,\qquad a_{n+1}=a_n^2+1,

take X=RX=\mathbb R, b=1b=1, and f(x)=x2+1f(x)=x^2+1. The recursion theorem says that there is a unique real sequence satisfying this rule. The first terms are

1,2,5,26,1,\quad 2,\quad 5,\quad 26,\ldots

There may be no simple closed formula, but the sequence is still completely defined.

Fibonacci as a first-order recursion on pairs

The Fibonacci sequence is defined by two starting values and a rule using the previous two terms:

F1=F2=1,Fn+2=Fn+1+Fn.F_1=F_2=1,\qquad F_{n+2}=F_{n+1}+F_n.

To fit the recursion theorem, package two consecutive values as one ordered pair:

a(n)=(Fn,Fn+1).a(n)=(F_n,F_{n+1}).

Then the next pair is obtained from the function

f(x,y)=(y,x+y).f(x,y)=(y,x+y).

So a two-term recurrence can be viewed as a one-step recurrence on the set R2\mathbb R^2. The full theorem data are X=R2X=\mathbb R^2, b=(1,1)b=(1,1), and f(x,y)=(y,x+y)f(x,y)=(y,x+y). The function always returns a real pair. Its second coordinate stores the information needed for the following step; starting from (1,1)(1,1) gives (1,2)(1,2) and then (2,3)(2,3). Thus uniqueness applies to the pair sequence and consequently to the Fibonacci terms.

Theorem

Binet form of Fibonacci numbers

Let

ϕ=1+52,ψ=152.\phi=\frac{1+\sqrt5}{2}, \qquad \psi=\frac{1-\sqrt5}{2}.

Then for every positive integer nn,

Fn=ϕnψnϕψ.F_n=\frac{\phi^n-\psi^n}{\phi-\psi}.

This formula is usually proved by checking that the right-hand side has the same first two values and satisfies the same recurrence. The essential identities are ϕ2=ϕ+1\phi^2=\phi+1 and ψ2=ψ+1\psi^2=\psi+1.

Here is the verification in a form that is useful for similar recurrence questions. Define

Bn=ϕnψnϕψ.B_n=\frac{\phi^n-\psi^n}{\phi-\psi}.

The denominator is ϕψ=50\phi-\psi=\sqrt5\ne0, so this defines a real number for every positive integer index. Checking the recurrence alone would not identify Fibonacci: the two initial values must also be checked.

First,

B1=1,B2=ϕ2ψ2ϕψ=ϕ+ψ=1.B_1=1,\qquad B_2=\frac{\phi^2-\psi^2}{\phi-\psi}=\phi+\psi=1.

Next, because each of ϕ\phi and ψ\psi satisfies t2=t+1t^2=t+1, we have

ϕn+2=ϕn+1+ϕn,ψn+2=ψn+1+ψn.\phi^{n+2}=\phi^{n+1}+\phi^n, \qquad \psi^{n+2}=\psi^{n+1}+\psi^n.

Subtracting the second identity from the first and dividing by ϕψ\phi-\psi gives

Bn+2=Bn+1+Bn.B_{n+2}=B_{n+1}+B_n.

Thus {Bn}\{B_n\} has the same first two values and the same recursive rule as the Fibonacci sequence. By uniqueness of the recursively defined sequence, BnB_n must equal FnF_n for every positive integer nn.

Arithmetic sequences and sums

Definition

Arithmetic sequence

A sequence {an}\{a_n\} is arithmetic if there is a constant dd such that

an+1an=da_{n+1}-a_n=d

for every nZ+n\in\mathbb Z^+. The number dd is the common difference.

From the first term to the nn-th term there are n1n-1 increments, each equal to dd. Adding the successive differences gives ana1=(n1)da_n-a_1=(n-1)d. Thus, if a=a1a=a_1, the general term is

an=a+(n1)d.a_n=a+(n-1)d.

The sum of the first nn terms is

sn=k=1nak=n2[2a+(n1)d]=n2(a1+an).s_n=\sum_{k=1}^n a_k =\frac n2\left[2a+(n-1)d\right] =\frac n2(a_1+a_n).

To justify pairing for both odd and even numbers of terms, write the sum forwards and backwards and add the two copies:

sn=a1+a2++an,sn=an+an1++a1,2sn=n(a1+an).\begin{aligned} s_n&=a_1+a_2+\cdots+a_n,\\ s_n&=a_n+a_{n-1}+\cdots+a_1,\\ 2s_n&=n(a_1+a_n). \end{aligned}

Every column has sum a1+ana_1+a_n, because its two indices add to n+1n+1. For even nn, the original terms form distinct first-last pairs. For odd nn, the middle term is half of a1+ana_1+a_n; in the two-copy argument it is added to itself. There are always exactly nn columns, so dividing by two is valid in either case.

Worked example

Recover an arithmetic sequence from a sum

Suppose the common difference is d=3/2d=3/2 and the sum of the first 1515 terms is 240240. Then

240=152[2a+1432].240=\frac{15}{2}\left[2a+14\cdot\frac32\right].

Solving gives a=5.5a=5.5.

If the sum of the first kk terms is 361361, then

k2[2(5.5)+(k1)32]=361.\frac{k}{2}\left[2(5.5)+(k-1)\frac32\right]=361.

This simplifies to

3k2+19k1444=0.3k^2+19k-1444=0.

The positive integer solution is k=19k=19; the other root is rejected because a number of terms cannot be negative.

Checkpoint

What is the sum of the first nn terms of an arithmetic sequence with first term aa and common difference dd?

Use first-last pairing.

Solution · Answer
sn=n2[2a+(n1)d].s_n=\frac n2\left[2a+(n-1)d\right].

Geometric sequences and sums

Definition

Geometric sequence

A sequence {bn}\{b_n\} of nonzero numbers is geometric if there is a nonzero constant rr such that

bn+1bn=r\frac{b_{n+1}}{b_n}=r

for every nZ+n\in\mathbb Z^+. The number rr is the common ratio.

If b=b1b=b_1, then

bn=brn1.b_n=br^{n-1}.

For r1r\ne 1, the finite geometric sum is

k=1nbrk1=bk=0n1rk=b1rn1r=brn1r1.\sum_{k=1}^n br^{k-1} =b\sum_{k=0}^{n-1}r^k =b\frac{1-r^n}{1-r} =b\frac{r^n-1}{r-1}.

Let Gn=1+r++rn1G_n=1+r+\cdots+r^{n-1}. Multiplication by rr shifts every exponent up by one, giving rGn=r+r2++rnrG_n=r+r^2+\cdots+r^n. On subtraction, all powers from rr through rn1r^{n-1} cancel. The first term of GnG_n and the last term of rGnrG_n remain, so

(1r)(1+r++rn1)=1rn.(1-r)(1+r+\cdots+r^{n-1})=1-r^n.

If r=1r=1, every term is bb, so the sum is bnbn; division by 1r1-r is not allowed. These are finite sums for positive integers nn, and the cancellation requires no assumption about infinite convergence.

Read and try

Compare recursive and explicit sequence descriptions

Arithmetic, geometric, and affine recurrences determine each term from its predecessor and an initial value. Expanding the recurrence identifies an explicit formula and, for arithmetic and geometric terms, a finite-sum formula.

Key relation

a_1=5.5, a_{n+1}=a_n+1.5

Result

a_n=5.5+1.5(n-1)

Successive differences stay constant. The sum pairs the first and last terms.

Show between 1 and 12 displayed terms or months.

na_nPartial sum s_n
15.55.5
27.012.5
38.521.0
410.031.0
511.542.5
613.055.5

Checkpoint

Why does the geometric-sum formula need a separate case when r=1r=1?

Look at the denominator.

Solution · Answer

The formula b(1rn)/(1r)b(1-r^n)/(1-r) divides by 1r1-r, which is zero when r=1r=1. In that case every term is bb, so the sum is bnbn.

Arithmetic-geometric sums

A useful final exercise mixes an arithmetic factor with a geometric factor. Let

xk=(a+kd)brk,k=0,1,2,,x_k=(a+kd)br^k,\qquad k=0,1,2,\ldots,

where r0r\ne0 and r1r\ne1. For an integer n1n ≥ 1, define

Sn=k=0n1xk=k=0n1(a+kd)brk.S_n=\sum_{k=0}^{n-1}x_k =\sum_{k=0}^{n-1}(a+kd)br^k.

Use the same subtraction method, now tracking the changing coefficients. Separate the endpoints before aligning the interior powers:

Sn=ab+k=1n1(a+kd)brk,rSn=k=1n1(a+(k1)d)brk+(a+(n1)d)brn.\begin{aligned} S_n&=ab+\sum_{k=1}^{n-1}(a+kd)br^k,\\ rS_n&=\sum_{k=1}^{n-1}(a+(k-1)d)br^k +(a+(n-1)d)br^n. \end{aligned}

For each interior power rkr^k, the coefficient difference is (a+kd)(a+(k1)d)=d(a+kd)-(a+(k-1)d)=d. The constant term occurs only in the first line, while the power rnr^n occurs only in the second. Therefore

(1r)Sn=ab+dbk=1n1rk(a+(n1)d)brn.(1-r)S_n =ab+db\sum_{k=1}^{n-1}r^k-(a+(n-1)d)br^n.

To express the middle sum using the same endpoint rnr^n as the final formula, start with r+r2++rnr+r^2+\cdots+r^n and remove its last term:

k=1n1rk=r(1rn)1rrn.\sum_{k=1}^{n-1}r^k =\frac{r(1-r^n)}{1-r}-r^n.

Substitution contributes an extra dbrn-dbr^n. Combining it with the previous boundary term changes a+(n1)da+(n-1)d into a+nda+nd. Dividing by 1r1-r gives

Sn=ab(a+nd)brn1r+dbr(1rn)(1r)2.S_n= \frac{ab-(a+nd)br^n}{1-r} +\frac{dbr(1-r^n)}{(1-r)^2}.

For n=1n=1, the interior sums are empty and have value zero: the original sum is just S1=abS_1=ab. The two fractions above also reduce to abab, because the extra terms involving dd cancel. Setting d=0d=0 instead recovers Sn=ab(1rn)/(1r)S_n=ab(1-r^n)/(1-r), the ordinary geometric sum. These checks retain the first and last terms and help detect an indexing error.

Common mistake

Watch the shifted boundary term

The boundary term is the subtle point. The last term in rSnrS_n is (a+(n1)d)brn(a+(n-1)d)br^n, but after combining with the finite geometric sum the equivalent final formula can be written with (a+nd)brn(a+nd)br^n.

Checkpoint

In the arithmetic-geometric sum, why is the method SnrSnS_n-rS_n useful?

Track what happens to the coefficient a+kda+kd after shifting by one power of rr.

Solution · Answer

Most terms line up with the same power of rr, and their coefficients differ by exactly dd. That leaves two boundary terms and a geometric sum db(r++rn1)db(r+\cdots+r^{n-1}), which can be simplified by the ordinary geometric-sum formula.

An applied recurrence: the mortgage formula

The chapter's mortgage example is a useful applied recurrence. Let:

  • P>0P\gt 0 be the initial principal;
  • RR be the fixed nominal annual interest rate written as a decimal;
  • NN be a positive integer number of monthly payments;
  • xx be the fixed payment made at the end of each month;
  • LnL_n be the outstanding balance immediately after payment nn.

The model uses monthly rate R/12R/12: interest is applied to the previous balance first, then the payment is subtracted. For example, an annual rate of 3%3\% means R=0.03R=0.03, not R=3R=3. Month zero records the principal before any interest or payment. For integer months n1n ≥ 1,

L0=P,Ln=Ln1(1+R12)x.L_0=P,\qquad L_n=L_{n-1}\left(1+\frac{R}{12}\right)-x.

Write q=1+R/12q=1+R/12. The first two steps show the timing explicitly:

L1=Pqx,L2=(Pqx)qx=Pq2xqx.L_1=Pq-x,\qquad L_2=(Pq-x)q-x=Pq^2-xq-x.

The first payment has reduced the balance for one extra month, while the second payment has just been made. Repeated substitution gives

Ln=Pqnx(qn1+qn2++q+1).L_n=Pq^n-x(q^{n-1}+q^{n-2}+\cdots+q+1).

For R>0R\gt 0, we have q>1q\gt 1, so the geometric quotient is defined and gives

Ln=Pqnxqn1q1.L_n=Pq^n-x\frac{q^n-1}{q-1}.

To finish the loan after NN months, set LN=0L_N=0, so

x=P(R/12)(1+R/12)N(1+R/12)N1.x=P\frac{(R/12)(1+R/12)^N}{(1+R/12)^N-1}.

The weighted payments form a finite geometric sum: payment jj contributes xqnjxq^{n-j} to the reduction of the balance after payment nn. This explains why the newest payment has weight one and the earliest has weight qn1q^{n-1}. The resulting formula belongs to this fixed-rate, end-of-month payment model.

When R=0R=0, use the recurrence directly instead of the quotient: q=1q=1, Ln=PnxL_n=P-nx, and LN=0L_N=0 gives x=P/Nx=P/N. No interest is charged in this case; the principal is divided equally among the payments.

Exercises

  1. Let ana_n be the sequence 1,0,1,0,1,0,1,0,\ldots and let bn=an+1b_n=a_{n+1}. Find formulas for both sequences and verify an+bn=1a_n+b_n=1. Explain which formula changes when the first index is shifted.
  2. Prove by induction that 135(2n1)=(2n)!/(2nn!)1\cdot3\cdot5\cdots(2n-1)=(2n)!/(2^n n!). Compare the ratio of consecutive proposed values with the factor appended to the product.
  3. Let a1=3a_1=3 and an+1=an+4a_{n+1}=a_n+4. Find ana_n and sns_n.
  4. Let b1=5b_1=5 and bn+1=3bnb_{n+1}=3b_n. Find bnb_n and the sum of the first nn terms.
  5. Let Bn=(ϕnψn)/(ϕψ)B_n=(\phi^n-\psi^n)/(\phi-\psi), where ϕ=(1+5)/2\phi=(1+\sqrt5)/2 and ψ=(15)/2\psi=(1-\sqrt5)/2. Verify that B1=B2=1B_1=B_2=1 and Bn+2=Bn+1+BnB_{n+2}=B_{n+1}+B_n.
  6. Let L0=2000L_0=2000 and Ln=1.02Ln1150L_n=1.02L_{n-1}-150. Write LnL_n using a finite geometric sum.
  7. Let xk=(2+3k)5(1/2)kx_k=(2+3k)5(1/2)^k and Sn=k=0n1xkS_n=\sum_{k=0}^{n-1}x_k. Write SnS_n using the arithmetic-geometric formula.

Guided solutions

Solution · Model solution 1

Odd indices give 11, and even indices give 00, so an=(1+(1)n1)/2a_n=(1+(-1)^{n-1})/2. Shifting one index gives bn=(1+(1)n)/2=1anb_n=(1+(-1)^n)/2=1-a_n. The alternating sign changes; the two complementary sequences therefore sum to 11 at every index.

Solution · Model solution 2

At n=1n=1, both sides equal 11. If the identity holds at n=kn=k, append the factor 2k+12k+1. The proposed right-hand side changes by exactly the same factor:

(2k+2)!2k+1(k+1)!/(2k)!2kk!=(2k+2)(2k+1)2(k+1)=2k+1.\frac{(2k+2)!}{2^{k+1}(k+1)!}\bigg/\frac{(2k)!}{2^k k!}=\frac{(2k+2)(2k+1)}{2(k+1)}=2k+1.

Thus the induction step holds. This proves the formula by its recurrence rather than repeating the separation into even and odd factors.

Solution · Model solution 3

This is arithmetic with first term 33 and common difference 44, hence an=3+4(n1)=4n1a_n=3+4(n-1)=4n-1 and sn=n[23+(n1)4]/2=n(2n+1)s_n=n[2\cdot3+(n-1)4]/2=n(2n+1).

Solution · Model solution 4

This is geometric with first term 55 and ratio 33, so bn=53n1b_n=5\cdot3^{n-1} and sn=5(3n1)/(31)=5(3n1)/2s_n=5(3^n-1)/(3-1)=5(3^n-1)/2.

Solution · Model solution 5

Since ϕ2=ϕ+1\phi^2=\phi+1 and ψ2=ψ+1\psi^2=\psi+1, multiplying by ϕn\phi^n or ψn\psi^n gives ϕn+2=ϕn+1+ϕn\phi^{n+2}=\phi^{n+1}+\phi^n and ψn+2=ψn+1+ψn\psi^{n+2}=\psi^{n+1}+\psi^n. Subtract the two identities and divide by ϕψ\phi-\psi to obtain Bn+2=Bn+1+BnB_{n+2}=B_{n+1}+B_n. Also B1=1B_1=1 and B2=(ϕ2ψ2)/(ϕψ)=ϕ+ψ=1B_2=(\phi^2-\psi^2)/(\phi-\psi)=\phi+\psi=1. Therefore {Bn}\{B_n\} satisfies the same initial values and recurrence as Fibonacci.

Solution · Model solution 6

Repeated substitution gives Ln=2000(1.02)n150[(1.02)n1++1]L_n=2000(1.02)^n-150[(1.02)^{n-1}+\cdots+1], so Ln=2000(1.02)n150((1.02)n1)/0.02L_n=2000(1.02)^n-150((1.02)^n-1)/0.02.

Solution · Model solution 7

Here a=2a=2, d=3d=3, b=5b=5, and r=1/2r=1/2. Therefore

Sn=10(2+3n)5(1/2)n11/2+15(1/2)(1(1/2)n)(11/2)2.S_n= \frac{10-(2+3n)5(1/2)^n}{1-1/2} +\frac{15(1/2)(1-(1/2)^n)}{(1-1/2)^2}.

This can be simplified further, but the important point is the substitution into the general finite-sum formula.

Practice

Work out your answer, then check it. You can revise and try again.

Loading…

Key terms in this unit