Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
100% found this document useful (1 vote)
344 views

Lesson 1 Writing Rules For Sequences

1. The document provides examples of patterns in sequences and explains how to write rules to describe the patterns. It shows how to find missing terms in a sequence by identifying the rule behind it using variables like xn. 2. Examples of different types of patterns and rules are given, including additive, subtractive, and Fibonacci sequences. It explains that there can be multiple valid rules to describe a single sequence. 3. The document emphasizes finding the simplest rule that makes sense and also considering that there may be other possible solutions. It demonstrates finding differences between terms to reveal patterns and rules through trial and error.

Uploaded by

Dazu Reii
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
100% found this document useful (1 vote)
344 views

Lesson 1 Writing Rules For Sequences

1. The document provides examples of patterns in sequences and explains how to write rules to describe the patterns. It shows how to find missing terms in a sequence by identifying the rule behind it using variables like xn. 2. Examples of different types of patterns and rules are given, including additive, subtractive, and Fibonacci sequences. It explains that there can be multiple valid rules to describe a single sequence. 3. The document emphasizes finding the simplest rule that makes sense and also considering that there may be other possible solutions. It demonstrates finding differences between terms to reveal patterns and rules through trial and error.

Uploaded by

Dazu Reii
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 8

Patterns and

Algebra
Project in Mathematics
Dazh Lei D.C. Guiruela
Antonio Lagundi
PATTERNS AND ALGEBRA
Lesson 1: Writing Rules for Sequences

Given a set of domino pieces, you can construct different patterns in many ways.

Engage
Below is a set of odd numbers. Write the next three numbers in the pattern.

45, 51, 57,…

Explore
The four basic operations (Addition, Subtraction, Multiplication, and Division)
are commonly used in a sequence of numbers. The numbers above are
increasing by six.

45, 51, 57…


Therefore, following the pattern, the next three terms in the sequence are 63,
69, and 75. Try to find the next three terms.

Explain
A sequence is a set of things (usually numbers) that are in order. Each
number in the sequence is called a term (or sometimes “element” or
“member”).

To find a missing number, first find a Rule behind the sequence.

Sometimes we can just look at the numbers and see a pattern:

Example: 1, 4, 9, 16, ?

Answer: they are squares (12=1, 22=4, 32=9, 42=16, ...)

Rule: xn = n2

Sequence: 1, 4, 9, 16, 25, 36, 49,…

Did you see how we wrote that rule using "x" and "n" ?

Xn means "term number n", so term 3 is written x3

And we can calculate term 3 using:

X3 = 32 = 9
We can use a Rule to find any term. For example, the 25th term can be found by
"plugging in" 25wherever n is.

X25 = 252 = 625


How about another example:

Example: 3, 5, 8, 13, 21, ?

After 3 and 5 all the rest are the sum of the two numbers before,

That is 3 + 5 = 8, 5 + 8 = 13 etc, which is part of the Fibonacci sequence:

3, 5, 8, 13, 21, 34, 55, 89, ...

Which has this Rule?

Rule: xn = xn-1 + xn-2

Now what does xn-1 mean? It means "the previous term" because the term
number (n) is 1 less (n-1).

And xn-2 means the term before that one.

Let's try that Rule for the 6th term:

X6 = x6-1 + x6-2

X6 = x5 + x4
So term 6 equals term 5 plus term 4. We already know term 5 is 21 and term 4
is 13, so:

X6 = 21 + 13 = 34
One of the troubles with finding "the next number" in a sequence is that
mathematics is so powerful we can find more than one Rule that works.

What is the next number in the sequence 1, 2, 4, 7, ?

Here are three solutions (there can be more!):

Solution 1: Add 1, then add 2, 3, 4, ...

So, 1+1=2, 2+2=4, 4+3=7, 7+4=11, etc...

Rule: xn = n(n-1)/2 + 1

Sequence: 1, 2, 4, 7, 11, 16, 22, ...

(That rule looks a bit complicated, but it works)

Solution 2: After 1 and 2, add the two previous numbers, plus 1:

Rule: xn = xn-1 + xn-2 + 1

Sequence: 1, 2, 4, 7, 12, 20, 33, ...

Solution 3: After 1, 2 and 4, add the three previous numbers

Rule: xn = xn-1 + xn-2 + xn-3

Sequence: 1, 2, 4, 7, 13, 24, 44, ...

So, we have three perfectly reasonable solutions, and they create totally
different sequences.
Which is right? They are all right.

And there are other solutions ...

...it may be a list of the winners' numbers ... so the next


number could be ... anything!

When in doubt choose the simplest rule that makes sense, but also mention that
there are other solutions. Sometimes it helps to find the differences between each
pair of numbers ... this can often reveal an underlying pattern.

Here is a simple case:

The differences are always 2, so we can guess that "2n" is part of the answer.

Let us try 2n:

n: 1 2 3 4 5
Terms (xn): 7 9 11 13 15
2n: 2 4 6 8 10
Wrong by: 5 5 5 5 5

The last row shows that we are always wrong by 5, so just add 5 and we are done:

Rule: xn = 2n + 5
OK, we could have worked out "2n+5" by just playing around with the numbers a
bit, but we want a systematic way to do it, for when the sequences get more
complicated.

n the sequence {1, 2, 4, 7, 11, 16, 22, ...} we need to find the differences ...

... and then find the differences of those (called second differences), like this:
The second differences in this case are 1.

With second differences we multiply by n22

In our case the difference is 1, so let us try just n22:

n: 1 2 3 4 5
Terms (xn): 1 2 4 7 11

n22: 0.5 2 4.5 8 12.5


Wrong by: 0.5 0 -0.5 -1 -1.5

We are close, but seem to be drifting by 0.5, so let us try: n22 − n2

n22 − n2 0 1 3 6 10
Wrong by: 1 1 1 1 1

Wrong by 1 now, so let us add 1:

n22 − n2 + 1 1 2 4 7 11
Wrong by: 0 0 0 0 0

We did it!

The formula n22 − n2 + 1 can be simplified to n(n-1)/2 + 1

So by "trial-and-error" we discovered a rule that works:

Rule: xn = n(n-1)/2 + 1
Sequence: 1, 2, 4, 7, 11, 16, 22, 29, 37,…

Evaluate
A. Supply the next two letters, figures, or symbols in the following patters

1. A, E, I, M, … 2. T, S, R, Q, …

3. ⇦⇩⇨⇧ 4.

5. ↗↘↙↖ 6. •••, ••••••, •••••••••, ….

7. 1a, 2b, 3c, …. 8. 4x, 5x, 6x, ....

9. 5x + y, 10x + y, 15x + y, .... 10. a + 2b, a + 4b, a + 6b, ....

Source: Math is fun

Reference: 21st Century MATHletes

You might also like