Basic Exercises

Basic exercises to consolidate the core knowledge of arithmetic sequences, geometric sequences, and basic summation.

Arithmetic Sequences

Exercise 1

In the arithmetic sequence {an}\{a_n\}, a3=7a_3 = 7 and a7=15a_7 = 15. Find the first term a1a_1 and the common difference dd.

Reference Answer(2 个标签)
sequencebasic exercise

Solution:

From the general term formula of an arithmetic sequence: a3=a1+2d=7a_3 = a_1 + 2d = 7 a7=a1+6d=15a_7 = a_1 + 6d = 15

Subtracting the two equations: 4d=84d = 8, so d=2d = 2

Substituting into the first equation: a1=74=3a_1 = 7 - 4 = 3

Answer: a1=3a_1 = 3, d=2d = 2

Exercise 2

Let SnS_n be the sum of the first nn terms of the arithmetic sequence {an}\{a_n\}. If S5=25S_5 = 25 and S10=100S_{10} = 100, find S15S_{15}.

Reference Answer(2 个标签)
sequencebasic exercise

Solution:

Property of the sum of the first nn terms of an arithmetic sequence: S5,S10S5,S15S10S_5, S_{10} - S_5, S_{15} - S_{10} form an arithmetic sequence.

S5=25S_5 = 25, S10S5=75S_{10} - S_5 = 75

The common difference is 7525=5075 - 25 = 50

S15S10=75+50=125S_{15} - S_{10} = 75 + 50 = 125

S15=100+125=225S_{15} = 100 + 125 = 225

Answer: S15=225S_{15} = 225

Exercise 3

In the arithmetic sequence {an}\{a_n\}, a1+a5+a9=27a_1 + a_5 + a_9 = 27. Find a5a_5.

Reference Answer(2 个标签)
sequencebasic exercise

Solution:

By the property of arithmetic sequences: a1+a9=2a5a_1 + a_9 = 2a_5

a1+a5+a9=2a5+a5=3a5=27a_1 + a_5 + a_9 = 2a_5 + a_5 = 3a_5 = 27

a5=9a_5 = 9

Answer: a5=9a_5 = 9

Geometric Sequences

Exercise 4

In the geometric sequence {an}\{a_n\}, a2=6a_2 = 6 and a5=48a_5 = 48. Find the common ratio qq and the first term a1a_1.

Reference Answer(2 个标签)
sequencebasic exercise

Solution:

a5a2=q3=486=8\frac{a_5}{a_2} = q^3 = \frac{48}{6} = 8

q=2q = 2

a1=a2q=62=3a_1 = \frac{a_2}{q} = \frac{6}{2} = 3

Answer: q=2q = 2, a1=3a_1 = 3

Exercise 5

The sum of the first nn terms of the geometric sequence {an}\{a_n\} is Sn=2n1S_n = 2^n - 1. Find the general term formula ana_n.

Reference Answer(2 个标签)
sequencebasic exercise

Solution:

When n=1n = 1, a1=S1=1a_1 = S_1 = 1

When n2n \geq 2, an=SnSn1=(2n1)(2n11)=2n1a_n = S_n - S_{n-1} = (2^n - 1) - (2^{n-1} - 1) = 2^{n-1}

Verify n=1n = 1: a1=20=1a_1 = 2^0 = 1

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

Summation of Sequences

Exercise 6

Find the sum: 1+3+5+7++991 + 3 + 5 + 7 + \cdots + 99

Reference Answer(2 个标签)
sequencebasic exercise

Solution:

This is an arithmetic sequence with first term a1=1a_1 = 1, common difference d=2d = 2, and last term an=99a_n = 99.

Number of terms: n=9912+1=50n = \frac{99 - 1}{2} + 1 = 50

S50=50×(1+99)2=2500S_{50} = \frac{50 \times (1 + 99)}{2} = 2500

Answer: 2500

Exercise 7

Find the sum: 1+2+4+8++5121 + 2 + 4 + 8 + \cdots + 512

Reference Answer(2 个标签)
sequencebasic exercise

Solution:

This is a geometric sequence with first term a1=1a_1 = 1 and common ratio q=2q = 2.

512=29512 = 2^9, so there are 10 terms.

S10=1×(2101)21=1023S_{10} = \frac{1 \times (2^{10} - 1)}{2 - 1} = 1023

Answer: 1023

Exercise 8

Find the sum: 11×2+12×3+13×4++199×100\frac{1}{1 \times 2} + \frac{1}{2 \times 3} + \frac{1}{3 \times 4} + \cdots + \frac{1}{99 \times 100}

Reference Answer(2 个标签)
sequencebasic exercise

Solution:

Splitting terms: 1n(n+1)=1n1n+1\frac{1}{n(n+1)} = \frac{1}{n} - \frac{1}{n+1}

S=(112)+(1213)++(1991100)=11100=99100S = \left(1 - \frac{1}{2}\right) + \left(\frac{1}{2} - \frac{1}{3}\right) + \cdots + \left(\frac{1}{99} - \frac{1}{100}\right) = 1 - \frac{1}{100} = \frac{99}{100}

Answer: 99100\frac{99}{100}

General Term Formulas

Exercise 9

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

Reference Answer(2 个标签)
sequencebasic exercise

Solution:

Accumulation method: ana1=k=1n12k=2×(n1)n2=n(n1)a_n - a_1 = \sum_{k=1}^{n-1} 2k = 2 \times \frac{(n-1)n}{2} = n(n-1)

an=1+n2n=n2n+1a_n = 1 + n^2 - n = n^2 - n + 1

Answer: an=n2n+1a_n = n^2 - n + 1

Exercise 10

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

Reference Answer(2 个标签)
sequencebasic exercise

Solution:

This is a geometric sequence with q=2q = 2

an=2×2n1=2na_n = 2 \times 2^{n-1} = 2^n

Answer: an=2na_n = 2^n


Summary

The basic exercises cover:

  • ✅ Basic properties of arithmetic sequences
  • ✅ Basic properties of geometric sequences
  • ✅ Common summation methods
  • ✅ Simple recurrence relations

After completing these exercises, you can move on to the intermediate exercises!