Sequences & Series
Difficulty Level: 1 (Recognition — MCQ, Matching, True/False with justification) Time Limit: 20 minutes Total Marks: 30
Section A — Multiple Choice Questions (1 mark each)
Choose the correct option.
Q1. The th term of an AP with first term and common difference is: (a) (b) (c) (d)
Q2. The sum of the first natural numbers equals: (a) (b) (c) (d)
Q3. An infinite GP converges if and only if: (a) (b) (c) (d)
Q4. The sum of an infinite convergent GP with first term and ratio is: (a) (b) (c) (d)
Q5. If are in HP, then (the Harmonic Mean of and ) equals: (a) (b) (c) (d)
Q6. For two positive numbers, the correct inequality is: (a) (b) (c) (d)
Q7. The value of is: (a) (b) (c) (d)
Q8. The number of terms in the binomial expansion of is: (a) (b) (c) (d)
Q9. The general term in the expansion of is: (a) (b) (c) (d)
Q10. The relation between AM, GM, HM of two positive numbers is: (a) (b) (c) (d) always
Q11. A telescoping sum equals: (a) (b) (c) (d)
Q12. In mathematical induction, after verifying the base case, we must: (a) prove the statement for all directly (b) assume true and prove (c) assume and prove (d) check only and
Section B — Matching (1 mark each; total 5 marks)
Q13. Match each expression in Column I with its value/form in Column II.
| Column I | Column II |
|---|---|
| (i) | (P) |
| (ii) | (Q) |
| (iii) | (R) |
| (iv) Sum of terms of GP | (S) |
| (v) GM of and | (T) |
Section C — True / False WITH Justification (2 marks each; total 13 marks)
State True or False and give a one-line reason. 1 mark for verdict, 1 mark for justification.
Q14. The sequence is an arithmetic progression.
Q15. The infinite series has a finite sum.
Q16. In Pascal's triangle, the entry in row , position (both from 0) equals , and .
Q17. For a rational index, is a valid approximation for small .
Q18. For any two distinct positive reals, .
Q19. The middle term of is the 4th term.
Q20. Strong induction assumes the statement holds for all values from the base up to to prove it for .
Answer keyMark scheme & solutions
Section A (1 mark each)
Q1. (b) . From the base term , add exactly times to reach the th term.
Q2. (a) . Standard AP sum with : .
Q3. (b) . Only then does , making partial sums converge.
Q4. (a) . Limit of as .
Q5. (c) . HM is the reciprocal of the average of reciprocals.
Q6. (b) . Standard AM–GM–HM chain (equality iff numbers equal).
Q7. (c) . Standard formula.
Q8. (c) . Powers give terms.
Q9. (a) . General term with descending power of .
Q10. (a) . Since .
Q11. (a) . Telescoping: all middle terms cancel, leaving first minus last.
Q12. (b) Assume , prove — the inductive step.
Section B (1 mark each)
Q13.
- (i) → (Q):
- (ii) → (S):
- (iii) → (P):
- (iv) → (R): GP sum
- (v) → (T):
Section C (2 marks: 1 verdict + 1 reason)
Q14. FALSE. Ratios are constant () but differences are not constant; it is a GP, not an AP.
Q15. FALSE. It is a GP with , and , so partial sums diverge to ; no finite sum.
Q16. TRUE. Pascal entries are binomial coefficients and satisfy Pascal's rule .
Q17. TRUE. Binomial series for rational index: , valid ; leading terms give the stated approximation.
Q18. FALSE. For distinct positives strictly; equality holds only when the numbers are equal.
Q19. TRUE. For there are 7 terms; middle term is the th term.
Q20. TRUE. Strong induction uses the hypothesis to establish .
[
{"claim":"HM of a and c equals 2ac/(a+c)","code":"a,c=symbols('a c',positive=True); HM=2/(1/a+1/c); result = simplify(HM-2*a*c/(a+c))==0"},
{"claim":"GM^2 = AM*HM for two positives","code":"a,b=symbols('a b',positive=True); AM=(a+b)/2; HM=2*a*b/(a+b); GM2=a*b; result = simplify(GM2-AM*HM)==0"},
{"claim":"Telescoping sum equals 1-1/(n+1)","code":"k,n=symbols('k n',positive=True,integer=True); S=summation(1/k-1/(k+1),(k,1,n)); result = simplify(S-(1-1/(n+1)))==0"},
{"claim":"Sum of k^2 equals n(n+1)(2n+1)/6","code":"k,n=symbols('k n',positive=True,integer=True); S=summation(k**2,(k,1,n)); result = simplify(S-n*(n+1)*(2*n+1)/6)==0"}
]