This is a beta course, so its structure, chapters, and examples may continue to change.
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}, a3=7 and a7=15. Find the first term a1 and the common difference d.
Reference Answer(2 个标签)
sequencebasic exercise
Solution:
From the general term formula of an arithmetic sequence:
a3=a1+2d=7
a7=a1+6d=15
Subtracting the two equations: 4d=8, so d=2
Substituting into the first equation: a1=7−4=3
Answer: a1=3, d=2
Exercise 2
Let Sn be the sum of the first n terms of the arithmetic sequence {an}. If S5=25 and S10=100, find S15.
Reference Answer(2 个标签)
sequencebasic exercise
Solution:
Property of the sum of the first n terms of an arithmetic sequence: S5,S10−S5,S15−S10 form an arithmetic sequence.
S5=25, S10−S5=75
The common difference is 75−25=50
S15−S10=75+50=125
S15=100+125=225
Answer: S15=225
Exercise 3
In the arithmetic sequence {an}, a1+a5+a9=27. Find a5.
Reference Answer(2 个标签)
sequencebasic exercise
Solution:
By the property of arithmetic sequences: a1+a9=2a5
a1+a5+a9=2a5+a5=3a5=27
a5=9
Answer: a5=9
Geometric Sequences
Exercise 4
In the geometric sequence {an}, a2=6 and a5=48. Find the common ratio q and the first term a1.
Reference Answer(2 个标签)
sequencebasic exercise
Solution:
a2a5=q3=648=8
q=2
a1=qa2=26=3
Answer: q=2, a1=3
Exercise 5
The sum of the first n terms of the geometric sequence {an} is Sn=2n−1. Find the general term formula an.
Reference Answer(2 个标签)
sequencebasic exercise
Solution:
When n=1, a1=S1=1
When n≥2, an=Sn−Sn−1=(2n−1)−(2n−1−1)=2n−1
Verify n=1: a1=20=1 ✓
Answer: an=2n−1
Summation of Sequences
Exercise 6
Find the sum: 1+3+5+7+⋯+99
Reference Answer(2 个标签)
sequencebasic exercise
Solution:
This is an arithmetic sequence with first term a1=1, common difference d=2, and last term an=99.
Number of terms: n=299−1+1=50
S50=250×(1+99)=2500
Answer: 2500
Exercise 7
Find the sum: 1+2+4+8+⋯+512
Reference Answer(2 个标签)
sequencebasic exercise
Solution:
This is a geometric sequence with first term a1=1 and common ratio q=2.
512=29, so there are 10 terms.
S10=2−11×(210−1)=1023
Answer: 1023
Exercise 8
Find the sum: 1×21+2×31+3×41+⋯+99×1001
Reference Answer(2 个标签)
sequencebasic exercise
Solution:
Splitting terms: n(n+1)1=n1−n+11
S=(1−21)+(21−31)+⋯+(991−1001)=1−1001=10099
Answer: 10099
Exercise 9
Given a1=1 and an+1=an+2n, find an.
Reference Answer(2 个标签)
sequencebasic exercise
Solution:
Accumulation method:
an−a1=∑k=1n−12k=2×2(n−1)n=n(n−1)
an=1+n2−n=n2−n+1
Answer: an=n2−n+1
Exercise 10
Given a1=2 and an+1=2an, find an.
Reference Answer(2 个标签)
sequencebasic exercise
Solution:
This is a geometric sequence with q=2
an=2×2n−1=2n
Answer: an=2n
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!