SlideShare a Scribd company logo
1 of 19
Download to read offline
Arithmetic Sequence
In an Arithmetic Sequence the difference between one term and the next
is a constant.
In other words, you just add the same value each time ... infinitely.

Example:

1, 4, 7, 10, 13, 16, 19, 22, 25, ...
This sequence has a difference of 3 between each number.
In General you could write an arithmetic sequence like this:

{a, a+d, a+2d, a+3d, ... }
where:



a is the first term, and
d is the difference between the terms (called the "common difference")

Example: (continued)

1, 4, 7, 10, 13, 16, 19, 22, 25, ...
Has:



a = 1 (the first term)
d = 3 (the "common difference" between terms)
And we get:

{a, a+d, a+2d, a+3d, ... }
{1, 1+3, 1+2×3, 1+3×3, ... }
{1, 4, 7, 10, ... }

Rule
You can write an Arithmetic Sequence as a rule:

xn = a + d(n-1)
(We use "n-1" because d is not used in the 1st term).

Example: Write the Rule, and calculate the 4th term for
3, 8, 13, 18, 23, 28, 33, 38, ...
This sequence has a difference of 5 between each number.
The values of a and d are:



a = 3 (the first term)
d = 5 (the "common difference")
The Rule can be calculated:

xn = a + d(n-1)
= 3 + 5(n-1)
= 3 + 5n - 5
= 5n - 2
So, the 4th term is:

x4 = 5×4 - 2 = 18
Summing an Arithmetic Series
To sum up the terms of this arithmetic sequence:

a + (a+d) + (a+2d) + (a+3d) + ...
use this formula:

Example: Add up the first 10 terms of the arithmetic sequence:

{ 1, 4, 7, 10, 13, ... }
The values of a, d and n are:



a = 1 (the first term)
d = 3 (the "common difference" between terms)



n = 10 (how many terms to add up)



So:

Becomes:

= 5(2+9·3) = 5(29) = 145
Geometric Sequences
In a Geometric Sequence each term is found by multiplying the previous
term by a constant.

Example:
2, 4, 8, 16, 32, 64, 128, 256, ...
This sequence has a factor of 2 between each number.
Each term (except the first term) is found by multiplying the previous
term by 2.

In General you could write a Geometric Sequence like this:

{a, ar, ar2, ar3, ... }
where:



a is the first term, and
r is the factor between the terms (called the "common ratio")

Example: {1,2,4,8,...}
The sequence starts at 1 and doubles each time, so



a=1 (the first term)
r=2 (the "common ratio" between terms is a doubling)
So we would get:

{a, ar, ar2, ar3, ... }
= {1, 1×2, 1×22, 1×23, ... }
= {1, 2, 4, 8, ... }
But be careful, r should not be 0:


When r=0, you get the sequence {a,0,0,...} which is not geometric

The Rule
You can also calculate any term using the Rule:

xn = ar(n-1)
(We use "n-1" because

ar0 is for the 1st term)

Example:
10, 30, 90, 270, 810, 2430, ...
This sequence has a factor of 3 between each number.
The values of a and r are:



a = 10 (the first term)
r = 3 (the "common ratio")
The Rule for any term is:

xn = 10 × 3(n-1)

So, the 4th term would be:

x4 = 10×3(4-1) = 10×33 = 10×27 = 270
And the 10th term would be:

x10 = 10×3(10-1) = 10×39 = 10×19683 = 196830
Summing a Geometric Series
When you need to sum a Geometric Sequence, there is a handy formula.
To sum:

a + ar + ar2 + ... + ar(n-1)
Each term is

ark, where k starts at 0 and goes up to n-1

Use this formula:

a is the first term
r is the "common ratio" between terms
n is the number of terms

Example: Sum the first 4 terms of
10, 30, 90, 270, 810, 2430, ...
This sequence has a factor of 3 between each number.
The values of a, r and n are:




a = 10 (the first term)
r = 3 (the "common ratio")
n = 4 (we want to sum the first 4 terms)
So:

Becomes:
You could check it yourself:

10 + 30 + 90 + 270 = 400
And, yes, it was easier to just add them in this case, because there were only 4
terms. But imagine you had to sum up lots of terms, then the formula is better
to use.

Harmonic Sequences

Definition and Meaning: A sequence formed by the reciprocal of arithmetic progression.

Formula :

Example :

1,1/2,1/3,1/4,..
Mathematical Induction
Mathematical Induction is a special way of proving things. It has only 2 steps:



Step 1. Show it is true for the first one
Step 2. Show that if any one is true then the next one is true

Then all will be true

Have you heard of the "Domino Effect"?



Step 1. The first domino falls
Step 2. If any domino falls, the next
domino falls

So ... all dominos will fall!

That is how it works.

In the world of numbers we say:



Step 1. Show it is true for n=1
Step 2. Show that if n=k is true then n=k+1 is also true

How to Do it
Step 1 is usually easy, you just have to prove it is true for n=1
Step 2 is best done this way:



Assume it is true for n=k
Prove it is true for n=k+1 (you can use the n=k case as a fact.)
Step 2 can often be tricky ... because you may need to use imaginative tricks
to make it work!
Like in this example:

Example: 3n-1 is a multiple of 2
Is that true? Let us find out.

1. Show it is true for n=1
31-1 = 3-1 = 2
Yes 2 is a multiple of 2. That was easy.

31-1 is true

2. Assume it is true for n=k

3k-1 is true
(Hang on! How do we know that? We don't!
It is an assumption ... that we treat
as a fact for the rest of this example)

Now, prove that 3k+1-1 is a multiple of 2

3k+1 is also 3×3k

And then split 3× into 2× and 1×

And each of these are multiples of 2

Because:



2·3k is a multiple of 2 (you are multiplying by 2)
3k-1 is true (we said that in the assumption above)
So:

3k+1-1 is true
DONE!
Did you see how we used the 3k-1 case as being true, even though we had not
proved it? That is OK, because we are relying on the Domino Effect ...
... we are asking if any domino falls will the next one fall?
So we take it as a fact (temporarily) that the "n=k" domino falls (i.e. 3k-1 is
true), and see if that means the "n=k+1" domino will also fall.

