Sequences and series are fundamental to the DSE compulsory maths syllabus. A sequence is an ordered List of numbers governed by a rule; a series is the sum of the terms of a sequence. This topic Covers arithmetic and geometric progressions, sigma notation manipulation, and recurrence relations.
Notations and Definitions
Sequences
A sequence is a function a:N→R (or a subset of N). We write The sequence as a1,a2,a3,…Or {an}. Each an is called a term of the Sequence. The expression an giving the n-th term in terms of n is the general term or formula for the n-th term.
Series
A series is the sum of the terms of a sequence:
Sn=a1+a2+⋯+an
Sn is called the n-th partial sum. If the sequence of partial sums {Sn} converges to a Limit S as n→∞We write S=∑n=1∞an and call S the sum to Infinity.
Sigma Notation
k=1∑nak=a1+a2+⋯+an
The variable k is the index of summation (a dummy variable — its name does not matter). The Value below is the lower limit; the value above is the upper limit.
Arithmetic Sequences
Geometric Series: Partial Sums
Adjust the parameters in the graph above to explore the relationships between variables.
Definition
An arithmetic sequence (or arithmetic progression, AP) is a sequence where the difference Between consecutive terms is constant. This constant difference is denoted d:
An+1−an=dforalln
The first term is a1. The sequence is: a1,a1+d,a1+2d,…
The n-th Term
Theorem. For an arithmetic sequence with first term a1 and common difference d:
An=a1+(n−1)d
Proof (by induction).
Base case (n=1):a1=a1+(1−1)d=a1. True.
Inductive step: Assume ak=a1+(k−1)d for some k≥1. Then
Ak+1=ak+d=a1+(k−1)d+d=a1+kd
Which matches the formula for n=k+1. ■
ExampleFind the 20th term of the sequence 3,7,11,15,…
Here a1=3, d=4. So a20=3+19×4=3+76=79.
ExampleIn an arithmetic sequence, a5=17 and a12=38. Find a1 and d.
a5=a1+4d=17 and a12=a1+11d=38.
Subtracting: 7d=21⟹d=3. Then a1=17−12=5.
Property: Equidistant Terms
Theorem. In an arithmetic sequence, terms equidistant from the ends sum to the same constant:
If a sequence defined by an+1=f(an) converges to a limit LThen L must satisfy:
L=f(L)
This equation gives the fixed point(s) of f. To confirm convergence, one must also show the Sequence is bounded and monotonic (or use other convergence criteria).
ExampleA sequence is defined by an+1=21(an+an16) with a1=1. Find its limit.
Set L=21(L+L16).
2L=L+L16⟹L=L16⟹L2=16.
Since an>0 for all n, L=4.
This is the Babylonian method for computing 16=4.
ExampleA sequence is defined by an+1=2+an with a1=2. Assuming convergence, find the limit.
L=2+L⟹L2=2+L⟹L2−L−2=0⟹(L−2)(L+1)=0.
Since an>0, L=2.
Common Pitfalls
Confusing an and Sn.an is a single term; Sn is the sum up to that term. Read the question carefully.
Off-by-one errors in the n-th term formula. The formula is an=a1+(n−1)dNot a1+nd. The exponent in the geometric formula is rn−1Not rn.
Forgetting the convergence condition for infinite series.S∞=1−ra1 is only valid when ∣r∣<1. If ∣r∣≥1The sum does not exist.
Mixing up the common ratio and common difference.d is for arithmetic (difference), r is for geometric (ratio).
Sigma notation index errors. When shifting indices, verify by checking the first and last terms. ∑k=1nak=∑k=0nak .
Assuming a recurrence converges without justification. Setting L=f(L) gives candidate limits. You still need to verify the sequence actually converges (e.g., via the Monotone Convergence Theorem).
Arithmetic series formula with wrong n. If asked to sum from a3 to a10The number of terms is 10−3+1=8Not 10 or 7.
Wrap-up Questions
Wrap-up Questions
Question: A student starts a savings plan. In the first year, they deposit USD 1,200. In each subsequent year, they increase their deposit by a constant USD 300. After 5 years of deposits, they stop adding money and invest the total accumulated amount in an account that earns 6% interest compounded annually. What is the value of the investment 10 years after they made their last deposit?
Details
Answer
This is a two-part problem. First, an arithmetic series to find the total saved, then a geometric sequence for the compound interest.
Part 1: Calculate total savings (Arithmetic Series)
The deposits are an arithmetic sequence with a1=1200, d=300And n=5 years of deposits.
The total amount deposited is the sum of the series, S5.
First, find the deposit in the 5th year: a5=a1+(5−1)d=1200+4(300)=2400.
Now, find the sum: S5=2n(a1+a5)=25(1200+2400)=2.5(3600)=USD9,000.
Part 2: Calculate investment growth (Geometric Sequence)
The principal for the investment is P=USD9,000.
The annual interest rate is i=0.06So the common ratio is r=1.06.
The time period is t=10 years.
The future value is given by the compound interest formula FV=P(1+i)t.
FV=9000(1.06)10≈9000(1.790847)≈USD16,117.62.
If you get this wrong, you should focus on: Separating a multi-stage problem, calculating the Sum of a finite arithmetic series, and applying the formula for compound interest (a geometric Sequence application).
Question: A patient is given an initial dose of 20mg of a medication. Every day, they take a 10mg maintenance dose. The drug is eliminated from the body such that 50% of the total amount is removed every 24 hours. What is the limiting amount of the drug in the body in the long run (i.e., the steady state amount)?
Answer
Let An be the amount of the drug in the body immediately after the n-th maintenance dose.
A0=20 (initial dose).
Day 1: Before the dose, the amount is 20×0.5=10. After the dose, A1=(20×0.5)+10=20.
Day 2: Before the dose, the amount is A1×0.5=20×0.5=10. After the dose, A2=(A1×0.5)+10=(20×0.5)+10=20.
It seems the amount right after each dose is always 20mg. Let’s write a general recurrence relation.
Let Qn be the amount in the body just after the n-th dose (for n≥1). Let Q0=20 be the initial amount.
The amount just before the (n+1)-th dose is 0.5⋅Qn.
The amount just after the (n+1)-th dose is Qn+1=0.5⋅Qn+10.
To find the limiting amount (steady state), we assume the sequence converges to a limit L.
As n→∞, Qn+1→L and Qn→L. L=0.5L+100.5L=10L=0.510=20mg
The limiting amount of the drug in the body, measured just after taking the dose, is 20 mg. The amount will then fluctuate between 20mg (just after the dose) and 10mg (just before the next dose). The question asks for the limiting amount, which in this context refers to the peak steady-state level.
If you get this wrong, you should focus on: Modeling real-world scenarios with recurrence Relations and finding the fixed point or steady state of the system by taking the limit.
Question: Find the exact sum of the infinite series ∑n=1∞n(n+1)(n+2)1.
Answer
This series can be solved by recognizing it as a telescoping series after applying partial fraction decomposition.
Step 1: Decompose the general term.
n(n+1)(n+2)1=nA+n+1B+n+2C
1=A(n+1)(n+2)+B(n)(n+2)+C(n)(n+1)
Let n=0: 1=A(1)(2)⟹A=1/2.
Let n=−1: 1=B(−1)(1)⟹B=−1.
Let n=−2: 1=C(−2)(−1)⟹C=1/2. So, the term is 2n1−n+11+2(n+2)1.
Step 2: Write out the partial sum SN to find the pattern.
To make the pattern clearer, rewrite the term as 21(n1−n+12+n+21)=21[(n1−n+11)−(n+11−n+21)].
Let an=n1−n+11. The term is 21(an−an+1).
n=1:21(a1−a2)=21[(1−21)−(21−31)]
n=2:21(a2−a3)=21[(21−31)−(31−41)]
n=3:21(a3−a4)=21[(31−41)−(41−51)]
The sum is 21[(a1−a2)+(a2−a3)+⋯+(aN−aN+1)].
If you get this wrong, you should focus on: Partial fraction decomposition for cubic Denominators and identifying the cancellation pattern in telescoping series.
Question: The area of a Koch snowflake can be found by summing an infinite series. Start with an equilateral triangle of area A. At each step, a new equilateral triangle is added to the middle third of each existing side. The new triangle’s side length is 1/3 of the side it’s added to. Find the total area of the snowflake after an infinite number of steps in terms of the initial area A.
Answer
This problem requires tracking the number of triangles added and their area at each step.
Let A0=A be the initial area. Let S0=3 be the initial number of sides.
Step 1 (k=1):
We add one new triangle to each of the S0=3 sides.
A triangle with side length s/3 has area (1/3)2=1/9 of a triangle with side length s.
Area added: A1=S0⋅9A=3⋅9A=3A.
New number of sides: S1=S0⋅4=12.
Step 2 (k=2):
We add one new triangle to each of the S1=12 sides.
The side length of these new triangles is 1/3 of the previous step’s triangles, so their area is 1/9 of the previous step’s triangles, which is (1/9)2A=A/81.
Area added: A2=S1⋅81A=12⋅81A=274A.
Step 3 (k=3):
Number of sides is now S2=S1⋅4=48. Area of new triangles is A/81⋅1/9=A/729.
The series in the parenthesis is 31+94⋅31+(94)2⋅31+…
This is a geometric series with first term a=1/3 and common ratio r=4/9.
Sum the series:
Since ∣r∣=4/9<1The series converges.
Sum of the added area = 1−ra=1−4/91/3=5/91/3=31⋅59=53.
The total area is Atotal=A+A(53)=58A.
If you get this wrong, you should focus on: Modeling a geometric process, identifying the First term and common ratio of the resulting geometric series, and calculating the sum.
Question: A student is trying to determine if the series ∑n=1∞n3+2n2+n converges. They first try the Ratio Test, but find it inconclusive. Show why the Ratio Test is inconclusive, and then use a more appropriate test to definitively determine convergence or divergence.
Answer
Part 1: Show the Ratio Test is inconclusive.
Let an=n3+2n2+n. L=limn→∞anan+1=limn→∞(n+1)3+2(n+1)2+(n+1)⋅n2+nn3+2
To evaluate this limit, we only need to consider the highest power terms in each polynomial.
Highest power in (n+1)2+(n+1) is n2.
Highest power in (n+1)3+2 is n3.
Highest power in n3+2 is n3.
Highest power in n2+n is n2. L=limn→∞n3⋅n2n2⋅n3=limn→∞n5n5=1
Since the limit is 1, the Ratio Test is inconclusive.
Part 2: Use a more appropriate test.
The Limit Comparison Test is ideal here. The term an behaves like n3n2=n1 for large n.
Let’s compare our series to the harmonic series ∑bn=∑n1Which is known to diverge.
Compute the limit of the ratio of the terms: L=limn→∞bnan=limn→∞n1n3+2n2+n=limn→∞n3+2n(n2+n)=limn→∞n3+2n3+n2
Divide numerator and denominator by n3: L=limn→∞1+2/n31+1/n=11=1
Since the limit is a finite, positive number (0<L<∞), and the comparison series ∑n1 diverges, the original series ∑n3+2n2+n also diverges by the Limit Comparison Test.
If you get this wrong, you should focus on: Understanding the limitations of the Ratio Test (especially for rational functions) and applying the Limit Comparison Test by choosing an Appropriate p-series to compare with.
Question: A programmer needs to approximate cos(0.2) for a low-power device. They decide to use a Maclaurin polynomial. What is the minimum degree of the polynomial required to guarantee an approximation error less than 10−7?
Answer
This problem requires using the Taylor Remainder Theorem, specifically the error bound for an alternating series, as the Maclaurin series for cosine is alternating.
The Maclaurin series for cos(x) is ∑n=0∞(2n)!(−1)nx2n=1−2!x2+4!x4−6!x6+….
For x=0.2This is an alternating series. The Alternating Series Estimation Theorem states that the error ∣Rn∣ in approximating the sum by the n-th partial sum is less than the absolute value of the first unused term, ∣an+1∣.
Let’s calculate the absolute values of the terms for x=0.2:
Term 0 (1): Used in P0.
Term 1 (−2!0.22): ∣a1∣=20.04=0.02. Used in P2.
Term 2 (+4!0.24): ∣a2∣=240.0016≈6.67×10−5. Used in P4.
Term 3 (−6!0.26): ∣a3∣=7200.000064≈8.89×10−8.
We need the error to be less than 10−7.
If we use the polynomial P4(x)=1−2!x2+4!x4The error will be bounded by the absolute value of the next term, which is ∣a3∣≈8.89×10−8.
Since 8.89×10−8<10−7This is sufficient.
The polynomial P4(x) has degree 4. However, the question asks for the minimum degree. The polynomial used is 1−2!x2+4!x4. The term with x5 is zero, so P5(x)=P4(x). The error for P5(x) is also bounded by the next non-zero term, which is the x6 term.
Therefore, using a polynomial of degree 4 (or 5) is sufficient. The minimum degree required to include the x4 term is 4.
If you get this wrong, you should focus on: The Alternating Series Estimation Theorem and how It applies to Taylor series approximations for functions like sine and cosine.
Question: The function f(x)=sin(x2) is notoriously difficult to integrate. Approximate the value of the definite integral ∫01sin(x2)dx by integrating the first three non-zero terms of its Maclaurin series.
If you get this wrong, you should focus on: Creating new series from known Maclaurin series Via substitution, and performing term-by-term integration of a power series to approximate a Definite integral.
Question: A ball is dropped from a height of 10 meters. After each bounce, it returns to 75% of its previous height. The time it takes to fall from a height h is h/5 seconds, and the time it takes to rise to a height h is also h/5 seconds. What is the total time the ball is in the air?
Answer
This problem involves summing two different infinite geometric series: one for the distances and one for the time.
Step 1: Analyze the sequence of heights.
Initial drop: h0=10.
After 1st bounce: h1=10(0.75).
After 2nd bounce: h2=10(0.75)2.
, after the n-th bounce, the height is hn=10(0.75)n.
Step 2: Calculate the time for the initial drop.
Tdrop,0=h0/5=10/5=2 seconds.
Step 3: Calculate the time for all subsequent rises and falls.
For each bounce n (starting at n=1), the ball rises to height hn and falls from height hn.
Time for one rise-fall cycle from height hn: Tn=Trise+Tfall=hn/5+hn/5=2hn/5.
Tn=210(0.75)n/5=22(0.75)n=22(0.75)n.
Step 4: Sum the infinite series for the time of the bounces.
Total time for bounces is ∑n=1∞Tn=∑n=1∞22(0.75)n.
This is a geometric series with first term a=220.75 and common ratio r=0.75.
r=3/4=23≈0.866<1So the series converges.
Sum = 1−ra=1−0.75220.75=1−0.7521.5≈1−0.8662(1.2247)≈0.1342.4494≈18.28 seconds.
Step 5: Calculate total time.
Total Time = Initial Drop Time + Bounce Time
Total Time = 2+18.28≈1.414+18.28=19.694 seconds.
If you get this wrong, you should focus on: Setting up a model based on a word problem, Identifying the correct geometric series (especially the common ratio), and summing an infinite Geometric series.
Question: Show that the series ∑n=2∞nln(n)(−1)n is conditionally convergent.
Answer
To prove conditional convergence, we must show two things: (1) the series itself converges, and (2) the series of absolute values diverges.
Part 1: Show convergence of the original series.
We use the Alternating Series Test on ∑n=2∞nln(n)(−1)n. Let bn=nln(n)1.
Condition 1: bn>0 for n≥2. This is true.
Condition 2: limn→∞bn=limn→∞nln(n)1=0. This is true as the denominator grows to infinity.
Condition 3: bn+1≤bn. The function f(x)=xln(x) is a product of two increasing functions, so it is increasing. Therefore, its reciprocal, bnIs decreasing.
Since all three conditions are met, the series converges by the Alternating Series Test.
Part 2: Show divergence of the series of absolute values.
We need to test the series ∑n=2∞nln(n)(−1)n=∑n=2∞nln(n)1.
We can use the Direct Comparison Test. We know that for n>e, ln(n)<n.
Therefore, nln(n)<nn=n.
This implies nln(n)1>n1 for n large enough.
We are comparing our series to the harmonic series ∑n1Which diverges.
Since the terms of our series are greater than the terms of a divergent series, the series ∑nln(n)1 diverges by the Direct Comparison Test.
Conclusion:
The series converges, but it does not converge absolutely. Therefore, the series is conditionally convergent.
If you get this wrong, you should focus on: The definition of conditional and absolute Convergence, applying the Alternating Series Test, and using the Direct Comparison Test with a Suitable bounding function (like comparing ln(n) to a power of n).
Question: Find the complete interval of convergence for the power series ∑n=1∞n⋅3n(2x−5)n.
Answer
Step 1: Use the Ratio Test to find the radius of convergence.
Step 2: Solve for the interval where the series converges.
The series converges when L<1So 3∣2x−5∣<1⟹∣2x−5∣<3.
This gives −3<2x−5<3.
Add 5 to all parts: 2<2x<8.
Divide by 2: 1<x<4.
Step 3: Test the endpoints of the interval.
Endpoint x = 4: Substitute into the series:
∑n=1∞n⋅3n(2(4)−5)n=∑n=1∞n⋅3n3n=∑n=1∞n1 This is the harmonic series, which diverges.
Endpoint x = 1: Substitute into the series:
∑n=1∞n⋅3n(2(1)−5)n=∑n=1∞n⋅3n(−3)n=∑n=1∞n(−1)n This is the alternating harmonic series, which converges by the Alternating Series Test.
Step 4: State the final interval of convergence.
The series converges for x=1 but not for x=4.
The interval of convergence is [1,4).
If you get this wrong, you should focus on: The full process for finding the interval of Convergence: using the Ratio Test correctly with a center other than 0, solving the resulting Inequality, and carefully testing the endpoints using appropriate series tests (like p-series or AST).
Question: A sequence is defined by the recurrence relation an+1=21(an+an9) with a1=1. Assuming the sequence converges, what is its limit? Then, calculate the first four terms of the sequence to observe its rate of convergence.
Answer
This is the Babylonian method for finding a square root.
Part 1: Find the limit.
Assume the sequence converges to a limit L. Since all terms will be positive, L must be positive.
Observation: The sequence converges to the limit of 3 very quickly. The first term is off by 2, the second is off by 2, the third is off by 0.4, and the fourth is only off by about 0.02. This demonstrates quadratic convergence.
If you get this wrong, you should focus on: The technique for finding the limit of a Convergent recursive sequence and performing iterative calculations.
Question: Determine if the series ∑n=1∞(1−n1)n2 converges or diverges. (Hint: A test other than the Ratio Test will be much more effective).
Answer
The presence of the n2 power in the exponent strongly suggests using the Root Test.
Let an=(1−n1)n2.
Apply the Root Test:
L=limn→∞n∣an∣=limn→∞n(1−n1)n2
L=limn→∞((1−n1)n2)1/n=limn→∞(1−n1)n
This is a standard limit form related to the definition of e. Recall the limit definition limn→∞(1+nx)n=ex.
In our case, x=−1.
L=e−1=e1
Since e≈2.718We have L=1/e<1.
Because the limit L is less than 1, the series converges by the Root Test.
If you get this wrong, you should focus on: Recognizing when to apply the Root Test (especially for terms with powers of n) and knowing the limit definition of the exponential function ex.
Question: Find the sum of the series ∑n=1∞n2+4n+32.
Answer
This is a telescoping series that requires factoring the denominator and using partial fractions.
Step 1: Factor the denominator and decompose the term.
n2+4n+3=(n+1)(n+3).
(n+1)(n+3)2=n+1A+n+3B
2=A(n+3)+B(n+1)
Let n=−1: 2=A(2)⟹A=1.
Let n=−3: 2=B(−2)⟹B=−1.
The term is n+11−n+31.
Step 2: Write out the partial sum SN to find the cancellation pattern.
n=1:(21−41)
n=2:(31−51)
n=3:(41−61)
n=4:(51−71)
…
n=N−1:(N1−N+21)
n=N:(N+11−N+31)
The terms that do not cancel at the beginning are 21 and 31.
The terms that do not cancel at the end are −N+21 (from the n=N−1 term) and −N+31 (from the n=N term).
If you get this wrong, you should focus on: Factoring quadratic denominators, partial Fraction decomposition, and carefully identifying the surviving terms in a telescoping series where The terms are not consecutive.
Question: A bank offers a special savings account. If you deposit USD 100 on the first day of the month, they add a USD 1 bonus at the end of the month. If you deposit USD 100 on the first day of the next month, they add a USD 2 bonus, and so on, with the bonus increasing by USD 1 each month. You deposit USD 100 each month for 2 years (24 months). What is the total amount of money in the account immediately after the 24th month’s bonus is paid? (Assume no other interest is paid).
Answer
This problem can be broken into two parts: the sum of your deposits and the sum of the bank’s bonuses.
Part 1: Sum of your deposits.
You deposit 100 each month for 24 months.
Total Deposits = 100×24=USD2,400.
Part 2: Sum of the bank’s bonuses.
The bonuses form an arithmetic sequence: 1, 2, 3, …, 24.
We need to find the sum of this arithmetic series, S24.
a_1 = 1$$a_{24} = 24$$n=24.
S24=2n(a1+an)=224(1+24)=12(25)=USD300.
Part 3: Total amount.
Total Amount = Total Deposits + Total Bonuses
Total Amount = 2,400+300=USD2,700.
If you get this wrong, you should focus on: Breaking a word problem into its constituent Parts and recognizing how to apply the formula for the sum of a simple arithmetic series.
Question: Using the Maclaurin series for exFind the exact value of the sum ∑n=0∞n!2n. Then, use this result to find the sum of the related series ∑n=2∞(n−1)!2n.
Answer
Part 1: Find the sum of the first series.
The Maclaurin series for ex is ∑n=0∞n!xn.
The series ∑n=0∞n!2n matches this form exactly with x=2.
Therefore, the sum of the first series is e2.
Part 2: Find the sum of the second series.
Let S=∑n=2∞(n−1)!2n. This series is not in a standard form. We need to manipulate the index to make it match a known series.
Let k=n−1. When n=2$$k=1. As n \to \infty$$k \to \infty. Also, n=k+1.
Substitute these into the sum:
S=∑k=1∞k!2k+1=∑k=1∞k!2⋅2k=2∑k=1∞k!2k
Now, the sum ∑k=1∞k!2k is almost e2.
We know e2=∑k=0∞k!2k=0!20+∑k=1∞k!2k=1+∑k=1∞k!2k.
So, ∑k=1∞k!2k=e2−1.
Substitute this back into our expression for S:
S=2(e2−1)
If you get this wrong, you should focus on: Recognizing known Maclaurin series, and using Index manipulation (re-indexing) to transform a given series into a more familiar form.
Question: The sum ∑k=1nk2=6n(n+1)(2n+1) is a well-known formula. Use this to find the value of the series ∑k=520(3k2−5).
Answer
We need to manipulate the sum to use the given formula, which starts at k=1.
Step 1: Split the sum and use properties of summation.
Step 4: Substitute back and calculate the final result.
∑k=520k2=2870−30=2840.
Original expression = 3(2840)−80=8520−80=8440.
If you get this wrong, you should focus on: Properties of sigma notation, specifically how to Change the starting and ending indices of a sum to match a known formula.
Question: Does the series ∑n=1∞n!nn converge or diverge? Justify your answer with an appropriate test.
Answer
This series can be tested with the Ratio Test, but a simpler approach is the Test for Divergence.
Method 1: Test for Divergence
Let’s examine the limit of the terms an=n!nn.
Write out the term: an=1⋅2⋅3⋯nn⋅n⋅n⋯n=(1n)(2n)⋯(nn).
Each factor (kn) is ≥1. The first factor is n.
So, an=1n⋅(productofterms≥1)≥n.
As n→∞, an→∞ because an≥n.
Since limn→∞an=0The series diverges by the Test for Divergence.
Since L=e≈2.718>1The series diverges by the Ratio Test.
If you get this wrong, you should focus on: The Test for Divergence as a first-line check, And the application of the Ratio Test leading to the limit definition of e.
Question: A sequence is defined recursively by x1=2 and xn+1=2+xn for n≥1. Prove that this sequence converges and find its limit.
Answer
To prove convergence without knowing the limit, we can use the Monotone Convergence Theorem, which requires showing the sequence is both monotonic and bounded.
Step 1: Show the sequence is bounded above by 2.
We use mathematical induction.
Base Case: x1=2<2. True.
Inductive Hypothesis: Assume xk<2 for some integer k≥1.
Inductive Step: We must show xk+1<2.
xk+1=2+xk<2+2=4=2 The inequality holds because xk<2. Thus, the sequence is bounded above by 2.
Step 2: Show the sequence is monotonic increasing (xn+1≥xn).
We use induction again.
Base Case: x2=2+2>2=x1. True.
Inductive Hypothesis: Assume xk≥xk−1 for some integer k≥2.
Inductive Step: We must show xk+1≥xk.
xk≥xk−1⟹2+xk≥2+xk−1⟹2+xk≥2+xk−1⟹xk+1≥xk Thus, the sequence is monotonic increasing.
Step 3: Conclude convergence and find the limit.
Since the sequence is bounded above and monotonic increasing, it must converge by the Monotone Convergence Theorem. Let the limit be L.
To find LWe take the limit of the recurrence relation:
limn→∞xn+1=limn→∞2+xn
L=2+L
Square both sides: L2=2+L⟹L2−L−2=0.
Factor the quadratic: (L−2)(L+1)=0.
The possible limits are L=2 or L=−1. Since all terms of the sequence are positive, the limit must be positive.
Therefore, the limit of the sequence is 2.
If you get this wrong, you should focus on: The Monotone Convergence Theorem, ./1-number-and-algebra/3_proof-and-logic by Mathematical induction for boundedness and monotonicity, and finding the limit of a recursively Defined sequence.
:::tip Tip Ready to test your understanding of Sequences and Series? The contains the hardest questions within the DSE specification for this topic, each with a full worked solution.
Unit tests probe edge cases and common misconceptions. Integration tests combine Sequences and Series with other DSE mathematics topics to test synthesis under exam conditions.
See for instructions on self-marking and building a personal test matrix.
Summary
including key theorems, methods, and problem-solving approaches.