SlideShare a Scribd company logo
1 of 14
Download to read offline
Arithmetic and
geometric progressions
mcTY-apgp-2009-1
This unit introduces sequences and series, and gives some simple examples of each. It also
explores particular types of sequence known as arithmetic progressions (APs) and geometric
progressions (GPs), and the corresponding series.
In order to master the techniques explained here it is vital that you undertake plenty of practice
exercises so that they become second nature.
After reading this text, and/or viewing the video tutorial on this topic, you should be able to:
β€’ recognise the difference between a sequence and a series;
β€’ recognise an arithmetic progression;
β€’ find the n-th term of an arithmetic progression;
β€’ find the sum of an arithmetic series;
β€’ recognise a geometric progression;
β€’ find the n-th term of a geometric progression;
β€’ find the sum of a geometric series;
β€’ find the sum to infinity of a geometric series with common ratio |r| < 1.
Contents
1. Sequences 2
2. Series 3
3. Arithmetic progressions 4
4. The sum of an arithmetic series 5
5. Geometric progressions 8
6. The sum of a geometric series 9
7. Convergence of geometric series 12
www.mathcentre.ac.uk 1 c mathcentre 2009
1. Sequences
What is a sequence? It is a set of numbers which are written in some particular order. For
example, take the numbers
1, 3, 5, 7, 9, . . . .
Here, we seem to have a rule. We have a sequence of odd numbers. To put this another way, we
start with the number 1, which is an odd number, and then each successive number is obtained
by adding 2 to give the next odd number.
Here is another sequence:
1, 4, 9, 16, 25, . . . .
This is the sequence of square numbers. And this sequence,
1, βˆ’1, 1, βˆ’1, 1, βˆ’1, . . . ,
is a sequence of numbers alternating between 1 and βˆ’1. In each case, the dots written at the
end indicate that we must consider the sequence as an infinite sequence, so that it goes on for
ever.
On the other hand, we can also have finite sequences. The numbers
1, 3, 5, 9
form a finite sequence containing just four numbers. The numbers
1, 4, 9, 16
also form a finite sequence. And so do these, the numbers
1, 2, 3, 4, 5, 6, . . . , n .
These are the numbers we use for counting, and we have included n of them. Here, the dots
indicate that we have not written all the numbers down explicitly. The n after the dots tells us
that this is a finite sequence, and that the last number is n.
Here is a sequence that you might recognise:
1, 1, 2, 3, 5, 8, . . . .
This is an infinite sequence where each term (from the third term onwards) is obtained by adding
together the two previous terms. This is called the Fibonacci sequence.
We often use an algebraic notation for sequences. We might call the first term in a sequence
u1, the second term u2, and so on. With this same notation, we would write un to represent the
n-th term in the sequence. So
u1, u2, u3, . . . , un
would represent a finite sequence containing n terms. As another example, we could use this
notation to represent the rule for the Fibonacci sequence. We would write
un = unβˆ’1 + unβˆ’2
to say that each term was the sum of the two preceding terms.
www.mathcentre.ac.uk 2 c mathcentre 2009
Key Point
A sequence is a set of numbers written in a particular order. We sometimes write u1 for the
first term of the sequence, u2 for the second term, and so on. We write the n-th term as un.
Exercise 1
(a) A sequence is given by the formula un = 3n + 5, for n = 1, 2, 3, . . .. Write down the
first five terms of this sequence.
(b) A sequence is given by un = 1/n2
, for n = 1, 2, 3, . . .. Write down the first four terms
of this sequence. What is the 10th term?
(c) Write down the first eight terms of the Fibonacci sequence defined by un = unβˆ’1 +unβˆ’2,
when u1 = 1, and u2 = 1.
(d) Write down the first five terms of the sequence given by un = (βˆ’1)n+1
/n.
2. Series
A series is something we obtain from a sequence by adding all the terms together.
For example, suppose we have the sequence
u1, u2, u3, . . . , un .
The series we obtain from this is
u1 + u2 + u3 + . . . + un ,
and we write Sn for the sum of these n terms. So although the ideas of a β€˜sequence’ and a
β€˜series’ are related, there is an important distinction between them.
For example, let us consider the sequence of numbers
1, 2, 3, 4, 5, 6, . . . , n .
Then S1 = 1, as it is the sum of just the first term on its own. The sum of the first two terms
is S2 = 1 + 2 = 3. Continuing, we get
S3 = 1 + 2 + 3 = 6 ,
S4 = 1 + 2 + 3 + 4 = 10 ,
and so on.
www.mathcentre.ac.uk 3 c mathcentre 2009
Key Point
A series is a sum of the terms in a sequence. If there are n terms in the sequence and we
evaluate the sum then we often write Sn for the result, so that
Sn = u1 + u2 + u3 + . . . + un .
Exercise 2
Write down S1, S2, . . . , Sn for the sequences
(a) 1, 3, 5, 7, 9, 11;
(b) 4, 2, 0, βˆ’2, βˆ’4.
3. Arithmetic progressions
Consider these two common sequences
1, 3, 5, 7, . . .
and
0, 10, 20, 30, 40, . . . .
It is easy to see how these sequences are formed. They each start with a particular first term, and
then to get successive terms we just add a fixed value to the previous term. In the first sequence
we add 2 to get the next term, and in the second sequence we add 10. So the difference between
consecutive terms in each sequence is a constant. We could also subtract a constant instead,
because that is just the same as adding a negative constant. For example, in the sequence
8, 5, 2, βˆ’1, βˆ’4, . . .
the difference between consecutive terms is βˆ’3. Any sequence with this property is called an
arithmetic progression, or AP for short.
We can use algebraic notation to represent an arithmetic progression. We shall let a stand for
the first term of the sequence, and let d stand for the common difference between successive
terms. For example, our first sequence could be written as
1, 3, 5, 7, 9, . . .
1, 1 + 2, 1 + 2 Γ— 2, 1 + 3 Γ— 2, 1 + 4 Γ— 2, . . . ,
and this can be written as
a, a + d, a + 2d, a + 3d, a + 4d, . . .
where a = 1 is the first term, and d = 2 is the common difference. If we wanted to write down
the n-th term, we would have
a + (n βˆ’ 1)d ,
www.mathcentre.ac.uk 4 c mathcentre 2009
because if there are n terms in the sequence there must be (n βˆ’ 1) common differences between
successive terms, so that we must add on (n βˆ’ 1)d to the starting value a. We also sometimes
write β„“ for the last term of a finite sequence, and so in this case we would have
β„“ = a + (n βˆ’ 1)d .
Key Point
An arithmetic progression, or AP, is a sequence where each new term after the first is obtained
by adding a constant d, called the common difference, to the preceding term. If the first term
of the sequence is a then the arithmetic progression is
a, a + d, a + 2d, a + 3d, . . .
where the n-th term is a + (n βˆ’ 1)d.
Exercise 3
(a) Write down the first five terms of the AP with first term 8 and common difference 7.
(b) Write down the first five terms of the AP with first term 2 and common difference βˆ’5.
(c) What is the common difference of the AP 11, βˆ’1, βˆ’13, βˆ’25, . . . ?
(d) Find the 17th term of the arithmetic progression with first term 5 and common differ-
ence 2.
(e) Write down the 10th and 19th terms of the APs
(i) 8, 11, 14, . . .,
(ii) 8, 5, 2 . . ..
(f) An AP is given by k, 2k/3, k/3, 0, . . ..
(i) Find the sixth term.
(ii) Find the n th term.
(iii) If the 20th term is equal to 15, find k.
4. The sum of an arithmetic series
Sometimes we want to add the terms of a sequence. What would we get if we wanted to add
the first n terms of an arithmetic progression? We would get
Sn = a + (a + d) + (a + 2d) + . . . + (β„“ βˆ’ 2d) + (β„“ βˆ’ d) + β„“ .
Now this is now a series, as we have added together the n terms of a sequence. This is an
arithmetic series, and we can find its sum by using a trick. Let us write the series down again,
but this time we shall write it down with the terms in reverse order. We get
Sn = β„“ + (β„“ βˆ’ d) + (β„“ βˆ’ 2d) + . . . + (a + 2d) + (a + d) + a .
www.mathcentre.ac.uk 5 c mathcentre 2009
We are now going to add these two series together. On the left-hand side, we just get 2Sn. But
on the right-hand side, we are going to add the terms in the two series so that each term in the
first series will be added to the term vertically below it in the second series. We get
2Sn = (a + β„“) + (a + β„“) + (a + β„“) + . . . + (a + β„“) + (a + β„“) + (a + β„“) ,
and on the right-hand side there are n copies of (a + β„“) so we get
2Sn = n(a + β„“) .
But of course we want Sn rather than 2Sn, and so we divide by 2 to get
Sn = 1
2
n(a + β„“) .
We have found the sum of an arithmetic progression in terms of its first and last terms, a and β„“,
and the number of terms n.
We can also find an expression for the sum in terms of the a, n and the common difference d.
To do this, we just substitute our formula for β„“ into our formula for Sn. From
β„“ = a + (n βˆ’ 1)d , Sn = 1
2
n(a + β„“)
we obtain
Sn = 1
2
n(a + a + (n βˆ’ 1)d)
= 1
2
n(2a + (n βˆ’ 1)d) .
Key Point
The sum of the terms of an arithmetic progression gives an arithmetic series. If the starting
value is a and the common difference is d then the sum of the first n terms is
Sn = 1
2
n(2a + (n βˆ’ 1)d) .
If we know the value of the last term β„“ instead of the common difference d then we can write
the sum as
Sn = 1
2
n(a + β„“) .
Example
Find the sum of the first 50 terms of the sequence
1, 3, 5, 7, 9, . . . .
www.mathcentre.ac.uk 6 c mathcentre 2009
Solution
This is an arithmetic progression, and we can write down
a = 1 , d = 2 , n = 50 .
We now use the formula, so that
Sn = 1
2
n(2a + (n βˆ’ 1)d)
S50 = 1
2
Γ— 50 Γ— (2 Γ— 1 + (50 βˆ’ 1) Γ— 2)
= 25 Γ— (2 + 49 Γ— 2)
= 25 Γ— (2 + 98)
= 2500 .
Example
Find the sum of the series
1 + 3Β·5 + 6 + 8Β·5 + . . . + 101 .
Solution
This is an arithmetic series, because the difference between the terms is a constant value, 2Β·5.
We also know that the first term is 1, and the last term is 101. But we do not know how many
terms are in the series. So we will need to use the formula for the last term of an arithmetic
progression,
β„“ = a + (n βˆ’ 1)d
to give us
101 = 1 + (n βˆ’ 1) Γ— 2Β·5 .
Now this is just an equation for n, the number of terms in the series, and we can solve it. If we
subtract 1 from each side we get
100 = (n βˆ’ 1) Γ— 2Β·5
and then dividing both sides by 2Β·5 gives us
40 = n βˆ’ 1
so that n = 41. Now we can use the formula for the sum of an arithmetic progression, in the
version using β„“, to give us
Sn = 1
2
n(a + β„“)
S41 = 1
2
Γ— 41 Γ— (1 + 101)
= 1
2
Γ— 41 Γ— 102
= 41 Γ— 51
= 2091 .
www.mathcentre.ac.uk 7 c mathcentre 2009
Example
An arithmetic progression has 3 as its first term. Also, the sum of the first 8 terms is twice the
sum of the first 5 terms. Find the common difference.
Solution
We are given that a = 3. We are also given some information about the sums S8 and S5, and
we want to find the common difference. So we shall use the formula
Sn = 1
2
n(2a + (n βˆ’ 1)d)
for the sum of the first n terms. This tells us that
S8 = 1
2
Γ— 8 Γ— (6 + 7d) .
and that
S5 = 1
2
Γ— 5 Γ— (6 + 4d)
So, using the given fact that S8 = 2S5, we see that
1
2
Γ— 8 Γ— (6 + 7d) = 2 Γ— 1
2
Γ— 5 Γ— (6 + 4d)
4 Γ— (6 + 7d) = 5 Γ— (6 + 4d)
24 + 28d = 30 + 20d
8d = 6
d = 3
4
.
Exercise 4
(a) Find the sum of the first 23 terms of the AP 4, βˆ’3, βˆ’10, . . ..
(b) An arithmetic series has first term 4 and common difference 1
2
. Find
(i) the sum of the first 20 terms,
(ii) the sum of the first 100 terms.
(c) Find the sum of the arithmetic series with first term 1, common difference 3, and last
term 100.
(d) The sum of the first 20 terms of an arithmetic series is identical to the sum of the first
22 terms. If the common difference is βˆ’2, find the first term.
5. Geometric progressions
We shall now move on to the other type of sequence we want to explore.
Consider the sequence
2, 6, 18, 54, . . . .
Here, each term in the sequence is 3 times the previous term. And in the sequence
1, βˆ’2, 4, βˆ’8, . . . ,
each term is βˆ’2 times the previous term. Sequences such as these are called geometric progres-
sions, or GPs for short.
www.mathcentre.ac.uk 8 c mathcentre 2009
Let us write down a general geometric progression, using algebra. We shall take a to be the first
term, as we did with arithmetic progressions. But here, there is no common difference. Instead
there is a common ratio, as the ratio of successive terms is always constant. So we shall let r be
this common ratio. With this notation, the general geometric progression can be expressed as
a, ar, ar2
, ar3
, . . . .
So the n-th can be calculated quite easily. It is arnβˆ’1
, where the power (n βˆ’ 1) is always one less
than the position n of the term in the sequence. In our first example, we had a = 2 and r = 3,
so we could write the first sequence as
2, 2 Γ— 3, 2 Γ— 32
, 2 Γ— 33
, . . . .
In our second example, a = 1 and r = βˆ’2, so that we could write it as
1, 1 Γ— (βˆ’2), 1 Γ— (βˆ’2)2
, 1 Γ— (βˆ’2)3
, . . . .
Key Point
A geometric progression, or GP, is a sequence where each new term after the first is obtained
by multiplying the preceding term by a constant r, called the common ratio. If the first term of
the sequence is a then the geometric progression is
a, ar, ar2
, ar3
, . . .
where the n-th term is arnβˆ’1
.
Exercise 5
(a) Write down the first five terms of the geometric progression which has first term 1 and
common ratio 1
2
.
(b) Find the 10th and 20th terms of the GP with first term 3 and common ratio 2.
(c) Find the 7th term of the GP 2, βˆ’6, 18, . . .,
6. The sum of a geometric series
Suppose that we want to find the sum of the first n terms of a geometric progression. What we
get is
Sn = a + ar + ar2
+ ar3
+ . . . + arnβˆ’1
,
and this is called a geometric series. Now the trick here to find the sum is to multiply by r and
then subtract:
Sn = a + ar + ar2
+ ar3
+ . . . + arnβˆ’1
rSn = ar + ar2
+ ar3
+ . . . + arnβˆ’1
+ arn
Sn βˆ’ rSn = a βˆ’ arn
www.mathcentre.ac.uk 9 c mathcentre 2009
so that
Sn(1 βˆ’ r) = a(1 βˆ’ rn
) .
Now divide by 1 βˆ’ r (as long as r 6= 1) to give
Sn =
a(1 βˆ’ rn
)
1 βˆ’ r
.
Key Point
The sum of the terms of a geometric progression gives a geometric series. If the starting value
is a and the common ratio is r then the sum of the first n terms is
Sn =
a(1 βˆ’ rn
)
1 βˆ’ r
provided that r 6= 1.
Example
Find the sum of the geometric series
2 + 6 + 18 + 54 + . . .
where there are 6 terms in the series.
Solution
For this series, we have a = 2, r = 3 and n = 6. So
Sn =
a(1 βˆ’ rn
)
1 βˆ’ r
S6 =
2(1 βˆ’ 36
)
1 βˆ’ 3
=
2(1 βˆ’ 729)
βˆ’2
= βˆ’(βˆ’728)
= 728 .
Example
Find the sum of the geometric series
8 βˆ’ 4 + 2 βˆ’ 1 + . . .
where there are 5 terms in the series.
www.mathcentre.ac.uk 10 c mathcentre 2009
Solution
For this series, we have a = 8, r = βˆ’1
2
and n = 5. So
Sn =
a(1 βˆ’ rn
)
1 βˆ’ r
S5 =
8(1 βˆ’ βˆ’1
2
5
)
1 βˆ’ βˆ’1
2

