Sequence and Series
Sequence and Series
Sequence and Series
Infinite or Finite
When the sequence goes on forever it is called an infinite sequence,
otherwise it is a finite sequence
Examples:
{4, 3, 2, 1} is 4 to 1 backwards
{1, 2, 4, 8, 16, 32, ...} is an infinite sequence where every term doubles
In Order
When we say the terms are "in order", we are free to define what order that
is! They could go forwards, backwards ... or they could alternate ... or any type
of order we want!
Like a Set
A Sequence is like a Set, except:
the terms are in order (with Sets the order does not matter)
the same value can appear many times (only once in Sets)
Notation
Sequences also use the same notation as sets:
list each element, separated by a comma, {3, 5, 7, ...}
and then put curly brackets around the whole thing.
A Rule
A Sequence usually has a Rule, which is a way to find the value of each term.
Example: the sequence {3, 5, 7, 9, ...} starts at 3 and jumps 2 every time:
As a Formula
Saying "starts at 3 and jumps 2 every time" is fine, but it doesn't help us
calculate the:
10th term,
100th term, or
nth term, where n could be any term number we want.
Test Rule: 2n
1 3 2n = 2×1 = 2
2 5 2n = 2×2 = 4
3 7 2n = 2×3 = 6
That nearly worked ... but it is too low by 1 every time, so let us try changing
it to:
1 3 2n+1 = 2×1 + 1 = 3
2 5 2n+1 = 2×2 + 1 = 5
3 7 2n+1 = 2×3 + 1 = 7
That Works!
So instead of saying "starts at 3 and jumps 2 every time" we write this:
2n+1
2 × 100 + 1 = 201
Many Rules
But mathematics is so powerful we can find more than one Rule that works
for any sequence.
And we could find more rules that match {3, 5, 7, 9, ...}. Really we could.
So it is best to say "A Rule" rather than "The Rule" (unless we know it is the
right Rule).
Notation
To make it easier to use rules, we often use this special style:
xn = 2n+1
And to calculate the 10th term we can write:
{an} = { (-1/n)n }
Calculations:
a1 = (-1/1)1 = -1
a2 = (-1/2)2 = 1/4
a3 = (-1/3)3 = -1/27
a4 = (-1/4)4 = 1/256
Answer:
Special Sequences
Now let's look at some special sequences, and their rules.
Arithmetic Sequences
In an Arithmetic Sequence the difference between one term and the next
is a constant.
In other words, we just add some value each time ... on to infinity.
Example:
xn = a + d(n-1)
(We use "n-1" because d is not used in the 1st term).
Geometric Sequences
In a Geometric Sequence each term is found by multiplying the previous term
by a constant.
Example:
Note: r should not be 0.
xn = ar(n-1)
0
(We use "n-1" because ar is the 1st term)
Triangular Numbers
1, 3, 6, 10, 15, 21, 28, 36, 45, ...
By adding another row of dots and counting all the dots we can find the next
number of the sequence.
xn = n(n+1)/2
Example:
the 5th Triangular Number is x5 = 5(5+1)/2 = 15,
and the sixth is x6 = 6(6+1)/2 = 21
Square Numbers
1, 4, 9, 16, 25, 36, 49, 64, 81, ...
Rule is xn = n2
Cube Numbers
1, 8, 27, 64, 125, 216, 343, 512, 729, ...
Rule is xn = n3
Fibonacci Sequence
This is the Fibonacci Sequence
The next number is found by adding the two numbers before it together:
That rule is interesting because it depends on the values of the previous two
terms.
n= 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 ...
23
xn = 0 1 1 2 3 5 8 13 21 34 55 89 144 377 ...
3
Sequence: {1, 3, 5, 7, ...}
Series: 1 + 3 + 5 + 7 + ...