Tricks
I said before that you often need to use imaginative tricks.
A common trick is to rewrite the n=k+1 case into 2 parts:



one part being the n=k case (which is assumed to be true)
the other part can then be checked to see if it is also true

We did that in the example above, and here is another one:

Example: Adding up Odd Numbers
1 + 3 + 5 + ... + (2n-1) = n2
1. Show it is true for n=1

1 = 12 is True
2. Assume it is true for n=k

1 + 3 + 5 + ... + (2k-1) = k2 is True
Now, prove it is true for "k+1"
1 + 3 + 5 + ... + (2k-1) + (2(k+1)-1) = (k+1)2 ... ?
We know that 1 + 3 + 5 + ... + (2k-1) = k2 (the assumption above), so we can
do a replacement for all but the last term:

k2 + (2(k+1)-1) = (k+1)2
Now expand all terms:

k2 + 2k + 2 - 1 = k2 + 2k+1
And simplify:

k2 + 2k + 1 = k2 + 2k + 1
They are the same! So it is true.
So:

1 + 3 + 5 + ... + (2(k+1)-1) = (k+1)2 is True
DONE!

Polynomials
A polynomial looks like this:

example of a polynomial
this one has 3 terms
Polynomial comes from poly- (meaning "many") and -nomial (in this case
meaning "term") ... so it says "many terms"

A polynomial can have:
constants (like 3, -20, or ½)
variables (like x and y)
exponents (like the 2 in y2), but only 0, 1, 2, 3, ... etc are allowed
that can be combined using addition, subtraction, multiplication and
division ...

... except ...
... not division by a variable (so something like 2/x is right out)
So:
A polynomial can have constants, variables and exponents,
but never division by a variable.

Polynomial or Not?

These are polynomials:


3x



x-2



-6y2 - (7/9)x



3xyz + 3xy2z - 0.1xz - 200y + 0.5



512v5+ 99w5



5
(Yes, even "5" is a polynomial, one term is allowed, and it can even be just a
constant!)
And these are not polynomials



3xy-2 is not, because the exponent is "-2" (exponents can only be
0,1,2,...)
2/(x+2) is not, because dividing by a variable is not allowed
1/x is not either



√x is not, because the exponent is "½" (see fractional exponents)




But these are allowed:




x/2 is allowed, because you can divide by a constant
also 3x/8 for the same reason
√2 is allowed, because it is a constant (= 1.4142...etc)

Monomial, Binomial, Trinomial
There are special names for polynomials with 1, 2 or 3 terms:

How do you remember the names? Think cycles!
There is also quadrinomial (4 terms) and quintinomial (5 terms),
but those names are not often used.

Can Have Lots and Lots of Terms
Polynomials can have as many terms as needed, but not an infinite number
of terms.

Binomial Theorem
What happens when you multiply a binomial by itself ... many times?
Here is the answer:

Don't worry ... I will explain it all!
And you will learn lots of cool math symbols along the way.

Binomial
A binomial is a polynomial with two terms
example of a binomial

Multiplying
The Binomial Theorem shows what happens when you multiply a binomial by
itself (as many times as you want).
It works because there is a pattern ... let us see if we can discover it.

Exponents
But first you need to know what an Exponent is.
Here is a quick summary:
An exponent says how many times to use something
in a multiplication.

Example: 82 = 8 × 8 = 64
An exponent of 1 means just to have it appear once, so you get the original
value:

Example: 81 = 8
An exponent of 0 means not to use it at all, and we have only 1:

Example: 80 = 1

Exponents of (a+b)
Now on to the binomial.

We will use the simple binomial a+b, but it could be any binomial.
Let us start with an exponent of 0 and build upwards.

Exponent of 0
When an exponent is 0, you get 1:

(a+b)0 = 1
Exponent of 1
When the exponent is 1, you get the original value, unchanged:

(a+b)1 = a+b
Exponent of 2
An exponent of 2 means to multiply by itself (see how to multiply polynomials):

(a+b)2 = (a+b)(a+b) = a2 + 2ab + b2
Exponent of 3
For an exponent of 3 just multiply again:

(a+b)3 = (a+b)(a2 + 2ab + b2) = a3 + 3a2b + 3ab2 + b3

We have enough now to start talking about the pattern.
The Pattern
In the last result we got:

a3 + 3a2b + 3ab2 + b3
Now, notice the exponents of

Likewise the exponents of

a. They start at 3 and go down: 3, 2, 1, 0:

b go upwards: 0, 1, 2, 3:

If we number the terms 0 to n, we get this:
k=0

k=1

k=2

k=3

a3

a2

a

1

1

b

b2

b3

k=2:

k=3:

Which can be brought together into this:

an-kbk
How about an example to see how it works:

Example: When the exponent, n, is 3.
The terms are:
k=0:

k=1:
an-kbk
= a3-0b0
= a3

an-kbk
= a3-1b1
= a2b

an-kbk
= a3-2b2
= ab2

an-kbk
= a3-3b3
= b3

It works like magic!

Coefficients
So far we have:
But we really need:

a3 + a2b + ab2 + b3
a3 + 3a2b + 3ab2 + b3

We are missing the numbers (which are called coefficients).
Let's look at all the results we got before, from

(a+b)0 up to (a+b)3:

And now look at just the coefficients (with a "1" where a coefficient wasn't
shown):
They actually make Pascal's Triangle!

Each number is just the two numbers above
it added together (except for the edges,
which are all "1")
(Here I have highlighted that 1+3 = 4)

Armed with this information let us try something new ... an exponent of 4:

a exponents go 4,3,2,1,0:

a4 +

b exponents go 0,1,2,3,4:

a4 + a3b + a2b2 + ab3 + b4

coefficients go 1,4,6,4,1:

a4 + 4a3b + 6a2b2 + 4ab3 + b4

And that is the correct answer.

a3

+

