Key Concepts and Formulas
- Arithmetic Progression (AP): The n-th term of an AP is given by an=a1+(n−1)d, where a1 is the first term and d is the common difference.
- Summation Formulas:
- Sum of first N natural numbers: ∑k=1Nk=2N(N+1)
- Sum of first N squares: ∑k=1Nk2=6N(N+1)(2N+1)
- Sum of first N cubes: ∑k=1Nk3=(2N(N+1))2
- Telescoping Sum: A sum of the form ∑k=mn(f(k)−f(k−1)) simplifies to f(n)−f(m−1). This is useful for solving recurrence relations of the form bn−bn−1=g(n).
Step-by-Step Solution
Step 1: Determine the general term an.
We are given a1=1 and an=an−1+2 for n≥2.
The relation an−an−1=2 indicates that the sequence an is an Arithmetic Progression with first term a1=1 and common difference d=2.
Using the formula for the n-th term of an AP, an=a1+(n−1)d:
an=1+(n−1)2
an=1+2n−2
an=2n−1
Thus, the general term for the sequence an is an=2n−1.
Step 2: Determine the general term bn.
We are given b1=1 and bn=an+bn−1 for n≥2.
Rearranging the recurrence relation, we get bn−bn−1=an.
To find bn, we can sum this difference from k=2 to n:
∑k=2n(bk−bk−1)=∑k=2nak
The left side is a telescoping sum: (bn−bn−1)+(bn−1−bn−2)+⋯+(b2−b1)=bn−b1.
So, bn−b1=∑k=2nak.
Substitute b1=1 and ak=2k−1:
bn−1=∑k=2n(2k−1)
We can evaluate the sum ∑k=2n(2k−1) by splitting it:
∑k=2n(2k−1)=2∑k=2nk−∑k=2n1
The sum of k from 2 to n is ∑k=1nk−1=2n(n+1)−1.
The sum of 1 from 2 to n is (n−1)×1=n−1.
So,
2(2n(n+1)−1)−(n−1)
=n(n+1)−2−n+1
=n2+n−2−n+1
=n2−1
Alternatively, we can notice that ∑k=2n(2k−1) is the sum of an AP with first term 2(2)−1=3, last term 2n−1, and n−1 terms. The sum is 2n−1(3+2n−1)=2n−1(2n+2)=(n−1)(n+1)=n2−1.
Substituting this back into the equation for bn:
bn−1=n2−1
bn=n2
Thus, the general term for the sequence bn is bn=n2.
Step 3: Calculate the sum ∑n=115anbn.
We need to find the sum of the product of the general terms an and bn:
anbn=(2n−1)(n2)
anbn=2n3−n2
Now, we compute the sum from n=1 to 15:
∑n=115anbn=∑n=115(2n3−n2)
Using the linearity of summation:
=2∑n=115n3−∑n=115n2
Now, we use the standard summation formulas for N=15:
For the sum of cubes:
∑n=115n3=(215(15+1))2=(215×16)2=(15×8)2=(120)2=14400
For the sum of squares:
∑n=115n2=615(15+1)(2×15+1)=615×16×31
=6240×31=40×31=1240
Substitute these values back into the sum expression:
2(14400)−1240
=28800−1240
=27560
Common Mistakes & Tips
- Incorrectly applying summation limits: Ensure that when using telescoping sums or other summation techniques, the starting and ending indices are handled correctly.
- Arithmetic errors: Calculations involving large numbers, especially multiplication and subtraction, are prone to errors. Double-check your arithmetic.
- Forgetting the initial term: When deriving bn, make sure to account for b1 correctly, especially when dealing with sums starting from k=2.
Summary
The problem requires finding the general terms of two sequences, an and bn, defined by recurrence relations. The sequence an is identified as an arithmetic progression, leading to an=2n−1. The sequence bn is found using a telescoping sum approach on its recurrence relation, yielding bn=n2. Finally, the sum ∑n=115anbn is calculated by substituting the general terms and applying standard summation formulas for powers of natural numbers, resulting in a value of 27560.
The final answer is 27560.