=
8(1 βˆ’ βˆ’ 1
32

)
3
2
=
2 Γ— 8 Γ— 33
32
3
= 11
2
= 51
2
.
Example
How many terms are there in the geometric progression
2, 4, 8, . . . , 128 ?
Solution
In this sequence a = 2 and r = 2. We also know that the n-th term is 128. But the formula for
the n-th term is arnβˆ’1
. So
128 = 2 Γ— 2nβˆ’1
64 = 2nβˆ’1
26
= 2nβˆ’1
6 = n βˆ’ 1
n = 7 .
So there are 7 terms in this geometric progression.
Example
How many terms in the geometric progression
1, 1Β·1, 1Β·21, 1Β·331, . . .
will be needed so that the sum of the first n terms is greater than 20?
Solution
The sequence is a geometric progression with a = 1 and r = 1Β·1. We want to find the smallest
value of n such that Sn  20. Now
Sn =
a(1 βˆ’ rn
)
1 βˆ’ r
,
www.mathcentre.ac.uk 11 c mathcentre 2009
so
1 Γ— (1 βˆ’ 1Β·1n
)
1 βˆ’ 1Β·1
 20
1 βˆ’ 1Β·1n
βˆ’0Β·1
 20
(1Β·1n
βˆ’ 1) Γ— 10  20
1Β·1n
βˆ’ 1  2
1Β·1n
 3 .
