Download Sums Products and Proofs Contents 1 Introduction 2 ∑ = Sum

Survey
yes no Was this document useful for you?
   Thank you for your participation!

* Your assessment is very important for improving the workof artificial intelligence, which forms the content of this project

Document related concepts

Infinity wikipedia , lookup

Mathematics of radio engineering wikipedia , lookup

Ambiguity wikipedia , lookup

Positional notation wikipedia , lookup

History of mathematical notation wikipedia , lookup

Functional decomposition wikipedia , lookup

Mathematical proof wikipedia , lookup

Arithmetic wikipedia , lookup

Elementary algebra wikipedia , lookup

Hyperreal number wikipedia , lookup

Factorization wikipedia , lookup

Non-standard calculus wikipedia , lookup

Laws of Form wikipedia , lookup

Principia Mathematica wikipedia , lookup

Collatz conjecture wikipedia , lookup

Bra–ket notation wikipedia , lookup

Elementary mathematics wikipedia , lookup

Large numbers wikipedia , lookup

Factorial wikipedia , lookup

Big O notation wikipedia , lookup

Addition wikipedia , lookup

Abuse of notation wikipedia , lookup

Proofs of Fermat's little theorem wikipedia , lookup

Transcript
MITES Physics III
Summer 2010
Sums Products and Proofs
Contents
1 Introduction
P
2
= Sum
1
3 Π = Product
2
4 Proofs by Induction
3
5 Problems
5
1
1
Introduction
These notes will introduce two topics: A notation which helps simplify long mathematical expressions and proofs
by induction. A proof by induction is essentially a simple way to prove claims about positive integers. In terms of
the usefulness of these topics in calculus, the information on notation is the most relevant while the introduction to
proofs by induction is a crucial stepping stone in the general study of rigorous (proof-based) mathematics.
2
P
= Sum
The Greek capital letter Σ (”Sigma”) will be the focus of this section. The essential idea is that whenever you see
the symbol Σ, it means you are adding some set of quantities. Alternatively, whenever we compute the sum of some
quantity in which each term in the sum obeys a fixed rule we can write the sum using Σ. This idea is best seen with
examples. Consider the sum of the numbers from 1 to 10. We can write this in long form as
1 + 2 + 3 + · · · + 9 + 10 = 55
(1)
Or, using the Σ notation we can write this as
10
X
i = 55
(2)
i=1
which is much more concise than Eq (1). Let’s decompose this notation to see how each part contributes to the
definition of Σ as a sum. There are three main elements besides the Σ itself.
1
last X
number
(3)
expression
index = first number
Below the Sigma we wrote ”index = first number”. The index is the number we choose to document where we
are in the summation. In the first example i, is the index. The first number is the first value the index assumes in
the sum. In the first example this value is 0. To the right of the Sigma is an expression which defines how terms in
the summation depend on i. The expression is always some function of i where i is an integer. In the case of the
first example, this function of i is just simply i. At the top of the Sigma is the last number the index i assumes.
This number determines the ending point of the summation. In our first example this number is 10. To compute
the sum we add all the terms from the i = first number all the way to i = last number with i increasing by integer
steps with each successive term. Here’s another example.
1 + 4 + 9 + · · · + N2
(4)
can be written as
N
X
i2
(5)
i=1
It is important to realize that the sum is independent of the index we choose to define its elements. This means
we can replace i with any other variable we wish and the value of the sum will be unchanged. This ”independence
of parameter” is a general property of all types of sums and even has an analog in calculus in which the value of a
definite integral is independent of the variable we use to integrate it.
As a final comment, it is not difficult to introduce the notion of infinite sums into our notation. An infinite sum
has no final number and instead continues on and on without end. In this way the last number can be treated as
∞ or equivalently we can take the last number to be N and simply take the limit of the sum as N goes to infinity.
Here’s an example
1 + 4 + 9 + · · · = lim
N →∞
3
N
X
i=1
i2 =
∞
X
i2
(6)
i=1
Π = Product
After we’ve gone through Sigmas and Sums, Pis and Products are easy. All the information about index, first
number, and expression transfer over except now we’re computing products instead of sums. For example consider
the product of the numbers 1 to 10
1 × 2 × 3 × 4 × · · · × 10 = 3, 628, 800
2
(7)
is written as
10
Y
i = 3, 628, 800
(8)
i=1
It should be clear that as with sums the value of a product is independent of the index. Product notation gives
us a different way of expressing the factorial
N
Y
i = N!
(9)
i=1
Here’s another illustrative example. We will use our sigma and pi notation to express a fundamental property
of exponentials. If we take the product of two exponentials ea1 × ea2 we know we can write the result as ea1 +a2 .
Generalizing to N different exponentials
ea1 × ea2 × · · · × eaN = ea1 +a2 +···+an
(10)
Or using our notation and the convenient notation exp(x) = ex we can write
N
Y
exp(ai ) = exp
!
ai
(11)
i=1
i=1
4
N
X
Proofs by Induction
Now for a completely unrelated topic. Suppose we believe we understand a general property of a certain number of
integers, but we don’t know if the property applies to all integers1 . How can we prove the result for all integers?
Well we can first show that the property is true for the number 1. Then we can prove that if the property is true for
a general integer k then it must be true for an integer k + 1. In this way we see that if the rule is true for 1 then it
is true for 1+1=2 and it is true for 2+1=3 and so on. Here’s a classic example
Let’s add the first N integers. Starting off easy let’s add 1 and 2
1+2=3
and another one
1 When
I say integers I really mean only positive integers
3
(12)
1+2+3
=
6
(13)
1+2+3+4
=
10
(14)
1+2+3+4+5
=
15
(15)
Noticing the pattern we can claim
1 + 2 + ··· + N =
N (N + 1)
2
(16)
Now to prove it with induction. We first must show that the result is true for N = 1. This is easy; we just have
1=
1(1 + 1)
=1
2
(17)
Now we must assume that the rule is true for a general integer k and then show that the rule must be true for
k + 1. So we must prove that if k is true then k + 1 is true. If the formula applies to k we have
1 + 2 + ··· + k =
k(k + 1)
2
(18)
And we must prove that the above formula implies a similar formula for k + 1
1 + 2 + ··· + k + 1 =
(k + 1)(k + 2)
2
We begin by adding k + 1 to both sides of Eq (18)
1 + 2 + ··· + k + k + 1 =
k(k + 1)
+k+1
2
Now we will isolate the right-side and perform some algebra
k(k + 1)
+k+1
2
k(k + 1) + 2(k + 1)
2
k 2 + k + 2k + 2
2
(k + 1)(k + 2)
2
=
=
=
4
(19)
So we have
1 + 2 + ··· + k + 1 =
(k + 1)(k + 2)
2
(20)
and the formula is therefore true for all positive integers. Here is a summary of the general steps in a Proof by
Induction
Proof by Induction
1)Show that the formula is true for N = 1
2)Assume the formula is true for k
3)Show using the formula is step 2) that the formula is true for k + 1
5
Problems
1.) Use the properties of logarithms to show that the following formula is true
ln
#
"N
Y αi
i=1
βi
=
N
X
(ln αi − ln βi )
i=1
α is the lower case Greek letter ”alpha” and β is the lower case Greek letter ”beta”
2.) Use proof by induction to prove that the following results are satisfied by all integers n
n
X
(2i − 1) = n2
a)
i=1
n
X
n(n + 1)(2n + 1)
b)
i3 =
6
i=1
n
X
c)
2j−1 = 2n − 1
j=1
n
3.) Let
be defined as
k
n
n!
=
k
k!(n − k)!
Use induction to prove that
n
(a + b) =
n X
n
k=1
for all positive integers n
5
k
an−k bk