a2

+

a

+ 1

More Related Content

What's hot

Binomial theorem for any index
Binomial theorem for any indexBinomial theorem for any index
Binomial theorem for any indexindu psthakur
 
Exact & non differential equation
Exact & non differential equationExact & non differential equation
Exact & non differential equationSiddhi Shrivas
 
The binomial expansion
The binomial expansionThe binomial expansion
The binomial expansionJJkedst
 
Lesson 11: Implicit Differentiation (slides)
Lesson 11: Implicit Differentiation (slides)Lesson 11: Implicit Differentiation (slides)
Lesson 11: Implicit Differentiation (slides)Matthew Leingang
 
Differential equations
Differential equationsDifferential equations
Differential equationsCharan Kumar
 
Higher Differential Equation
Higher Differential Equation Higher Differential Equation
Higher Differential Equation Abdul Hannan
 
Harder trig equations
Harder trig equationsHarder trig equations
Harder trig equationsJJkedst
 
Automobile 3rd sem aem ppt.2016
Automobile 3rd sem aem ppt.2016Automobile 3rd sem aem ppt.2016
Automobile 3rd sem aem ppt.2016kalpeshvaghdodiya
 
41 trig equations
41 trig equations41 trig equations
41 trig equationsJJkedst
 
C2 st lecture 5 handout
C2 st lecture 5 handoutC2 st lecture 5 handout
C2 st lecture 5 handoutfatima d
 
Engr 213 final sol 2009
Engr 213 final sol 2009Engr 213 final sol 2009
Engr 213 final sol 2009akabaka12
 
Engr 213 midterm 1b sol 2010
Engr 213 midterm 1b sol 2010Engr 213 midterm 1b sol 2010
Engr 213 midterm 1b sol 2010akabaka12
 
First order linear differential equation
First order linear differential equationFirst order linear differential equation
First order linear differential equationNofal Umair
 
Engr 213 midterm 1a sol 2010
Engr 213 midterm 1a sol 2010Engr 213 midterm 1a sol 2010
Engr 213 midterm 1a sol 2010akabaka12
 
Emat 213 final fall 2005
Emat 213 final fall 2005Emat 213 final fall 2005
Emat 213 final fall 2005akabaka12
 
Bounded variables new
Bounded variables newBounded variables new
Bounded variables newSamo Alwatan
 

What's hot (20)

Binomial theorem for any index
Binomial theorem for any indexBinomial theorem for any index
Binomial theorem for any index
 
Exact & non differential equation
Exact & non differential equationExact & non differential equation
Exact & non differential equation
 
The binomial expansion
The binomial expansionThe binomial expansion
The binomial expansion
 
Lesson 11: Implicit Differentiation (slides)
Lesson 11: Implicit Differentiation (slides)Lesson 11: Implicit Differentiation (slides)
Lesson 11: Implicit Differentiation (slides)
 
Calculus Assignment Help
Calculus Assignment HelpCalculus Assignment Help
Calculus Assignment Help
 
Differential equations
Differential equationsDifferential equations
Differential equations
 
Higher Differential Equation
Higher Differential Equation Higher Differential Equation
Higher Differential Equation
 
Harder trig equations
Harder trig equationsHarder trig equations
Harder trig equations
 
Automobile 3rd sem aem ppt.2016
Automobile 3rd sem aem ppt.2016Automobile 3rd sem aem ppt.2016
Automobile 3rd sem aem ppt.2016
 
Binomial theorem
Binomial theoremBinomial theorem
Binomial theorem
 
41 trig equations
41 trig equations41 trig equations
41 trig equations
 
C2 st lecture 5 handout
C2 st lecture 5 handoutC2 st lecture 5 handout
C2 st lecture 5 handout
 
Engr 213 final sol 2009
Engr 213 final sol 2009Engr 213 final sol 2009
Engr 213 final sol 2009
 
Engr 213 midterm 1b sol 2010
Engr 213 midterm 1b sol 2010Engr 213 midterm 1b sol 2010
Engr 213 midterm 1b sol 2010
 
First order linear differential equation
First order linear differential equationFirst order linear differential equation
First order linear differential equation
 
Engr 213 midterm 1a sol 2010
Engr 213 midterm 1a sol 2010Engr 213 midterm 1a sol 2010
Engr 213 midterm 1a sol 2010
 
Bounded var
Bounded varBounded var
Bounded var
 
FUNCIONES DE GREEN
FUNCIONES DE GREENFUNCIONES DE GREEN
FUNCIONES DE GREEN
 
Emat 213 final fall 2005
Emat 213 final fall 2005Emat 213 final fall 2005
Emat 213 final fall 2005
 
Bounded variables new
Bounded variables newBounded variables new
Bounded variables new
 

Viewers also liked

Benginning Calculus Lecture notes 6 - implicit differentiation
Benginning Calculus Lecture notes 6 - implicit differentiationBenginning Calculus Lecture notes 6 - implicit differentiation
Benginning Calculus Lecture notes 6 - implicit differentiationbasyirstar
 
Math Lecture 11 (Cartesian Coordinates)
Math Lecture 11 (Cartesian Coordinates)Math Lecture 11 (Cartesian Coordinates)
Math Lecture 11 (Cartesian Coordinates)Osama Zahid
 
Benginning Calculus Lecture notes 7 - exp, log
Benginning Calculus Lecture notes 7 - exp, logBenginning Calculus Lecture notes 7 - exp, log
Benginning Calculus Lecture notes 7 - exp, logbasyirstar
 
Math lecture 8 (Introduction to Trigonometry)
Math lecture 8 (Introduction to Trigonometry)Math lecture 8 (Introduction to Trigonometry)
Math lecture 8 (Introduction to Trigonometry)Osama Zahid
 
Math lecture 6 (System of Linear Equations)
Math lecture 6 (System of Linear Equations)Math lecture 6 (System of Linear Equations)
Math lecture 6 (System of Linear Equations)Osama Zahid
 
