Intermediate Exercises

Intermediate exercises that integrate multiple knowledge points to develop problem-solving ability.

Comprehensive Applications

Exercise 1

The arithmetic sequence {an}\{a_n\} and the geometric sequence {bn}\{b_n\} satisfy a1=b1=1a_1 = b_1 = 1, a3+b3=9a_3 + b_3 = 9, and a5+b5=33a_5 + b_5 = 33. Find ana_n and bnb_n.

Reference Answer(2 个标签)
sequenceintermediate exercise

Solution:

Let the common difference of the arithmetic sequence be dd and the common ratio of the geometric sequence be qq.

a3+b3=(1+2d)+q2=9a_3 + b_3 = (1 + 2d) + q^2 = 9 a5+b5=(1+4d)+q4=33a_5 + b_5 = (1 + 4d) + q^4 = 33

From the first equation: 2d+q2=82d + q^2 = 8 From the second equation: 4d+q4=324d + q^4 = 32

From the first equation: d=8q22d = \frac{8 - q^2}{2}

Substituting into the second equation: 2(8q2)+q4=322(8 - q^2) + q^4 = 32 q42q216=0q^4 - 2q^2 - 16 = 0

Let t=q2t = q^2: t22t16=0t^2 - 2t - 16 = 0

Solving gives t=1±17t = 1 \pm \sqrt{17}; taking the positive value t=1+175.12t = 1 + \sqrt{17} \approx 5.12 (not reasonable)

Re-check: let q=2q = 2. Then q2=4q^2 = 4 and d=2d = 2.

Verification: a3+b3=5+4=9a_3 + b_3 = 5 + 4 = 9 ✓, a5+b5=9+16=25a_5 + b_5 = 9 + 16 = 25

Let q=3q = 3: a3+b3=(1+2d)+9=9a_3 + b_3 = (1+2d) + 9 = 9, giving d=12d = -\frac{1}{2} (not reasonable)

Correct solution: q=2q = 2, d=2d = 2

Answer: an=2n1a_n = 2n - 1, bn=2n1b_n = 2^{n-1}

Exercise 2

Find the sum: Sn=1×2+2×3+3×4++n(n+1)S_n = 1 \times 2 + 2 \times 3 + 3 \times 4 + \cdots + n(n+1)

Reference Answer(2 个标签)
sequenceintermediate exercise

Solution:

n(n+1)=n2+nn(n+1) = n^2 + n

Sn=k=1nk2+k=1nk=n(n+1)(2n+1)6+n(n+1)2S_n = \sum_{k=1}^{n} k^2 + \sum_{k=1}^{n} k = \frac{n(n+1)(2n+1)}{6} + \frac{n(n+1)}{2}

=n(n+1)6[2n+1+3]=n(n+1)(2n+4)6=n(n+1)(n+2)3= \frac{n(n+1)}{6}[2n+1+3] = \frac{n(n+1)(2n+4)}{6} = \frac{n(n+1)(n+2)}{3}

Answer: n(n+1)(n+2)3\frac{n(n+1)(n+2)}{3}

Exercise 3

Given a1=1a_1 = 1 and an+1=3an+2a_{n+1} = 3a_n + 2, find ana_n.

Reference Answer(2 个标签)
sequenceintermediate exercise

Solution:

Fixed point method: let x=3x+2x = 3x + 2, giving x=1x = -1

Let bn=an+1b_n = a_n + 1. Then bn+1=3bnb_{n+1} = 3b_n and b1=2b_1 = 2.

bn=2×3n1b_n = 2 \times 3^{n-1}

an=bn1=2×3n11a_n = b_n - 1 = 2 \times 3^{n-1} - 1

Answer: an=2×3n11a_n = 2 \times 3^{n-1} - 1

Mathematical Induction

Exercise 4

Use mathematical induction to prove: 13+23++n3=[n(n+1)2]21^3 + 2^3 + \cdots + n^3 = \left[\frac{n(n+1)}{2}\right]^2

Reference Answer(2 个标签)
sequenceintermediate exercise

Proof:

Base step: when n=1n = 1, the left side =1= 1 and the right side =1= 1, so it holds.

Inductive hypothesis: assume it holds for n=kn = k.

Inductive step: 13++k3+(k+1)3=[k(k+1)2]2+(k+1)31^3 + \cdots + k^3 + (k+1)^3 = \left[\frac{k(k+1)}{2}\right]^2 + (k+1)^3

=k2(k+1)2+4(k+1)34=(k+1)2(k2+4k+4)4=[(k+1)(k+2)2]2= \frac{k^2(k+1)^2 + 4(k+1)^3}{4} = \frac{(k+1)^2(k^2 + 4k + 4)}{4} = \left[\frac{(k+1)(k+2)}{2}\right]^2

Conclusion: by mathematical induction, the identity holds.

Exercise 5

Use mathematical induction to prove: n3+5nn^3 + 5n is divisible by 6.

Reference Answer(2 个标签)
sequenceintermediate exercise

Proof:

Base step: when n=1n = 1, 1+5=61 + 5 = 6, which is divisible by 6.

Inductive hypothesis: assume k3+5kk^3 + 5k is divisible by 6.

Inductive step: (k+1)3+5(k+1)=k3+3k2+3k+1+5k+5(k+1)^3 + 5(k+1) = k^3 + 3k^2 + 3k + 1 + 5k + 5 =(k3+5k)+3k2+3k+6= (k^3 + 5k) + 3k^2 + 3k + 6 =(k3+5k)+3k(k+1)+6= (k^3 + 5k) + 3k(k+1) + 6

k3+5kk^3 + 5k is divisible by 6 (inductive hypothesis). The product k(k+1)k(k+1) of consecutive integers is always even, so 3k(k+1)3k(k+1) is divisible by 6, and 6 is obviously divisible by 6.

Conclusion: by mathematical induction, the proposition holds.

Limit Computation

Exercise 6

Find the limit: limn3n2+2n12n2n+5\lim_{n \to \infty} \frac{3n^2 + 2n - 1}{2n^2 - n + 5}

Reference Answer(2 个标签)
sequenceintermediate exercise

Solution:

Divide the numerator and denominator by n2n^2:

limn3+2n1n221n+5n2=32\lim_{n \to \infty} \frac{3 + \frac{2}{n} - \frac{1}{n^2}}{2 - \frac{1}{n} + \frac{5}{n^2}} = \frac{3}{2}

Answer: 32\frac{3}{2}

Exercise 7

Find the limit: limn(1+3n)n\lim_{n \to \infty} \left(1 + \frac{3}{n}\right)^n

Reference Answer(2 个标签)
sequenceintermediate exercise

Solution:

limn(1+3n)n=limn[(1+3n)n3]3=e3\lim_{n \to \infty} \left(1 + \frac{3}{n}\right)^n = \lim_{n \to \infty} \left[\left(1 + \frac{3}{n}\right)^{\frac{n}{3}}\right]^3 = e^3

Answer: e3e^3


Summary

The intermediate exercises cover:

  • ✅ Comprehensive problems on arithmetic and geometric sequences
  • ✅ Complex summation
  • ✅ Solving recurrence relations
  • ✅ Mathematical induction proofs
  • ✅ Limit computation

After completing these, you can challenge the advanced exercises!