If we now take logarithms of both sides, we get
n ln 1Β·1  ln 3
and as ln 1Β·1  0 we obtain
n  ln 3/ ln 1Β·1 = 11.5267 . . .
and therefore the smallest whole number value of n is 12.
Exercise 6
(a) Find the sum of the first five terms of the GP with first term 3 and common ratio 2.
(b) Find the sum of the first 20 terms of the GP with first term 3 and common ratio 1.5.
(c) The sum of the first 3 terms of a geometric series is 37
8
. The sum of the first six terms
is 3367
512
. Find the first term and common ratio.
(d) How many terms in the GP 4, 3.6, 3.24, . . . are needed so that the sum exceeds 35?
7. Convergence of geometric series
Consider the geometric progression
1, 1
2
, 1
4
, 1
8
, 1
16
, . . . .
We have a = 1 and r = 1
2
, and so we can calculate some sums. We get
S1 = 1
S2 = 1 + 1
2
= 3
2
S3 = 1 + 1
2
+ 1
4
= 7
4
S4 = 1 + 1
2
+ 1
4
+ 1
8
= 15
8
.
.
.
and there seems to be a pattern because
1 = 2 βˆ’ 1
3
2
= 2 βˆ’ 1
2
7
4
= 2 βˆ’ 1
4
15
8
= 2 βˆ’ 1
8
.
www.mathcentre.ac.uk 12 c mathcentre 2009
In each case, we subtract a small quantity from 2, and as we take successive sums the quantity
gets smaller and smaller. If we were able to add β€˜infinitely many’ terms, then the answer β€˜ought
to be’ 2 β€” or as near as we want to get to 2.
Let us see if we can explain this by using some algebra. We know that
Sn =
a(1 βˆ’ rn
)
1 βˆ’ r
,
and we want to examine this formula in the case of our particular example where r = 1
2
. Now
the formula contains the term rn
and, as βˆ’1  r  1, this term will get closer and closer to
zero as n gets larger and larger. So, if βˆ’1  r  1, we can say that the β€˜sum to infinity’ of a
geometric series is
S∞ =
a
1 βˆ’ r
,
where we have omitted the term rn
. We say that this is the limit of the sums Sn as n β€˜tends to
infinity’. You will find more details of this concept in another unit.
Example Find the sum to infinity of the geometric progression
1, 1
3
, 1
9
, 1
27
, . . . .
Solution For this geometric progression we have a = 1 and r = 1
3
. As βˆ’1  r  1 we can use
the formula, so that
S∞ =
1
1 βˆ’ 1
3
=
1
2
3
= 3
2
.
Key Point
The sum to infinity of a geometric progression with starting value a and common ratio r is given
by
S∞ =
a
1 βˆ’ r
where βˆ’1  r  1.
Exercise 7
(a) Find the sum to infinity of the GP with first term 3 and common ratio 1
2
.
(b) The sum to infinity of a GP is four times the first term. Find the common ratio.
(c) The sum to infinity of a GP is twice the sum of the first two terms. Find possible values
of the common ratio.
www.mathcentre.ac.uk 13 c mathcentre 2009
Answers
1.
(a) 8, 11, 14, 17, 20
(b) 1, 1
4
, 1
9
, 1
16
; tenth term is 1
100
(c) 1, 1, 2, 3, 5, 8, 13, 21
(d) 1, βˆ’1
2
, 1
3
, βˆ’1
4
, 1
5
2.
(a) 1, 4, 9, 16, 25, 36
(b) 4, 6, 6, 4, 0
3.
(a) 8, 15, 22, 29, 36
(b) 2, βˆ’3, βˆ’8, βˆ’13, βˆ’18
(c) βˆ’12
(d) 37
(e) (i) 35, 62 (ii) βˆ’19, βˆ’46
(f) (i) βˆ’2k/3 (ii) k(4 βˆ’ n)/3 (iii) βˆ’45
16
4.
(a) βˆ’1679 (b) (i) 175, (ii) 2875 (c) 1717 (d) 41
5.
(a) 1, 1
2
, 1
4
, 1
8
, 1
16
(b) 1536, 1,572,864 (c) 1458
6.
(a) 93 (b) 19,946 (c) 2, 3
4
(d) 20 terms
7.
(a) 6 (b) 3
4
(c) Β± 1/
√
2
www.mathcentre.ac.uk 14 c mathcentre 2009

More Related Content

Similar to Arithmetic And Geometric Progressions

Sequences and Series (S&S GAME) - Barisan dan Deret.pdf
Sequences and Series (S&S GAME) - Barisan dan Deret.pdfSequences and Series (S&S GAME) - Barisan dan Deret.pdf
Sequences and Series (S&S GAME) - Barisan dan Deret.pdfDiah Lutfiana Dewi
Β 
6.sequences and series Further Mathematics Zimbabwe Zimsec Cambridge
6.sequences and series   Further Mathematics Zimbabwe Zimsec Cambridge6.sequences and series   Further Mathematics Zimbabwe Zimsec Cambridge
6.sequences and series Further Mathematics Zimbabwe Zimsec Cambridgealproelearning
Β 
(677528443) neethu text (2)
(677528443) neethu text (2)(677528443) neethu text (2)
(677528443) neethu text (2)neethumaths
Β 
Arithmetic progression
Arithmetic progressionArithmetic progression
Arithmetic progressionlashika madaan
Β 
Grade 10 Math Module 1 searching for patterns, sequence and series
Grade 10 Math Module 1   searching for patterns, sequence and seriesGrade 10 Math Module 1   searching for patterns, sequence and series
Grade 10 Math Module 1 searching for patterns, sequence and seriesJocel Sagario
Β 
Sequences
SequencesSequences
Sequencesvisakh222
Β 
Arithmetic Sequences and Series-Boger.ppt
Arithmetic Sequences and Series-Boger.pptArithmetic Sequences and Series-Boger.ppt
Arithmetic Sequences and Series-Boger.pptGIDEONPAUL13
Β 
Arithmetic Sequences and Series-Boger.ppt
Arithmetic Sequences and Series-Boger.pptArithmetic Sequences and Series-Boger.ppt
Arithmetic Sequences and Series-Boger.pptJosephMuez2
Β 
Arithmetic Sequences and Series-Boger.ppt
Arithmetic Sequences and Series-Boger.pptArithmetic Sequences and Series-Boger.ppt
Arithmetic Sequences and Series-Boger.pptreboy_arroyo
Β 
Arithmetic Sequences and Series-Boger.ppt
Arithmetic Sequences and Series-Boger.pptArithmetic Sequences and Series-Boger.ppt
Arithmetic Sequences and Series-Boger.pptAngelle Pantig
Β 
10-Sequences and summation.pptx
10-Sequences and summation.pptx10-Sequences and summation.pptx
10-Sequences and summation.pptxjaffarbikat
Β 
Arithmetic and geometric mean
Arithmetic and geometric meanArithmetic and geometric mean
Arithmetic and geometric meanRekhaChoudhary24
Β 
Generating Patterns and arithmetic sequence.pptx
Generating Patterns and arithmetic sequence.pptxGenerating Patterns and arithmetic sequence.pptx
Generating Patterns and arithmetic sequence.pptxRenoLope1
Β 
Presentation4
Presentation4Presentation4
Presentation4VocaloidEX
Β 
Sequence and series
Sequence and seriesSequence and series
Sequence and seriesKAZEMBETVOnline
Β 
Arithmetic Sequence and Arithmetic Series
Arithmetic Sequence and Arithmetic SeriesArithmetic Sequence and Arithmetic Series
Arithmetic Sequence and Arithmetic SeriesJoey Valdriz
Β 