Benginning Calculus Lecture notes 5 - chain rule
Benginning Calculus Lecture notes 5 - chain ruleBenginning Calculus Lecture notes 5 - chain rule
Benginning Calculus Lecture notes 5 - chain rulebasyirstar
 
Benginning Calculus Lecture notes 4 - rules
Benginning Calculus Lecture notes 4 - rulesBenginning Calculus Lecture notes 4 - rules
Benginning Calculus Lecture notes 4 - rulesbasyirstar
 
Math lecture 9 (Absolute Value in Algebra)
Math lecture 9 (Absolute Value in Algebra)Math lecture 9 (Absolute Value in Algebra)
Math lecture 9 (Absolute Value in Algebra)Osama Zahid
 
Benginning Calculus Lecture notes 3 - derivatives
Benginning Calculus Lecture notes 3 - derivativesBenginning Calculus Lecture notes 3 - derivatives
Benginning Calculus Lecture notes 3 - derivativesbasyirstar
 
A presentation on differencial calculus
A presentation on differencial calculusA presentation on differencial calculus
A presentation on differencial calculusbujh balok
 
Benginning Calculus Lecture notes 11 - related rates
Benginning Calculus Lecture notes 11 - related ratesBenginning Calculus Lecture notes 11 - related rates
Benginning Calculus Lecture notes 11 - related ratesbasyirstar
 
Benginning Calculus Lecture notes 10 - max, min
Benginning Calculus Lecture notes 10 - max, minBenginning Calculus Lecture notes 10 - max, min
Benginning Calculus Lecture notes 10 - max, minbasyirstar
 
Benginning Calculus Lecture notes 14 - areas & volumes
Benginning Calculus Lecture notes 14 - areas & volumesBenginning Calculus Lecture notes 14 - areas & volumes
Benginning Calculus Lecture notes 14 - areas & volumesbasyirstar
 
Benginning Calculus Lecture notes 13 - fundamental theorem of calculus 1 & 2
Benginning Calculus Lecture notes 13 - fundamental theorem of calculus 1 & 2Benginning Calculus Lecture notes 13 - fundamental theorem of calculus 1 & 2
Benginning Calculus Lecture notes 13 - fundamental theorem of calculus 1 & 2basyirstar
 
Benginning Calculus Lecture notes 9 - derivative functions
Benginning Calculus Lecture notes 9 - derivative functionsBenginning Calculus Lecture notes 9 - derivative functions
Benginning Calculus Lecture notes 9 - derivative functionsbasyirstar
 
Math lecture 10 (Introduction to Integration)
Math lecture 10 (Introduction to Integration)Math lecture 10 (Introduction to Integration)
Math lecture 10 (Introduction to Integration)Osama Zahid
 
Benginning Calculus Lecture notes 8 - linear, quadratic approximation
Benginning Calculus Lecture notes 8 - linear, quadratic approximationBenginning Calculus Lecture notes 8 - linear, quadratic approximation
Benginning Calculus Lecture notes 8 - linear, quadratic approximationbasyirstar
 
Benginning Calculus Lecture notes 15 - techniques of integration
Benginning Calculus Lecture notes 15 - techniques of integrationBenginning Calculus Lecture notes 15 - techniques of integration
Benginning Calculus Lecture notes 15 - techniques of integrationbasyirstar
 
Benginning Calculus Lecture notes 2 - limits and continuity
Benginning Calculus Lecture notes 2 - limits and continuityBenginning Calculus Lecture notes 2 - limits and continuity
Benginning Calculus Lecture notes 2 - limits and continuitybasyirstar
 
Benginning Calculus Lecture notes 12 - anti derivatives indefinite and defini...
Benginning Calculus Lecture notes 12 - anti derivatives indefinite and defini...Benginning Calculus Lecture notes 12 - anti derivatives indefinite and defini...
Benginning Calculus Lecture notes 12 - anti derivatives indefinite and defini...basyirstar
 

Viewers also liked (20)

Benginning Calculus Lecture notes 6 - implicit differentiation
Benginning Calculus Lecture notes 6 - implicit differentiationBenginning Calculus Lecture notes 6 - implicit differentiation
Benginning Calculus Lecture notes 6 - implicit differentiation
 
Math Lecture 11 (Cartesian Coordinates)
Math Lecture 11 (Cartesian Coordinates)Math Lecture 11 (Cartesian Coordinates)
Math Lecture 11 (Cartesian Coordinates)
 
Benginning Calculus Lecture notes 7 - exp, log
Benginning Calculus Lecture notes 7 - exp, logBenginning Calculus Lecture notes 7 - exp, log
Benginning Calculus Lecture notes 7 - exp, log
 
Math lecture 8 (Introduction to Trigonometry)
Math lecture 8 (Introduction to Trigonometry)Math lecture 8 (Introduction to Trigonometry)
Math lecture 8 (Introduction to Trigonometry)
 
Math lecture 6 (System of Linear Equations)
Math lecture 6 (System of Linear Equations)Math lecture 6 (System of Linear Equations)
Math lecture 6 (System of Linear Equations)
 
Benginning Calculus Lecture notes 5 - chain rule
Benginning Calculus Lecture notes 5 - chain ruleBenginning Calculus Lecture notes 5 - chain rule
Benginning Calculus Lecture notes 5 - chain rule
 
Benginning Calculus Lecture notes 4 - rules
Benginning Calculus Lecture notes 4 - rulesBenginning Calculus Lecture notes 4 - rules
Benginning Calculus Lecture notes 4 - rules
 
Math lecture 9 (Absolute Value in Algebra)
Math lecture 9 (Absolute Value in Algebra)Math lecture 9 (Absolute Value in Algebra)
Math lecture 9 (Absolute Value in Algebra)
 
Benginning Calculus Lecture notes 3 - derivatives
Benginning Calculus Lecture notes 3 - derivativesBenginning Calculus Lecture notes 3 - derivatives
Benginning Calculus Lecture notes 3 - derivatives
 
A presentation on differencial calculus
A presentation on differencial calculusA presentation on differencial calculus
A presentation on differencial calculus
 
