Skip to main content
Back to Sequences & Series
JEE Main 2018
Sequences & Series
Sequences and Series
Hard

Question

The sum of the first 2020 terms of the series 5+11+19+29+41+5+11+19+29+41+\ldots is :

Options

Solution

Key Concepts and Formulas

  • Method of Differences: If the first differences of a series do not form an AP or GP, but the second differences are constant, the general term (TnT_n) of the series is a quadratic polynomial of the form Tn=an2+bn+cT_n = an^2 + bn + c.
  • Summation Formulas:
    • n=1N1=N\sum_{n=1}^{N} 1 = N
    • n=1Nn=N(N+1)2\sum_{n=1}^{N} n = \frac{N(N+1)}{2}
    • n=1Nn2=N(N+1)(2N+1)6\sum_{n=1}^{N} n^2 = \frac{N(N+1)(2N+1)}{6}
  • Linearity of Summation: n=1N(c1f(n)+c2g(n))=c1n=1Nf(n)+c2n=1Ng(n)\sum_{n=1}^{N} (c_1 f(n) + c_2 g(n)) = c_1 \sum_{n=1}^{N} f(n) + c_2 \sum_{n=1}^{N} g(n)

Step-by-Step Solution

Step 1: Determine the General Term (TnT_n) of the Series

We are given the series 5+11+19+29+41+5+11+19+29+41+\ldots. To find the general term, we will use the method of differences.

First, let's list the terms of the series and calculate the differences between consecutive terms. The terms are: T1=5,T2=11,T3=19,T4=29,T5=41T_1 = 5, T_2 = 11, T_3 = 19, T_4 = 29, T_5 = 41.

Calculate the first differences: D1=T2T1=115=6D_1 = T_2 - T_1 = 11 - 5 = 6 D2=T3T2=1911=8D_2 = T_3 - T_2 = 19 - 11 = 8 D3=T4T3=2919=10D_3 = T_4 - T_3 = 29 - 19 = 10 D4=T5T4=4129=12D_4 = T_5 - T_4 = 41 - 29 = 12 The sequence of first differences is 6,8,10,12,6, 8, 10, 12, \ldots.

Now, calculate the second differences (differences between consecutive first differences): D1=D2D1=86=2D'_1 = D_2 - D_1 = 8 - 6 = 2 D2=D3D2=108=2D'_2 = D_3 - D_2 = 10 - 8 = 2 D3=D4D3=1210=2D'_3 = D_4 - D_3 = 12 - 10 = 2 The sequence of second differences is 2,2,2,2, 2, 2, \ldots. Since the second differences are constant, the general term (TnT_n) of the series is a quadratic polynomial of the form Tn=an2+bn+cT_n = an^2 + bn + c.

We can find the coefficients a,b,ca, b, c by setting up a system of equations using the first three terms of the series: For n=1n=1: T1=a(1)2+b(1)+c=a+b+c=5(1)T_1 = a(1)^2 + b(1) + c = a + b + c = 5 \quad \ldots (1) For n=2n=2: T2=a(2)2+b(2)+c=4a+2b+c=11(2)T_2 = a(2)^2 + b(2) + c = 4a + 2b + c = 11 \quad \ldots (2) For n=3n=3: T3=a(3)2+b(3)+c=9a+3b+c=19(3)T_3 = a(3)^2 + b(3) + c = 9a + 3b + c = 19 \quad \ldots (3)

Subtract equation (1) from equation (2): (4a+2b+c)(a+b+c)=115(4a + 2b + c) - (a + b + c) = 11 - 5 3a+b=6(4)3a + b = 6 \quad \ldots (4)

Subtract equation (2) from equation (3): (9a+3b+c)(4a+2b+c)=1911(9a + 3b + c) - (4a + 2b + c) = 19 - 11 5a+b=8(5)5a + b = 8 \quad \ldots (5)

Subtract equation (4) from equation (5): (5a+b)(3a+b)=86(5a + b) - (3a + b) = 8 - 6 2a=22a = 2 a=1a = 1

Substitute a=1a=1 into equation (4): 3(1)+b=63(1) + b = 6 3+b=63 + b = 6 b=3b = 3