Similar to Arithmetic And Geometric Progressions (20)

Per5 sequences
Per5 sequencesPer5 sequences
Per5 sequences
Β 
Sequences and Series (S&S GAME) - Barisan dan Deret.pdf
Sequences and Series (S&S GAME) - Barisan dan Deret.pdfSequences and Series (S&S GAME) - Barisan dan Deret.pdf
Sequences and Series (S&S GAME) - Barisan dan Deret.pdf
Β 
6.sequences and series Further Mathematics Zimbabwe Zimsec Cambridge
6.sequences and series   Further Mathematics Zimbabwe Zimsec Cambridge6.sequences and series   Further Mathematics Zimbabwe Zimsec Cambridge
6.sequences and series Further Mathematics Zimbabwe Zimsec Cambridge
Β 
(677528443) neethu text (2)
(677528443) neethu text (2)(677528443) neethu text (2)
(677528443) neethu text (2)
Β 
Arithmetic progression
Arithmetic progressionArithmetic progression
Arithmetic progression
Β 
Task 4
Task 4Task 4
Task 4
Β 
Grade 10 Math Module 1 searching for patterns, sequence and series
Grade 10 Math Module 1   searching for patterns, sequence and seriesGrade 10 Math Module 1   searching for patterns, sequence and series
Grade 10 Math Module 1 searching for patterns, sequence and series
Β 
Sequences
SequencesSequences
Sequences
Β 
Arithmetic Sequences and Series-Boger.ppt
Arithmetic Sequences and Series-Boger.pptArithmetic Sequences and Series-Boger.ppt
Arithmetic Sequences and Series-Boger.ppt
Β 
Arithmetic Sequences and Series-Boger.ppt
Arithmetic Sequences and Series-Boger.pptArithmetic Sequences and Series-Boger.ppt
Arithmetic Sequences and Series-Boger.ppt
Β 
Arithmetic Sequences and Series-Boger.ppt
Arithmetic Sequences and Series-Boger.pptArithmetic Sequences and Series-Boger.ppt
Arithmetic Sequences and Series-Boger.ppt
Β 
Arithmetic Sequences and Series-Boger.ppt
Arithmetic Sequences and Series-Boger.pptArithmetic Sequences and Series-Boger.ppt
Arithmetic Sequences and Series-Boger.ppt
Β 
Sequence of DM
Sequence of  DM Sequence of  DM
Sequence of DM
Β 
10-Sequences and summation.pptx
10-Sequences and summation.pptx10-Sequences and summation.pptx
10-Sequences and summation.pptx
Β 
Arithmetic and geometric mean
Arithmetic and geometric meanArithmetic and geometric mean
Arithmetic and geometric mean
Β 
Generating Patterns and arithmetic sequence.pptx
Generating Patterns and arithmetic sequence.pptxGenerating Patterns and arithmetic sequence.pptx
Generating Patterns and arithmetic sequence.pptx
Β 
Presentation4
Presentation4Presentation4
Presentation4
Β 
Sequence and series
Sequence and seriesSequence and series
Sequence and series
Β 
Arithmetic Sequence and Arithmetic Series
Arithmetic Sequence and Arithmetic SeriesArithmetic Sequence and Arithmetic Series
Arithmetic Sequence and Arithmetic Series
Β 
Maths project work - Arithmetic Sequences
Maths project work - Arithmetic SequencesMaths project work - Arithmetic Sequences
Maths project work - Arithmetic Sequences
Β 

More from Finni Rice

Against Gun Control Essay. Persuasive essay on anti gun control - mfacourses8...
Against Gun Control Essay. Persuasive essay on anti gun control - mfacourses8...Against Gun Control Essay. Persuasive essay on anti gun control - mfacourses8...
Against Gun Control Essay. Persuasive essay on anti gun control - mfacourses8...Finni Rice
Β 
Essay On Assessment For Learning. PDF Reflective Essay on Assessment
Essay On Assessment For Learning. PDF Reflective Essay on AssessmentEssay On Assessment For Learning. PDF Reflective Essay on Assessment
Essay On Assessment For Learning. PDF Reflective Essay on AssessmentFinni Rice
Β 
Essay Outline Online. Outline example essay. Argumentative Essay Outline Wit...
Essay Outline Online.  Outline example essay. Argumentative Essay Outline Wit...Essay Outline Online.  Outline example essay. Argumentative Essay Outline Wit...
Essay Outline Online. Outline example essay. Argumentative Essay Outline Wit...Finni Rice
Β 
Maslow Hierarchy Of Needs Essay. MaslowsHierarchyOfNeeds Maslows hierarchy o...
Maslow Hierarchy Of Needs Essay. MaslowsHierarchyOfNeeds  Maslows hierarchy o...Maslow Hierarchy Of Needs Essay. MaslowsHierarchyOfNeeds  Maslows hierarchy o...
Maslow Hierarchy Of Needs Essay. MaslowsHierarchyOfNeeds Maslows hierarchy o...Finni Rice
Β 
Homeschooling Essay. Pros And Cons Of Homeschooling
Homeschooling Essay. Pros And Cons Of HomeschoolingHomeschooling Essay. Pros And Cons Of Homeschooling
Homeschooling Essay. Pros And Cons Of HomeschoolingFinni Rice
Β 
Pay For Someone To Write A Pape. Online assignment writing service.
Pay For Someone To Write A Pape. Online assignment writing service.Pay For Someone To Write A Pape. Online assignment writing service.
Pay For Someone To Write A Pape. Online assignment writing service.Finni Rice
Β 
2023-24 University Of Maryland Supplemental Es
2023-24 University Of Maryland Supplemental Es2023-24 University Of Maryland Supplemental Es
2023-24 University Of Maryland Supplemental EsFinni Rice
Β 
Recommendation Letter Meaning In Marathi Wallp
Recommendation Letter Meaning In Marathi WallpRecommendation Letter Meaning In Marathi Wallp
Recommendation Letter Meaning In Marathi WallpFinni Rice
Β 
Cheap Term Paper Help Cheap Term Papers Info,
Cheap Term Paper Help Cheap Term Papers Info,Cheap Term Paper Help Cheap Term Papers Info,
Cheap Term Paper Help Cheap Term Papers Info,Finni Rice
Β 
Pin By Augustus Bessah On English Teacher Essay Wri
Pin By Augustus Bessah On English Teacher Essay WriPin By Augustus Bessah On English Teacher Essay Wri
Pin By Augustus Bessah On English Teacher Essay WriFinni Rice
Β 
How To Write An Argumentative Essay - Ch
How To Write An Argumentative Essay - ChHow To Write An Argumentative Essay - Ch
How To Write An Argumentative Essay - ChFinni Rice
Β 
Lined Handwriting Paper Printable. Online assignment writing service.
Lined Handwriting Paper Printable. Online assignment writing service.Lined Handwriting Paper Printable. Online assignment writing service.
Lined Handwriting Paper Printable. Online assignment writing service.Finni Rice
Β 
Check Out Our Personal Stateme. Online assignment writing service.
Check Out Our Personal Stateme. Online assignment writing service.Check Out Our Personal Stateme. Online assignment writing service.
Check Out Our Personal Stateme. Online assignment writing service.Finni Rice
Β 
Academic Writing Companies. TOP. Online assignment writing service.
Academic Writing Companies. TOP. Online assignment writing service.Academic Writing Companies. TOP. Online assignment writing service.
Academic Writing Companies. TOP. Online assignment writing service.Finni Rice
Β 
The Journey, Creative Writing - GCSE English - Marked B
The Journey, Creative Writing - GCSE English - Marked BThe Journey, Creative Writing - GCSE English - Marked B
The Journey, Creative Writing - GCSE English - Marked BFinni Rice
Β 
Writing Workshop Anchor Charts - Distance Learnin
Writing Workshop Anchor Charts - Distance LearninWriting Workshop Anchor Charts - Distance Learnin
Writing Workshop Anchor Charts - Distance LearninFinni Rice
Β 
Back To School Writing Pages - My Teaching Libra
Back To School Writing Pages - My Teaching LibraBack To School Writing Pages - My Teaching Libra
Back To School Writing Pages - My Teaching LibraFinni Rice
Β 
Problem Of Global Warming Argument. Online assignment writing service.
Problem Of Global Warming Argument. Online assignment writing service.Problem Of Global Warming Argument. Online assignment writing service.
Problem Of Global Warming Argument. Online assignment writing service.Finni Rice
Β 
Plain Premium Writing Paper Packs Envelopes
Plain Premium Writing Paper Packs EnvelopesPlain Premium Writing Paper Packs Envelopes
Plain Premium Writing Paper Packs EnvelopesFinni Rice
Β 
Essay Plan Essay Plan, Study Notes, College Esse
Essay Plan Essay Plan, Study Notes, College EsseEssay Plan Essay Plan, Study Notes, College Esse
Essay Plan Essay Plan, Study Notes, College EsseFinni Rice
Β 