Benginning Calculus Lecture notes 11 - related rates
Benginning Calculus Lecture notes 11 - related ratesBenginning Calculus Lecture notes 11 - related rates
Benginning Calculus Lecture notes 11 - related rates
 
Benginning Calculus Lecture notes 10 - max, min
Benginning Calculus Lecture notes 10 - max, minBenginning Calculus Lecture notes 10 - max, min
Benginning Calculus Lecture notes 10 - max, min
 
Benginning Calculus Lecture notes 14 - areas & volumes
Benginning Calculus Lecture notes 14 - areas & volumesBenginning Calculus Lecture notes 14 - areas & volumes
Benginning Calculus Lecture notes 14 - areas & volumes
 
Benginning Calculus Lecture notes 13 - fundamental theorem of calculus 1 & 2
Benginning Calculus Lecture notes 13 - fundamental theorem of calculus 1 & 2Benginning Calculus Lecture notes 13 - fundamental theorem of calculus 1 & 2
Benginning Calculus Lecture notes 13 - fundamental theorem of calculus 1 & 2
 
Benginning Calculus Lecture notes 9 - derivative functions
Benginning Calculus Lecture notes 9 - derivative functionsBenginning Calculus Lecture notes 9 - derivative functions
Benginning Calculus Lecture notes 9 - derivative functions
 
Math lecture 10 (Introduction to Integration)
Math lecture 10 (Introduction to Integration)Math lecture 10 (Introduction to Integration)
Math lecture 10 (Introduction to Integration)
 
Benginning Calculus Lecture notes 8 - linear, quadratic approximation
Benginning Calculus Lecture notes 8 - linear, quadratic approximationBenginning Calculus Lecture notes 8 - linear, quadratic approximation
Benginning Calculus Lecture notes 8 - linear, quadratic approximation
 
Benginning Calculus Lecture notes 15 - techniques of integration
Benginning Calculus Lecture notes 15 - techniques of integrationBenginning Calculus Lecture notes 15 - techniques of integration
Benginning Calculus Lecture notes 15 - techniques of integration
 
Benginning Calculus Lecture notes 2 - limits and continuity
Benginning Calculus Lecture notes 2 - limits and continuityBenginning Calculus Lecture notes 2 - limits and continuity
Benginning Calculus Lecture notes 2 - limits and continuity
 
Benginning Calculus Lecture notes 12 - anti derivatives indefinite and defini...
Benginning Calculus Lecture notes 12 - anti derivatives indefinite and defini...Benginning Calculus Lecture notes 12 - anti derivatives indefinite and defini...
Benginning Calculus Lecture notes 12 - anti derivatives indefinite and defini...
 

Similar to Math lecture 7 (Arithmetic Sequence)

Arithmetic sequences and series[1]
Arithmetic sequences and series[1]Arithmetic sequences and series[1]
Arithmetic sequences and series[1]indu psthakur
 
Geometric the power of math by rivsal fredy
Geometric the power of math by rivsal fredyGeometric the power of math by rivsal fredy
Geometric the power of math by rivsal fredyRivsal Fredy
 
CHAPTER final.pdf
CHAPTER final.pdfCHAPTER final.pdf
CHAPTER final.pdfvivek827170
 
Calculus 08 techniques_of_integration
Calculus 08 techniques_of_integrationCalculus 08 techniques_of_integration
Calculus 08 techniques_of_integrationtutulk
 
3.-SEQUENCES-AND-SERIES-THEORY.hhsssspdf
3.-SEQUENCES-AND-SERIES-THEORY.hhsssspdf3.-SEQUENCES-AND-SERIES-THEORY.hhsssspdf
3.-SEQUENCES-AND-SERIES-THEORY.hhsssspdfnassorokayanda9412
 
thebinomialtheorem-170110005856.pdf
thebinomialtheorem-170110005856.pdfthebinomialtheorem-170110005856.pdf
thebinomialtheorem-170110005856.pdfRajDubey83
 
The binomial theorem class 11 maths
The binomial theorem class 11 mathsThe binomial theorem class 11 maths
The binomial theorem class 11 mathsDharmendra Dudi
 
1631-thebinomialtheorem-161031145734.pdf
1631-thebinomialtheorem-161031145734.pdf1631-thebinomialtheorem-161031145734.pdf
1631-thebinomialtheorem-161031145734.pdfRajDubey83
 
class 10 chapter 1- real numbers
class 10 chapter 1- real numbersclass 10 chapter 1- real numbers
class 10 chapter 1- real numberskaran saini
 

Similar to Math lecture 7 (Arithmetic Sequence) (20)

Arithmetic sequences and series[1]
Arithmetic sequences and series[1]Arithmetic sequences and series[1]
Arithmetic sequences and series[1]
 
Expresiones algebraicas
Expresiones algebraicasExpresiones algebraicas
Expresiones algebraicas
 
Geometric the power of math by rivsal fredy
Geometric the power of math by rivsal fredyGeometric the power of math by rivsal fredy
Geometric the power of math by rivsal fredy
 
CHAPTER final.pdf
CHAPTER final.pdfCHAPTER final.pdf
CHAPTER final.pdf
 
Binomial
BinomialBinomial
Binomial
 
Vivek
VivekVivek
Vivek
 
Calculus 08 techniques_of_integration
Calculus 08 techniques_of_integrationCalculus 08 techniques_of_integration
Calculus 08 techniques_of_integration
 
Exponential function
Exponential functionExponential function
Exponential function
 
3.-SEQUENCES-AND-SERIES-THEORY.hhsssspdf
3.-SEQUENCES-AND-SERIES-THEORY.hhsssspdf3.-SEQUENCES-AND-SERIES-THEORY.hhsssspdf
3.-SEQUENCES-AND-SERIES-THEORY.hhsssspdf
 
thebinomialtheorem-170110005856.pdf
thebinomialtheorem-170110005856.pdfthebinomialtheorem-170110005856.pdf
thebinomialtheorem-170110005856.pdf
 