Substitute a=1a=1 and b=3b=3 into equation (1): 1+3+c=51 + 3 + c = 5 4+c=54 + c = 5 c=1c = 1

Therefore, the general term of the series is Tn=n2+3n+1T_n = n^2 + 3n + 1.

We can verify this formula with the given terms: T1=12+3(1)+1=1+3+1=5T_1 = 1^2 + 3(1) + 1 = 1 + 3 + 1 = 5 T2=22+3(2)+1=4+6+1=11T_2 = 2^2 + 3(2) + 1 = 4 + 6 + 1 = 11 T3=32+3(3)+1=9+9+1=19T_3 = 3^2 + 3(3) + 1 = 9 + 9 + 1 = 19 The formula is correct.

Step 2: Calculate the Sum of the First 2020 Terms (S20S_{20})

The sum of the first NN terms of the series is given by SN=n=1NTnS_N = \sum_{n=1}^{N} T_n. Substituting the general term Tn=n2+3n+1T_n = n^2 + 3n + 1, we get: SN=n=1N(n2+3n+1)S_N = \sum_{n=1}^{N} (n^2 + 3n + 1) Using the linearity of summation, we can split this into three separate summations: SN=n=1Nn2+3n=1Nn+n=1N1S_N = \sum_{n=1}^{N} n^2 + 3 \sum_{n=1}^{N} n + \sum_{n=1}^{N} 1

Now, we apply the standard summation formulas: n=1Nn2=N(N+1)(2N+1)6\sum_{n=1}^{N} n^2 = \frac{N(N+1)(2N+1)}{6} n=1Nn=N(N+1)2\sum_{n=1}^{N} n = \frac{N(N+1)}{2} n=1N1=N\sum_{n=1}^{N} 1 = N

Substitute these formulas into the expression for SNS_N: SN=N(N+1)(2N+1)6+3(N(N+1)2)+NS_N = \frac{N(N+1)(2N+1)}{6} + 3 \left( \frac{N(N+1)}{2} \right) + N

We need to find the sum of the first 2020 terms, so we set N=20N=20: S20=20(20+1)(220+1)6+3(20(20+1)2)+20S_{20} = \frac{20(20+1)(2 \cdot 20 + 1)}{6} + 3 \left( \frac{20(20+1)}{2} \right) + 20 S20=20(21)(41)6+3(20(21)2)+20S_{20} = \frac{20(21)(41)}{6} + 3 \left( \frac{20(21)}{2} \right) + 20

Now, we calculate each part:

  1. The first term: 2021416=420416=7041=2870\frac{20 \cdot 21 \cdot 41}{6} = \frac{420 \cdot 41}{6} = 70 \cdot 41 = 2870
  2. The second term: 320212=3(1021)=3210=6303 \cdot \frac{20 \cdot 21}{2} = 3 \cdot (10 \cdot 21) = 3 \cdot 210 = 630
  3. The third term: 2020

Add these values together to find S20S_{20}: S20=2870+630+20S_{20} = 2870 + 630 + 20 S20=3500+20S_{20} = 3500 + 20 S20=3520S_{20} = 3520

Common Mistakes & Tips

  • Accuracy in Differences: Errors in calculating the first or second differences will lead to an incorrect general term (TnT_n). Always double-check these calculations.
  • Correct Summation Formulas: Ensure you are using the correct standard formulas for the sum of the first NN integers and the sum of the first NN squares.
  • Algebraic Simplification: Be meticulous when substituting NN into the sum formula and performing the arithmetic. Factoring common terms before substitution can sometimes reduce errors, but direct calculation is also valid if done carefully.

Summary

The given series is not an arithmetic or geometric progression. By applying the method of differences, we found that the second differences are constant, indicating that the general term TnT_n is a quadratic polynomial. We determined Tn=n2+3n+1T_n = n^2 + 3n + 1. To find the sum of the first 20 terms, S20S_{20}, we used the linearity of summation and the standard formulas for n2\sum n^2, n\sum n, and 1\sum 1. Substituting N=20N=20 into the derived sum formula, we calculated S20S_{20} to be 3520.

The final answer is \boxed{3520}, which corresponds to option (D).

Practice More Sequences & Series Questions

View All Questions