StepWorking
01Given
Two arithmetic progressions:
S1=3,7,11,15,19,… with first term a1=3 and common difference d1=4.
S2=1,6,11,16,21,… with first term a2=1 and common difference d2=5.
02Goal
Find the 8th common term of S1 and S2.
03Approach
The terms common to two APs form a new AP whose first term is the first common term, and whose common difference D is the LCM of the common differences of the two APs, i.e., D=lcm(d1,d2). Then use Tn=A+(n−1)D with n=8.
04Execute
By inspecting both sequences, the first common term is A=11.
The common difference of the AP of common terms is D=lcm(4,5)=20.
The 8th common term is:
T8=A+(8−1)D=11+7×20=11+140=151
✓Verify
Check if 151 belongs to both APs:
For S1: 4151−3=4148=37, so 151 is the 38th term of S1.
For S2: 5151−1=5150=30, so 151 is the 31st term of S2.
Both are integers, confirming 151 is in both series.