1631 the binomial theorem
1631 the binomial theorem1631 the binomial theorem
1631 the binomial theorem
 
The binomial theorem class 11 maths
The binomial theorem class 11 mathsThe binomial theorem class 11 maths
The binomial theorem class 11 maths
 
1631-thebinomialtheorem-161031145734.pdf
1631-thebinomialtheorem-161031145734.pdf1631-thebinomialtheorem-161031145734.pdf
1631-thebinomialtheorem-161031145734.pdf
 
Advance algebra
Advance algebraAdvance algebra
Advance algebra
 
02 Notes Divide and Conquer
02 Notes Divide and Conquer02 Notes Divide and Conquer
02 Notes Divide and Conquer
 
Maths project
Maths projectMaths project
Maths project
 
class 10 chapter 1- real numbers
class 10 chapter 1- real numbersclass 10 chapter 1- real numbers
class 10 chapter 1- real numbers
 
Maths project
Maths projectMaths project
Maths project
 
Maths project
Maths projectMaths project
Maths project
 
104newton solution
104newton solution104newton solution
104newton solution
 

More from Osama Zahid

Various Casting Techniques
Various Casting TechniquesVarious Casting Techniques
Various Casting TechniquesOsama Zahid
 
Basic rope work & restraining of animals
Basic rope work & restraining of animalsBasic rope work & restraining of animals
Basic rope work & restraining of animalsOsama Zahid
 
Restraining of Animals
Restraining of AnimalsRestraining of Animals
Restraining of AnimalsOsama Zahid
 
Ticks (Soft and Hard)
Ticks (Soft and Hard)Ticks (Soft and Hard)
Ticks (Soft and Hard)Osama Zahid
 
Cyclorrapha by shoaib
Cyclorrapha by shoaibCyclorrapha by shoaib
Cyclorrapha by shoaibOsama Zahid
 
Ticks identification
Ticks identificationTicks identification
Ticks identificationOsama Zahid
 
Butterfly by asad aslam
Butterfly by asad aslamButterfly by asad aslam
Butterfly by asad aslamOsama Zahid
 
Ixodes (Hard Ticks)
Ixodes (Hard Ticks)Ixodes (Hard Ticks)
Ixodes (Hard Ticks)Osama Zahid
 
Brachycera by maham
Brachycera by mahamBrachycera by maham
Brachycera by mahamOsama Zahid
 
Hyalomma (Ticks)
Hyalomma (Ticks)Hyalomma (Ticks)
Hyalomma (Ticks)Osama Zahid
 
Brachycera by 17 , 18 ,30
Brachycera by 17 , 18 ,30Brachycera by 17 , 18 ,30
Brachycera by 17 , 18 ,30Osama Zahid
 
Fleas by jalees mirza
Fleas by jalees mirzaFleas by jalees mirza
Fleas by jalees mirzaOsama Zahid
 
Amblyomma variegatum (Ticks)
Amblyomma variegatum (Ticks)Amblyomma variegatum (Ticks)
Amblyomma variegatum (Ticks)Osama Zahid
 
Amblyomma (Ticks)
Amblyomma (Ticks)Amblyomma (Ticks)
Amblyomma (Ticks)Osama Zahid
 
Drug Dosage Forms
Drug Dosage FormsDrug Dosage Forms
Drug Dosage FormsOsama Zahid
 
Factors Affecting the Productivity of Small Ruminants
Factors Affecting the Productivity of Small RuminantsFactors Affecting the Productivity of Small Ruminants
Factors Affecting the Productivity of Small RuminantsOsama Zahid
 

More from Osama Zahid (20)

Various Casting Techniques
Various Casting TechniquesVarious Casting Techniques
Various Casting Techniques
 
Basic rope work & restraining of animals
Basic rope work & restraining of animalsBasic rope work & restraining of animals
Basic rope work & restraining of animals
 
Restraining of Animals
Restraining of AnimalsRestraining of Animals
Restraining of Animals
 
Ticks (Soft and Hard)
Ticks (Soft and Hard)Ticks (Soft and Hard)
Ticks (Soft and Hard)
 
Cyclorrapha by shoaib
Cyclorrapha by shoaibCyclorrapha by shoaib
Cyclorrapha by shoaib
 
Ticks identification
Ticks identificationTicks identification
Ticks identification
 
Butterfly by asad aslam
Butterfly by asad aslamButterfly by asad aslam
Butterfly by asad aslam
 
Soft ticks
Soft ticksSoft ticks
Soft ticks
 
Ixodes (Hard Ticks)
Ixodes (Hard Ticks)Ixodes (Hard Ticks)
Ixodes (Hard Ticks)
 
Brachycera by maham
Brachycera by mahamBrachycera by maham
Brachycera by maham
 
Hyalomma (Ticks)
Hyalomma (Ticks)Hyalomma (Ticks)
Hyalomma (Ticks)
 
Brachycera by 17 , 18 ,30
Brachycera by 17 , 18 ,30Brachycera by 17 , 18 ,30
Brachycera by 17 , 18 ,30
 
Fleas by jalees mirza
Fleas by jalees mirzaFleas by jalees mirza
Fleas by jalees mirza
 
Flea lecture
Flea lectureFlea lecture
Flea lecture
 
Amblyomma variegatum (Ticks)
Amblyomma variegatum (Ticks)Amblyomma variegatum (Ticks)
Amblyomma variegatum (Ticks)
 
Bugs
BugsBugs
Bugs
 
Amblyomma (Ticks)
Amblyomma (Ticks)Amblyomma (Ticks)
Amblyomma (Ticks)
 
Drug Dosage Forms
Drug Dosage FormsDrug Dosage Forms
Drug Dosage Forms
 
Factors Affecting the Productivity of Small Ruminants
Factors Affecting the Productivity of Small RuminantsFactors Affecting the Productivity of Small Ruminants
Factors Affecting the Productivity of Small Ruminants
 
Helminthology
HelminthologyHelminthology
Helminthology
 

Recently uploaded