More from Finni Rice (20)

Against Gun Control Essay. Persuasive essay on anti gun control - mfacourses8...
Against Gun Control Essay. Persuasive essay on anti gun control - mfacourses8...Against Gun Control Essay. Persuasive essay on anti gun control - mfacourses8...
Against Gun Control Essay. Persuasive essay on anti gun control - mfacourses8...
Β 
Essay On Assessment For Learning. PDF Reflective Essay on Assessment
Essay On Assessment For Learning. PDF Reflective Essay on AssessmentEssay On Assessment For Learning. PDF Reflective Essay on Assessment
Essay On Assessment For Learning. PDF Reflective Essay on Assessment
Β 
Essay Outline Online. Outline example essay. Argumentative Essay Outline Wit...
Essay Outline Online.  Outline example essay. Argumentative Essay Outline Wit...Essay Outline Online.  Outline example essay. Argumentative Essay Outline Wit...
Essay Outline Online. Outline example essay. Argumentative Essay Outline Wit...
Β 
Maslow Hierarchy Of Needs Essay. MaslowsHierarchyOfNeeds Maslows hierarchy o...
Maslow Hierarchy Of Needs Essay. MaslowsHierarchyOfNeeds  Maslows hierarchy o...Maslow Hierarchy Of Needs Essay. MaslowsHierarchyOfNeeds  Maslows hierarchy o...
Maslow Hierarchy Of Needs Essay. MaslowsHierarchyOfNeeds Maslows hierarchy o...
Β 
Homeschooling Essay. Pros And Cons Of Homeschooling
Homeschooling Essay. Pros And Cons Of HomeschoolingHomeschooling Essay. Pros And Cons Of Homeschooling
Homeschooling Essay. Pros And Cons Of Homeschooling
Β 
Pay For Someone To Write A Pape. Online assignment writing service.
Pay For Someone To Write A Pape. Online assignment writing service.Pay For Someone To Write A Pape. Online assignment writing service.
Pay For Someone To Write A Pape. Online assignment writing service.
Β 
2023-24 University Of Maryland Supplemental Es
2023-24 University Of Maryland Supplemental Es2023-24 University Of Maryland Supplemental Es
2023-24 University Of Maryland Supplemental Es
Β 
Recommendation Letter Meaning In Marathi Wallp
Recommendation Letter Meaning In Marathi WallpRecommendation Letter Meaning In Marathi Wallp
Recommendation Letter Meaning In Marathi Wallp
Β 
Cheap Term Paper Help Cheap Term Papers Info,
Cheap Term Paper Help Cheap Term Papers Info,Cheap Term Paper Help Cheap Term Papers Info,
Cheap Term Paper Help Cheap Term Papers Info,
Β 
Pin By Augustus Bessah On English Teacher Essay Wri
Pin By Augustus Bessah On English Teacher Essay WriPin By Augustus Bessah On English Teacher Essay Wri
Pin By Augustus Bessah On English Teacher Essay Wri
Β 
How To Write An Argumentative Essay - Ch
How To Write An Argumentative Essay - ChHow To Write An Argumentative Essay - Ch
How To Write An Argumentative Essay - Ch
Β 
Lined Handwriting Paper Printable. Online assignment writing service.
Lined Handwriting Paper Printable. Online assignment writing service.Lined Handwriting Paper Printable. Online assignment writing service.
Lined Handwriting Paper Printable. Online assignment writing service.
Β 
Check Out Our Personal Stateme. Online assignment writing service.
Check Out Our Personal Stateme. Online assignment writing service.Check Out Our Personal Stateme. Online assignment writing service.
Check Out Our Personal Stateme. Online assignment writing service.
Β 
Academic Writing Companies. TOP. Online assignment writing service.
Academic Writing Companies. TOP. Online assignment writing service.Academic Writing Companies. TOP. Online assignment writing service.
Academic Writing Companies. TOP. Online assignment writing service.
Β 
The Journey, Creative Writing - GCSE English - Marked B
The Journey, Creative Writing - GCSE English - Marked BThe Journey, Creative Writing - GCSE English - Marked B
The Journey, Creative Writing - GCSE English - Marked B
Β 
Writing Workshop Anchor Charts - Distance Learnin
Writing Workshop Anchor Charts - Distance LearninWriting Workshop Anchor Charts - Distance Learnin
Writing Workshop Anchor Charts - Distance Learnin
Β 
Back To School Writing Pages - My Teaching Libra
Back To School Writing Pages - My Teaching LibraBack To School Writing Pages - My Teaching Libra
Back To School Writing Pages - My Teaching Libra
Β 
Problem Of Global Warming Argument. Online assignment writing service.
Problem Of Global Warming Argument. Online assignment writing service.Problem Of Global Warming Argument. Online assignment writing service.
Problem Of Global Warming Argument. Online assignment writing service.
Β 
Plain Premium Writing Paper Packs Envelopes
Plain Premium Writing Paper Packs EnvelopesPlain Premium Writing Paper Packs Envelopes
Plain Premium Writing Paper Packs Envelopes
Β 
Essay Plan Essay Plan, Study Notes, College Esse
Essay Plan Essay Plan, Study Notes, College EsseEssay Plan Essay Plan, Study Notes, College Esse
Essay Plan Essay Plan, Study Notes, College Esse
Β 

Recently uploaded

Hierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementHierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementmkooblal
Β 
Blooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxBlooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxUnboundStockton
Β 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentInMediaRes1
Β 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxOH TEIK BIN
Β 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfSumit Tiwari
Β 
MICROBIOLOGY biochemical test detailed.pptx
MICROBIOLOGY biochemical test detailed.pptxMICROBIOLOGY biochemical test detailed.pptx
MICROBIOLOGY biochemical test detailed.pptxabhijeetpadhi001
Β 
Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Jisc
Β 
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfFraming an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfUjwalaBharambe
Β 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxRaymartEstabillo3
Β 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
Β 
β€œOh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
β€œOh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...β€œOh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
β€œOh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
Β 
Types of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxTypes of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxEyham Joco
Β 
18-04-UA_REPORT_MEDIALITERAΠ‘Y_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAΠ‘Y_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAΠ‘Y_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAΠ‘Y_INDEX-DM_23-1-final-eng.pdfssuser54595a
Β 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
Β 
MARGINALIZATION (Different learners in Marginalized Group
MARGINALIZATION (Different learners in Marginalized GroupMARGINALIZATION (Different learners in Marginalized Group
MARGINALIZATION (Different learners in Marginalized GroupJonathanParaisoCruz
Β 
CELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptxCELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptxJiesonDelaCerna
Β 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsanshu789521
Β 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Celine George
Β 
Painted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaPainted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaVirag Sontakke
Β 
call girls in Kamla Market (DELHI) πŸ” >ΰΌ’9953330565πŸ” genuine Escort Service πŸ”βœ”οΈβœ”οΈ
call girls in Kamla Market (DELHI) πŸ” >ΰΌ’9953330565πŸ” genuine Escort Service πŸ”βœ”οΈβœ”οΈcall girls in Kamla Market (DELHI) πŸ” >ΰΌ’9953330565πŸ” genuine Escort Service πŸ”βœ”οΈβœ”οΈ
call girls in Kamla Market (DELHI) πŸ” >ΰΌ’9953330565πŸ” genuine Escort Service πŸ”βœ”οΈβœ”οΈ9953056974 Low Rate Call Girls In Saket, Delhi NCR
Β 

Recently uploaded (20)

Hierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementHierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of management
Β 
Blooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxBlooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docx
Β 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media Component
Β 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptx
Β 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Β 
MICROBIOLOGY biochemical test detailed.pptx
MICROBIOLOGY biochemical test detailed.pptxMICROBIOLOGY biochemical test detailed.pptx
MICROBIOLOGY biochemical test detailed.pptx
Β 
Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...
Β 
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfFraming an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Β 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
Β 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Β 
β€œOh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
β€œOh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...β€œOh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
β€œOh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
Β 
Types of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxTypes of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptx
Β 
18-04-UA_REPORT_MEDIALITERAΠ‘Y_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAΠ‘Y_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAΠ‘Y_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAΠ‘Y_INDEX-DM_23-1-final-eng.pdf
Β 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
Β 
MARGINALIZATION (Different learners in Marginalized Group
MARGINALIZATION (Different learners in Marginalized GroupMARGINALIZATION (Different learners in Marginalized Group
MARGINALIZATION (Different learners in Marginalized Group
Β 
CELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptxCELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptx
Β 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha elections
Β 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17
Β 
Painted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaPainted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of India
Β 
call girls in Kamla Market (DELHI) πŸ” >ΰΌ’9953330565πŸ” genuine Escort Service πŸ”βœ”οΈβœ”οΈ
call girls in Kamla Market (DELHI) πŸ” >ΰΌ’9953330565πŸ” genuine Escort Service πŸ”βœ”οΈβœ”οΈcall girls in Kamla Market (DELHI) πŸ” >ΰΌ’9953330565πŸ” genuine Escort Service πŸ”βœ”οΈβœ”οΈ
call girls in Kamla Market (DELHI) πŸ” >ΰΌ’9953330565πŸ” genuine Escort Service πŸ”βœ”οΈβœ”οΈ
Β 

Arithmetic And Geometric Progressions

  • 1. Arithmetic and geometric progressions mcTY-apgp-2009-1 This unit introduces sequences and series, and gives some simple examples of each. It also explores particular types of sequence known as arithmetic progressions (APs) and geometric progressions (GPs), and the corresponding series. In order to master the techniques explained here it is vital that you undertake plenty of practice exercises so that they become second nature. After reading this text, and/or viewing the video tutorial on this topic, you should be able to: β€’ recognise the difference between a sequence and a series; β€’ recognise an arithmetic progression; β€’ find the n-th term of an arithmetic progression; β€’ find the sum of an arithmetic series; β€’ recognise a geometric progression; β€’ find the n-th term of a geometric progression; β€’ find the sum of a geometric series; β€’ find the sum to infinity of a geometric series with common ratio |r| < 1. Contents 1. Sequences 2 2. Series 3 3. Arithmetic progressions 4 4. The sum of an arithmetic series 5 5. Geometric progressions 8 6. The sum of a geometric series 9 7. Convergence of geometric series 12 www.mathcentre.ac.uk 1 c mathcentre 2009
  • 2. 1. Sequences What is a sequence? It is a set of numbers which are written in some particular order. For example, take the numbers 1, 3, 5, 7, 9, . . . . Here, we seem to have a rule. We have a sequence of odd numbers. To put this another way, we start with the number 1, which is an odd number, and then each successive number is obtained by adding 2 to give the next odd number. Here is another sequence: 1, 4, 9, 16, 25, . . . . This is the sequence of square numbers. And this sequence, 1, βˆ’1, 1, βˆ’1, 1, βˆ’1, . . . , is a sequence of numbers alternating between 1 and βˆ’1. In each case, the dots written at the end indicate that we must consider the sequence as an infinite sequence, so that it goes on for ever. On the other hand, we can also have finite sequences. The numbers 1, 3, 5, 9 form a finite sequence containing just four numbers. The numbers 1, 4, 9, 16 also form a finite sequence. And so do these, the numbers 1, 2, 3, 4, 5, 6, . . . , n . These are the numbers we use for counting, and we have included n of them. Here, the dots indicate that we have not written all the numbers down explicitly. The n after the dots tells us that this is a finite sequence, and that the last number is n. Here is a sequence that you might recognise: 1, 1, 2, 3, 5, 8, . . . . This is an infinite sequence where each term (from the third term onwards) is obtained by adding together the two previous terms. This is called the Fibonacci sequence. We often use an algebraic notation for sequences. We might call the first term in a sequence u1, the second term u2, and so on. With this same notation, we would write un to represent the n-th term in the sequence. So u1, u2, u3, . . . , un would represent a finite sequence containing n terms. As another example, we could use this notation to represent the rule for the Fibonacci sequence. We would write un = unβˆ’1 + unβˆ’2 to say that each term was the sum of the two preceding terms. www.mathcentre.ac.uk 2 c mathcentre 2009
  • 3. Key Point A sequence is a set of numbers written in a particular order. We sometimes write u1 for the first term of the sequence, u2 for the second term, and so on. We write the n-th term as un. Exercise 1 (a) A sequence is given by the formula un = 3n + 5, for n = 1, 2, 3, . . .. Write down the first five terms of this sequence. (b) A sequence is given by un = 1/n2 , for n = 1, 2, 3, . . .. Write down the first four terms of this sequence. What is the 10th term? (c) Write down the first eight terms of the Fibonacci sequence defined by un = unβˆ’1 +unβˆ’2, when u1 = 1, and u2 = 1. (d) Write down the first five terms of the sequence given by un = (βˆ’1)n+1 /n. 2. Series A series is something we obtain from a sequence by adding all the terms together. For example, suppose we have the sequence u1, u2, u3, . . . , un . The series we obtain from this is u1 + u2 + u3 + . . . + un , and we write Sn for the sum of these n terms. So although the ideas of a β€˜sequence’ and a β€˜series’ are related, there is an important distinction between them. For example, let us consider the sequence of numbers 1, 2, 3, 4, 5, 6, . . . , n . Then S1 = 1, as it is the sum of just the first term on its own. The sum of the first two terms is S2 = 1 + 2 = 3. Continuing, we get S3 = 1 + 2 + 3 = 6 , S4 = 1 + 2 + 3 + 4 = 10 , and so on. www.mathcentre.ac.uk 3 c mathcentre 2009
  • 4. Key Point A series is a sum of the terms in a sequence. If there are n terms in the sequence and we evaluate the sum then we often write Sn for the result, so that Sn = u1 + u2 + u3 + . . . + un . Exercise 2 Write down S1, S2, . . . , Sn for the sequences (a) 1, 3, 5, 7, 9, 11; (b) 4, 2, 0, βˆ’2, βˆ’4. 3. Arithmetic progressions Consider these two common sequences 1, 3, 5, 7, . . . and 0, 10, 20, 30, 40, . . . . It is easy to see how these sequences are formed. They each start with a particular first term, and then to get successive terms we just add a fixed value to the previous term. In the first sequence we add 2 to get the next term, and in the second sequence we add 10. So the difference between consecutive terms in each sequence is a constant. We could also subtract a constant instead, because that is just the same as adding a negative constant. For example, in the sequence 8, 5, 2, βˆ’1, βˆ’4, . . . the difference between consecutive terms is βˆ’3. Any sequence with this property is called an arithmetic progression, or AP for short. We can use algebraic notation to represent an arithmetic progression. We shall let a stand for the first term of the sequence, and let d stand for the common difference between successive terms. For example, our first sequence could be written as 1, 3, 5, 7, 9, . . . 1, 1 + 2, 1 + 2 Γ— 2, 1 + 3 Γ— 2, 1 + 4 Γ— 2, . . . , and this can be written as a, a + d, a + 2d, a + 3d, a + 4d, . . . where a = 1 is the first term, and d = 2 is the common difference. If we wanted to write down the n-th term, we would have a + (n βˆ’ 1)d , www.mathcentre.ac.uk 4 c mathcentre 2009
  • 5. because if there are n terms in the sequence there must be (n βˆ’ 1) common differences between successive terms, so that we must add on (n βˆ’ 1)d to the starting value a. We also sometimes write β„“ for the last term of a finite sequence, and so in this case we would have β„“ = a + (n βˆ’ 1)d . Key Point An arithmetic progression, or AP, is a sequence where each new term after the first is obtained by adding a constant d, called the common difference, to the preceding term. If the first term of the sequence is a then the arithmetic progression is a, a + d, a + 2d, a + 3d, . . . where the n-th term is a + (n βˆ’ 1)d. Exercise 3 (a) Write down the first five terms of the AP with first term 8 and common difference 7. (b) Write down the first five terms of the AP with first term 2 and common difference βˆ’5. (c) What is the common difference of the AP 11, βˆ’1, βˆ’13, βˆ’25, . . . ? (d) Find the 17th term of the arithmetic progression with first term 5 and common differ- ence 2. (e) Write down the 10th and 19th terms of the APs (i) 8, 11, 14, . . ., (ii) 8, 5, 2 . . .. (f) An AP is given by k, 2k/3, k/3, 0, . . .. (i) Find the sixth term. (ii) Find the n th term. (iii) If the 20th term is equal to 15, find k. 4. The sum of an arithmetic series Sometimes we want to add the terms of a sequence. What would we get if we wanted to add the first n terms of an arithmetic progression? We would get Sn = a + (a + d) + (a + 2d) + . . . + (β„“ βˆ’ 2d) + (β„“ βˆ’ d) + β„“ . Now this is now a series, as we have added together the n terms of a sequence. This is an arithmetic series, and we can find its sum by using a trick. Let us write the series down again, but this time we shall write it down with the terms in reverse order. We get Sn = β„“ + (β„“ βˆ’ d) + (β„“ βˆ’ 2d) + . . . + (a + 2d) + (a + d) + a . www.mathcentre.ac.uk 5 c mathcentre 2009
  • 6. We are now going to add these two series together. On the left-hand side, we just get 2Sn. But on the right-hand side, we are going to add the terms in the two series so that each term in the first series will be added to the term vertically below it in the second series. We get 2Sn = (a + β„“) + (a + β„“) + (a + β„“) + . . . + (a + β„“) + (a + β„“) + (a + β„“) , and on the right-hand side there are n copies of (a + β„“) so we get 2Sn = n(a + β„“) . But of course we want Sn rather than 2Sn, and so we divide by 2 to get Sn = 1 2 n(a + β„“) . We have found the sum of an arithmetic progression in terms of its first and last terms, a and β„“, and the number of terms n. We can also find an expression for the sum in terms of the a, n and the common difference d. To do this, we just substitute our formula for β„“ into our formula for Sn. From β„“ = a + (n βˆ’ 1)d , Sn = 1 2 n(a + β„“) we obtain Sn = 1 2 n(a + a + (n βˆ’ 1)d) = 1 2 n(2a + (n βˆ’ 1)d) . Key Point The sum of the terms of an arithmetic progression gives an arithmetic series. If the starting value is a and the common difference is d then the sum of the first n terms is Sn = 1 2 n(2a + (n βˆ’ 1)d) . If we know the value of the last term β„“ instead of the common difference d then we can write the sum as Sn = 1 2 n(a + β„“) . Example Find the sum of the first 50 terms of the sequence 1, 3, 5, 7, 9, . . . . www.mathcentre.ac.uk 6 c mathcentre 2009
  • 7. Solution This is an arithmetic progression, and we can write down a = 1 , d = 2 , n = 50 . We now use the formula, so that Sn = 1 2 n(2a + (n βˆ’ 1)d) S50 = 1 2 Γ— 50 Γ— (2 Γ— 1 + (50 βˆ’ 1) Γ— 2) = 25 Γ— (2 + 49 Γ— 2) = 25 Γ— (2 + 98) = 2500 . Example Find the sum of the series 1 + 3Β·5 + 6 + 8Β·5 + . . . + 101 . Solution This is an arithmetic series, because the difference between the terms is a constant value, 2Β·5. We also know that the first term is 1, and the last term is 101. But we do not know how many terms are in the series. So we will need to use the formula for the last term of an arithmetic progression, β„“ = a + (n βˆ’ 1)d to give us 101 = 1 + (n βˆ’ 1) Γ— 2Β·5 . Now this is just an equation for n, the number of terms in the series, and we can solve it. If we subtract 1 from each side we get 100 = (n βˆ’ 1) Γ— 2Β·5 and then dividing both sides by 2Β·5 gives us 40 = n βˆ’ 1 so that n = 41. Now we can use the formula for the sum of an arithmetic progression, in the version using β„“, to give us Sn = 1 2 n(a + β„“) S41 = 1 2 Γ— 41 Γ— (1 + 101) = 1 2 Γ— 41 Γ— 102 = 41 Γ— 51 = 2091 . www.mathcentre.ac.uk 7 c mathcentre 2009
  • 8. Example An arithmetic progression has 3 as its first term. Also, the sum of the first 8 terms is twice the sum of the first 5 terms. Find the common difference. Solution We are given that a = 3. We are also given some information about the sums S8 and S5, and we want to find the common difference. So we shall use the formula Sn = 1 2 n(2a + (n βˆ’ 1)d) for the sum of the first n terms. This tells us that S8 = 1 2 Γ— 8 Γ— (6 + 7d) . and that S5 = 1 2 Γ— 5 Γ— (6 + 4d) So, using the given fact that S8 = 2S5, we see that 1 2 Γ— 8 Γ— (6 + 7d) = 2 Γ— 1 2 Γ— 5 Γ— (6 + 4d) 4 Γ— (6 + 7d) = 5 Γ— (6 + 4d) 24 + 28d = 30 + 20d 8d = 6 d = 3 4 . Exercise 4 (a) Find the sum of the first 23 terms of the AP 4, βˆ’3, βˆ’10, . . .. (b) An arithmetic series has first term 4 and common difference 1 2 . Find (i) the sum of the first 20 terms, (ii) the sum of the first 100 terms. (c) Find the sum of the arithmetic series with first term 1, common difference 3, and last term 100. (d) The sum of the first 20 terms of an arithmetic series is identical to the sum of the first 22 terms. If the common difference is βˆ’2, find the first term. 5. Geometric progressions We shall now move on to the other type of sequence we want to explore. Consider the sequence 2, 6, 18, 54, . . . . Here, each term in the sequence is 3 times the previous term. And in the sequence 1, βˆ’2, 4, βˆ’8, . . . , each term is βˆ’2 times the previous term. Sequences such as these are called geometric progres- sions, or GPs for short. www.mathcentre.ac.uk 8 c mathcentre 2009
  • 9. Let us write down a general geometric progression, using algebra. We shall take a to be the first term, as we did with arithmetic progressions. But here, there is no common difference. Instead there is a common ratio, as the ratio of successive terms is always constant. So we shall let r be this common ratio. With this notation, the general geometric progression can be expressed as a, ar, ar2 , ar3 , . . . . So the n-th can be calculated quite easily. It is arnβˆ’1 , where the power (n βˆ’ 1) is always one less than the position n of the term in the sequence. In our first example, we had a = 2 and r = 3, so we could write the first sequence as 2, 2 Γ— 3, 2 Γ— 32 , 2 Γ— 33 , . . . . In our second example, a = 1 and r = βˆ’2, so that we could write it as 1, 1 Γ— (βˆ’2), 1 Γ— (βˆ’2)2 , 1 Γ— (βˆ’2)3 , . . . . Key Point A geometric progression, or GP, is a sequence where each new term after the first is obtained by multiplying the preceding term by a constant r, called the common ratio. If the first term of the sequence is a then the geometric progression is a, ar, ar2 , ar3 , . . . where the n-th term is arnβˆ’1 . Exercise 5 (a) Write down the first five terms of the geometric progression which has first term 1 and common ratio 1 2 . (b) Find the 10th and 20th terms of the GP with first term 3 and common ratio 2. (c) Find the 7th term of the GP 2, βˆ’6, 18, . . ., 6. The sum of a geometric series Suppose that we want to find the sum of the first n terms of a geometric progression. What we get is Sn = a + ar + ar2 + ar3 + . . . + arnβˆ’1 , and this is called a geometric series. Now the trick here to find the sum is to multiply by r and then subtract: Sn = a + ar + ar2 + ar3 + . . . + arnβˆ’1 rSn = ar + ar2 + ar3 + . . . + arnβˆ’1 + arn Sn βˆ’ rSn = a βˆ’ arn www.mathcentre.ac.uk 9 c mathcentre 2009
  • 10. so that Sn(1 βˆ’ r) = a(1 βˆ’ rn ) . Now divide by 1 βˆ’ r (as long as r 6= 1) to give Sn = a(1 βˆ’ rn ) 1 βˆ’ r . Key Point The sum of the terms of a geometric progression gives a geometric series. If the starting value is a and the common ratio is r then the sum of the first n terms is Sn = a(1 βˆ’ rn ) 1 βˆ’ r provided that r 6= 1. Example Find the sum of the geometric series 2 + 6 + 18 + 54 + . . . where there are 6 terms in the series. Solution For this series, we have a = 2, r = 3 and n = 6. So Sn = a(1 βˆ’ rn ) 1 βˆ’ r S6 = 2(1 βˆ’ 36 ) 1 βˆ’ 3 = 2(1 βˆ’ 729) βˆ’2 = βˆ’(βˆ’728) = 728 . Example Find the sum of the geometric series 8 βˆ’ 4 + 2 βˆ’ 1 + . . . where there are 5 terms in the series. www.mathcentre.ac.uk 10 c mathcentre 2009
  • 11. Solution For this series, we have a = 8, r = βˆ’1 2 and n = 5. So Sn = a(1 βˆ’ rn ) 1 βˆ’ r S5 = 8(1 βˆ’ βˆ’1 2 5 ) 1 βˆ’ βˆ’1 2 = 8(1 βˆ’ βˆ’ 1 32 ) 3 2 = 2 Γ— 8 Γ— 33 32 3 = 11 2 = 51 2 . Example How many terms are there in the geometric progression 2, 4, 8, . . . , 128 ? Solution In this sequence a = 2 and r = 2. We also know that the n-th term is 128. But the formula for the n-th term is arnβˆ’1 . So 128 = 2 Γ— 2nβˆ’1 64 = 2nβˆ’1 26 = 2nβˆ’1 6 = n βˆ’ 1 n = 7 . So there are 7 terms in this geometric progression. Example How many terms in the geometric progression 1, 1Β·1, 1Β·21, 1Β·331, . . . will be needed so that the sum of the first n terms is greater than 20? Solution The sequence is a geometric progression with a = 1 and r = 1Β·1. We want to find the smallest value of n such that Sn 20. Now Sn = a(1 βˆ’ rn ) 1 βˆ’ r , www.mathcentre.ac.uk 11 c mathcentre 2009
  • 12. so 1 Γ— (1 βˆ’ 1Β·1n ) 1 βˆ’ 1Β·1 20 1 βˆ’ 1Β·1n βˆ’0Β·1 20 (1Β·1n βˆ’ 1) Γ— 10 20 1Β·1n βˆ’ 1 2 1Β·1n 3 . If we now take logarithms of both sides, we get n ln 1Β·1 ln 3 and as ln 1Β·1 0 we obtain n ln 3/ ln 1Β·1 = 11.5267 . . . and therefore the smallest whole number value of n is 12. Exercise 6 (a) Find the sum of the first five terms of the GP with first term 3 and common ratio 2. (b) Find the sum of the first 20 terms of the GP with first term 3 and common ratio 1.5. (c) The sum of the first 3 terms of a geometric series is 37 8 . The sum of the first six terms is 3367 512 . Find the first term and common ratio. (d) How many terms in the GP 4, 3.6, 3.24, . . . are needed so that the sum exceeds 35? 7. Convergence of geometric series Consider the geometric progression 1, 1 2 , 1 4 , 1 8 , 1 16 , . . . . We have a = 1 and r = 1 2 , and so we can calculate some sums. We get S1 = 1 S2 = 1 + 1 2 = 3 2 S3 = 1 + 1 2 + 1 4 = 7 4 S4 = 1 + 1 2 + 1 4 + 1 8 = 15 8 . . . and there seems to be a pattern because 1 = 2 βˆ’ 1 3 2 = 2 βˆ’ 1 2 7 4 = 2 βˆ’ 1 4 15 8 = 2 βˆ’ 1 8 . www.mathcentre.ac.uk 12 c mathcentre 2009
  • 13. In each case, we subtract a small quantity from 2, and as we take successive sums the quantity gets smaller and smaller. If we were able to add β€˜infinitely many’ terms, then the answer β€˜ought to be’ 2 β€” or as near as we want to get to 2. Let us see if we can explain this by using some algebra. We know that Sn = a(1 βˆ’ rn ) 1 βˆ’ r , and we want to examine this formula in the case of our particular example where r = 1 2 . Now the formula contains the term rn and, as βˆ’1 r 1, this term will get closer and closer to zero as n gets larger and larger. So, if βˆ’1 r 1, we can say that the β€˜sum to infinity’ of a geometric series is S∞ = a 1 βˆ’ r , where we have omitted the term rn . We say that this is the limit of the sums Sn as n β€˜tends to infinity’. You will find more details of this concept in another unit. Example Find the sum to infinity of the geometric progression 1, 1 3 , 1 9 , 1 27 , . . . . Solution For this geometric progression we have a = 1 and r = 1 3 . As βˆ’1 r 1 we can use the formula, so that S∞ = 1 1 βˆ’ 1 3 = 1 2 3 = 3 2 . Key Point The sum to infinity of a geometric progression with starting value a and common ratio r is given by S∞ = a 1 βˆ’ r where βˆ’1 r 1. Exercise 7 (a) Find the sum to infinity of the GP with first term 3 and common ratio 1 2 . (b) The sum to infinity of a GP is four times the first term. Find the common ratio. (c) The sum to infinity of a GP is twice the sum of the first two terms. Find possible values of the common ratio. www.mathcentre.ac.uk 13 c mathcentre 2009
  • 14. Answers 1. (a) 8, 11, 14, 17, 20 (b) 1, 1 4 , 1 9 , 1 16 ; tenth term is 1 100 (c) 1, 1, 2, 3, 5, 8, 13, 21 (d) 1, βˆ’1 2 , 1 3 , βˆ’1 4 , 1 5 2. (a) 1, 4, 9, 16, 25, 36 (b) 4, 6, 6, 4, 0 3. (a) 8, 15, 22, 29, 36 (b) 2, βˆ’3, βˆ’8, βˆ’13, βˆ’18 (c) βˆ’12 (d) 37 (e) (i) 35, 62 (ii) βˆ’19, βˆ’46 (f) (i) βˆ’2k/3 (ii) k(4 βˆ’ n)/3 (iii) βˆ’45 16 4. (a) βˆ’1679 (b) (i) 175, (ii) 2875 (c) 1717 (d) 41 5. (a) 1, 1 2 , 1 4 , 1 8 , 1 16 (b) 1536, 1,572,864 (c) 1458 6. (a) 93 (b) 19,946 (c) 2, 3 4 (d) 20 terms 7. (a) 6 (b) 3 4 (c) Β± 1/ √ 2 www.mathcentre.ac.uk 14 c mathcentre 2009