The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphThiyagu K
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxRoyAbrique
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpinRaunakKeshri1
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docxPoojaSen20
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application ) Sakshi Ghasle
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppCeline George
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxmanuelaromero2013
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionSafetyChain Software
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991RKavithamani
 

Recently uploaded (20)

The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpin
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docx
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application )
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website App
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptx
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory Inspection
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
 

Math lecture 7 (Arithmetic Sequence)

  • 1. Arithmetic Sequence In an Arithmetic Sequence the difference between one term and the next is a constant. In other words, you just add the same value each time ... infinitely. Example: 1, 4, 7, 10, 13, 16, 19, 22, 25, ... This sequence has a difference of 3 between each number. In General you could write an arithmetic sequence like this: {a, a+d, a+2d, a+3d, ... } where:   a is the first term, and d is the difference between the terms (called the "common difference") Example: (continued) 1, 4, 7, 10, 13, 16, 19, 22, 25, ... Has:   a = 1 (the first term) d = 3 (the "common difference" between terms)
  • 2. And we get: {a, a+d, a+2d, a+3d, ... } {1, 1+3, 1+2×3, 1+3×3, ... } {1, 4, 7, 10, ... } Rule You can write an Arithmetic Sequence as a rule: xn = a + d(n-1) (We use "n-1" because d is not used in the 1st term). Example: Write the Rule, and calculate the 4th term for 3, 8, 13, 18, 23, 28, 33, 38, ... This sequence has a difference of 5 between each number. The values of a and d are:   a = 3 (the first term) d = 5 (the "common difference") The Rule can be calculated: xn = a + d(n-1) = 3 + 5(n-1) = 3 + 5n - 5 = 5n - 2 So, the 4th term is: x4 = 5×4 - 2 = 18
  • 3. Summing an Arithmetic Series To sum up the terms of this arithmetic sequence: a + (a+d) + (a+2d) + (a+3d) + ... use this formula: Example: Add up the first 10 terms of the arithmetic sequence: { 1, 4, 7, 10, 13, ... } The values of a, d and n are:  a = 1 (the first term) d = 3 (the "common difference" between terms)  n = 10 (how many terms to add up)  So: Becomes: = 5(2+9·3) = 5(29) = 145
  • 4. Geometric Sequences In a Geometric Sequence each term is found by multiplying the previous term by a constant. Example: 2, 4, 8, 16, 32, 64, 128, 256, ... This sequence has a factor of 2 between each number. Each term (except the first term) is found by multiplying the previous term by 2. In General you could write a Geometric Sequence like this: {a, ar, ar2, ar3, ... } where:   a is the first term, and r is the factor between the terms (called the "common ratio") Example: {1,2,4,8,...} The sequence starts at 1 and doubles each time, so   a=1 (the first term) r=2 (the "common ratio" between terms is a doubling) So we would get: {a, ar, ar2, ar3, ... } = {1, 1×2, 1×22, 1×23, ... } = {1, 2, 4, 8, ... }
  • 5. But be careful, r should not be 0:  When r=0, you get the sequence {a,0,0,...} which is not geometric The Rule You can also calculate any term using the Rule: xn = ar(n-1) (We use "n-1" because ar0 is for the 1st term) Example: 10, 30, 90, 270, 810, 2430, ... This sequence has a factor of 3 between each number. The values of a and r are:   a = 10 (the first term) r = 3 (the "common ratio") The Rule for any term is: xn = 10 × 3(n-1) So, the 4th term would be: x4 = 10×3(4-1) = 10×33 = 10×27 = 270 And the 10th term would be: x10 = 10×3(10-1) = 10×39 = 10×19683 = 196830
  • 6. Summing a Geometric Series When you need to sum a Geometric Sequence, there is a handy formula. To sum: a + ar + ar2 + ... + ar(n-1) Each term is ark, where k starts at 0 and goes up to n-1 Use this formula: a is the first term r is the "common ratio" between terms n is the number of terms Example: Sum the first 4 terms of 10, 30, 90, 270, 810, 2430, ... This sequence has a factor of 3 between each number. The values of a, r and n are:    a = 10 (the first term) r = 3 (the "common ratio") n = 4 (we want to sum the first 4 terms) So: Becomes:
  • 7. You could check it yourself: 10 + 30 + 90 + 270 = 400 And, yes, it was easier to just add them in this case, because there were only 4 terms. But imagine you had to sum up lots of terms, then the formula is better to use. Harmonic Sequences Definition and Meaning: A sequence formed by the reciprocal of arithmetic progression. Formula : Example : 1,1/2,1/3,1/4,..
  • 8. Mathematical Induction Mathematical Induction is a special way of proving things. It has only 2 steps:   Step 1. Show it is true for the first one Step 2. Show that if any one is true then the next one is true Then all will be true Have you heard of the "Domino Effect"?   Step 1. The first domino falls Step 2. If any domino falls, the next domino falls So ... all dominos will fall! That is how it works. In the world of numbers we say:   Step 1. Show it is true for n=1 Step 2. Show that if n=k is true then n=k+1 is also true How to Do it Step 1 is usually easy, you just have to prove it is true for n=1 Step 2 is best done this way:   Assume it is true for n=k Prove it is true for n=k+1 (you can use the n=k case as a fact.)
  • 9. Step 2 can often be tricky ... because you may need to use imaginative tricks to make it work! Like in this example: Example: 3n-1 is a multiple of 2 Is that true? Let us find out. 1. Show it is true for n=1 31-1 = 3-1 = 2 Yes 2 is a multiple of 2. That was easy. 31-1 is true 2. Assume it is true for n=k 3k-1 is true (Hang on! How do we know that? We don't! It is an assumption ... that we treat as a fact for the rest of this example) Now, prove that 3k+1-1 is a multiple of 2 3k+1 is also 3×3k And then split 3× into 2× and 1× And each of these are multiples of 2 Because:   2·3k is a multiple of 2 (you are multiplying by 2) 3k-1 is true (we said that in the assumption above)
  • 10. So: 3k+1-1 is true DONE! Did you see how we used the 3k-1 case as being true, even though we had not proved it? That is OK, because we are relying on the Domino Effect ... ... we are asking if any domino falls will the next one fall? So we take it as a fact (temporarily) that the "n=k" domino falls (i.e. 3k-1 is true), and see if that means the "n=k+1" domino will also fall. Tricks I said before that you often need to use imaginative tricks. A common trick is to rewrite the n=k+1 case into 2 parts:   one part being the n=k case (which is assumed to be true) the other part can then be checked to see if it is also true We did that in the example above, and here is another one: Example: Adding up Odd Numbers 1 + 3 + 5 + ... + (2n-1) = n2 1. Show it is true for n=1 1 = 12 is True 2. Assume it is true for n=k 1 + 3 + 5 + ... + (2k-1) = k2 is True Now, prove it is true for "k+1" 1 + 3 + 5 + ... + (2k-1) + (2(k+1)-1) = (k+1)2 ... ?
  • 11. We know that 1 + 3 + 5 + ... + (2k-1) = k2 (the assumption above), so we can do a replacement for all but the last term: k2 + (2(k+1)-1) = (k+1)2 Now expand all terms: k2 + 2k + 2 - 1 = k2 + 2k+1 And simplify: k2 + 2k + 1 = k2 + 2k + 1 They are the same! So it is true. So: 1 + 3 + 5 + ... + (2(k+1)-1) = (k+1)2 is True DONE! Polynomials A polynomial looks like this: example of a polynomial this one has 3 terms Polynomial comes from poly- (meaning "many") and -nomial (in this case meaning "term") ... so it says "many terms" A polynomial can have: constants (like 3, -20, or ½) variables (like x and y) exponents (like the 2 in y2), but only 0, 1, 2, 3, ... etc are allowed
  • 12. that can be combined using addition, subtraction, multiplication and division ... ... except ... ... not division by a variable (so something like 2/x is right out) So: A polynomial can have constants, variables and exponents, but never division by a variable. Polynomial or Not? These are polynomials:  3x  x-2  -6y2 - (7/9)x  3xyz + 3xy2z - 0.1xz - 200y + 0.5  512v5+ 99w5  5
  • 13. (Yes, even "5" is a polynomial, one term is allowed, and it can even be just a constant!) And these are not polynomials  3xy-2 is not, because the exponent is "-2" (exponents can only be 0,1,2,...) 2/(x+2) is not, because dividing by a variable is not allowed 1/x is not either  √x is not, because the exponent is "½" (see fractional exponents)   But these are allowed:    x/2 is allowed, because you can divide by a constant also 3x/8 for the same reason √2 is allowed, because it is a constant (= 1.4142...etc) Monomial, Binomial, Trinomial There are special names for polynomials with 1, 2 or 3 terms: How do you remember the names? Think cycles!
  • 14. There is also quadrinomial (4 terms) and quintinomial (5 terms), but those names are not often used. Can Have Lots and Lots of Terms Polynomials can have as many terms as needed, but not an infinite number of terms. Binomial Theorem What happens when you multiply a binomial by itself ... many times? Here is the answer: Don't worry ... I will explain it all! And you will learn lots of cool math symbols along the way. Binomial A binomial is a polynomial with two terms
  • 15. example of a binomial Multiplying The Binomial Theorem shows what happens when you multiply a binomial by itself (as many times as you want). It works because there is a pattern ... let us see if we can discover it. Exponents But first you need to know what an Exponent is. Here is a quick summary: An exponent says how many times to use something in a multiplication. Example: 82 = 8 × 8 = 64 An exponent of 1 means just to have it appear once, so you get the original value: Example: 81 = 8 An exponent of 0 means not to use it at all, and we have only 1: Example: 80 = 1 Exponents of (a+b)
  • 16. Now on to the binomial. We will use the simple binomial a+b, but it could be any binomial. Let us start with an exponent of 0 and build upwards. Exponent of 0 When an exponent is 0, you get 1: (a+b)0 = 1 Exponent of 1 When the exponent is 1, you get the original value, unchanged: (a+b)1 = a+b Exponent of 2 An exponent of 2 means to multiply by itself (see how to multiply polynomials): (a+b)2 = (a+b)(a+b) = a2 + 2ab + b2 Exponent of 3 For an exponent of 3 just multiply again: (a+b)3 = (a+b)(a2 + 2ab + b2) = a3 + 3a2b + 3ab2 + b3 We have enough now to start talking about the pattern.
  • 17. The Pattern In the last result we got: a3 + 3a2b + 3ab2 + b3 Now, notice the exponents of Likewise the exponents of a. They start at 3 and go down: 3, 2, 1, 0: b go upwards: 0, 1, 2, 3: If we number the terms 0 to n, we get this: k=0 k=1 k=2 k=3 a3 a2 a 1 1 b b2 b3 k=2: k=3: Which can be brought together into this: an-kbk How about an example to see how it works: Example: When the exponent, n, is 3. The terms are: k=0: k=1:
  • 18. an-kbk = a3-0b0 = a3 an-kbk = a3-1b1 = a2b an-kbk = a3-2b2 = ab2 an-kbk = a3-3b3 = b3 It works like magic! Coefficients So far we have: But we really need: a3 + a2b + ab2 + b3 a3 + 3a2b + 3ab2 + b3 We are missing the numbers (which are called coefficients). Let's look at all the results we got before, from (a+b)0 up to (a+b)3: And now look at just the coefficients (with a "1" where a coefficient wasn't shown):
  • 19. They actually make Pascal's Triangle! Each number is just the two numbers above it added together (except for the edges, which are all "1") (Here I have highlighted that 1+3 = 4) Armed with this information let us try something new ... an exponent of 4: a exponents go 4,3,2,1,0: a4 + b exponents go 0,1,2,3,4: a4 + a3b + a2b2 + ab3 + b4 coefficients go 1,4,6,4,1: a4 + 4a3b + 6a2b2 + 4ab3 + b4 And that is the correct answer. a3 + a2 + a + 1