Discrete Mathematics CS 2610

Slides:



Advertisements
Similar presentations
Chapter 8 Vocabulary. Section 8.1 Vocabulary Sequences An infinite sequence is a function whose domain is the set of positive integers. The function.
Advertisements

Section 9.1 – Sequences.
The sum of the infinite and finite geometric sequence
A sequence is a set of numbers arranged in a definite order
Sequences & Summations Section 2.4 of Rosen Fall 2008 CSCE 235 Introduction to Discrete Structures Course web-page: cse.unl.edu/~cse235 Questions:
Copyright © 2007 Pearson Education, Inc. Slide 8-1 Warm-Up Find the next term in the sequence: 1, 1, 2, 6, 24, 120,…
Series NOTES Name ____________________________ Arithmetic Sequences.
Geometric Sequences and Series
Arithmetic Sequences and Series
Functions, Sequences, and Sums
1 Sequences and Summations CS/APMA 202 Rosen section 3.2 Aaron Bloomfield.
Section 11-1 Sequences and Series. Definitions A sequence is a set of numbers in a specific order 2, 7, 12, …
Sequences and Series By: Olivia, Jon, Jordan, and Jaymie.
Sequences and Summations
1 Discrete Structures – CNS2300 Text Discrete Mathematics and Its Applications Kenneth H. Rosen Chapter 3 Mathematical Reasoning, Induction and Recursion.
SEQUENCES AND SERIES Arithmetic. Definition A series is an indicated sum of the terms of a sequence.  Finite Sequence: 2, 6, 10, 14  Finite Series:2.
Sequences and Summations
Section 2.4. Section Summary Sequences. Examples: Geometric Progression, Arithmetic Progression Recurrence Relations Example: Fibonacci Sequence Summations.
ADVANCED ALG/TRIG Chapter 11 – Sequences and Series.
Notes 9.4 – Sequences and Series. I. Sequences A.) A progression of numbers in a pattern. 1.) FINITE – A set number of terms 2.) INFINITE – Continues.
Series and Sequences An infinite sequence is an unending list of numbers that follow a pattern. The terms of the sequence are written a1, a2, a3,...,an,...
13.3 – Arithmetic and Geometric Series and Their Sums Objectives: You should be able to…
By Sheldon, Megan, Jimmy, and Grant..  Sequence- list of numbers that usually form a pattern.  Each number in the list is called a term.  Finite sequence.
Geometric Sequences and Series Section Objectives Recognize, write, and find nth terms of geometric sequences Find the nth partial sums of geometric.
4.7 Define & Use Sequences & Series. Vocabulary  A sequence is a function whose domain is a set of consecutive integers. If not specified, the domain.
Lesson 8.1 Page #1-25(EOO), 33, 37, (ODD), 69-77(EOO), (ODD), 99, (ODD)
Example Prove that: “IF 3n + 2 is odd, then n is odd” Proof by Contradiction: -p = 3n + 2 is odd, q = n is odd. -Assume that ~(p  q) is true OR -(p 
Sequences and Summations
Sequences and Summations Section 2.4. Section Summary Sequences. – Examples: Geometric Progression, Arithmetic Progression Recurrence Relations – Example:
MATH 2160 Sequences. Arithmetic Sequences The difference between any two consecutive terms is always the same. Examples: 1, 2, 3, … 1, 3, 5, 7, … 5, 10,
CS 285- Discrete Mathematics
Essential Questions Introduction to Sequences
How do I find the sum & terms of geometric sequences and series?
9.3 Geometric Sequences and Series. 9.3 Geometric Sequences A sequence is geometric if the ratios of consecutive terms are the same. This common ratio.
A LESSON BY U S PRAJAPATI, PGT MATH, KV KHAGAUL GEOMETRIC SEQUENCES AND SERIES.
Section 2.4. Section Summary  Sequences. o Examples: Geometric Progression, Arithmetic Progression  Recurrence Relations o Example: Fibonacci Sequence.
Sequences and Summations ICS 6D Prof. Sandy Irani.
Lecture # 20 Sequence & Series
Arithmetic Sequences and Series Section Objectives Use sequence notation to find terms of any sequence Use summation notation to write sums Use.
11.1 Sequences. A sequence is a list of numbers written in an explicit order. n th term Any real-valued function with domain a subset of the positive.
Essential Question: How do you find the nth term and the sum of an arithmetic sequence? Students will write a summary describing the steps to find the.
Series and Sequences An infinite sequence is an unending list of numbers that follow a pattern. The terms of the sequence are written a1, a2, a3,...,an,...
Arithmetic Sequences and Series
Sequences and Series spaces with Summability
Geometric Sequences and Series
12.1 – Arithmetic Sequences and Series
Arithmetic and Geometric Sequences
The sum of the infinite and finite geometric sequence
Sequences & Summations
13.3 – Arithmetic and Geometric Series and Their Sums
To any sequence we can assign a sequence with terms defined as
Sequences and Summations
Sect.R10 Geometric Sequences and Series
Discrete Mathematics Lecture#14.
Sequences and Summations
Sequences and Series College Algebra
CS100: Discrete structures
Section 9.1 Sequences and Series.
How do I find the sum & terms of geometric sequences and series?
Section 11.1 Sequences.
ICS 253: Discrete Structures I
Sequences and Series.
Sigma/Summation Notation
Sequences & Summations
9.5 Series.
Geometric Sequences and Series
Series.
Sequences & Summations
10.1 Sequences and Summation Notation
Presentation transcript:

Discrete Mathematics CS 2610 February 24, 2009 – part 1

Sequences (Section 2.4) Def. :A sequence is a function from a subset of integers I to a set S, (I  Z) f:IS Usually, the domain I is either a set of positive or non- negative consecutive integers {1,2,3…} or {0,1,2,3…}. We will usually be using as the domain of I the sequence: I = {i  Z | i > 0} Notation: Let i  I, the image f(i) is denoted as ai, where ai  S ai is called a term of the sequence {ai} represents the entire sequence Note: If the domain I is finite, the sequence is finite, otherwise the sequence is infinite.

Sequences Examples: Let the sequence {ai} be defined as ai = i + 3: Terms: a1, a2, a3, … Sequence {ai}: { 4, 5, 6, 7, 8….} ai = i2: Sequence {ai}: { 1, 4, 9, 16, 25….} ai = 1/i: Sequence {ai}: { 1, 1/2, 1/3, 1/4, 1/5….}

Sequences Def.:An arithmetic progression is a sequence of the form a, a + d, a + 2d, a + 3d,… where a  R is the initial term, and d  R is the common difference, Observe that if I = {i where i >= 0 }, ai = a + i*d ai+1 = ai + d Example: Let d = 3, {an} such that a=2, d=3 {an} = {2, 5, 8, 11, 14,…}

Sequences Def.: A geometric progression is a sequence of the form a, ar, ar2, ar3,… where a  R is the initial term, and r  R is the common ratio. Observe that if I = {i | i >=0 }, ai = ari ai+1 = air, where a is the first term It grows exponentially

Sequences Sequences (non-geometric & non-arithmetic) Fibonacci sequence Fi = Fi-1 + Fi-2, n > 2 where F1 = 1 and F2 = 1 Each term is the sum of the previous two terms {Fi} : { 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, … } The pairs of rabbits on an island problem ai = in, n is a positive integer constant ai = i!, i  Z+

Fibonacci Sequence (aside) This sequence is seen frequently in Nature Seashells Arrangement of seeds (pine cone) Leaf and leaf segments Rabbit Pairs: start with one pair, offspring appear after 2nd month (so in month 3 we have two pair, month 4 we have three pair, month five we have 5 pair, etc.) Aka, Leonardo of Pisa, filius Bonacci (son of Bonacci)

Fibonacci Sequence (aside) In the limit as n  , the ratio between successive terms of the Fibonacci sequence approaches 1.618 This is called the “golden ratio” Ratio of human leg length to arm length Ratio of successive layers in a conch shell

Some Useful Sequences n2 = 1, 4, 9, 16, 25, 36, …

OEIS Online Encyclopedia of Integer Sequences http://www.research.att.com/~njas/sequences/ Or just google for “integer sequences” (try it with my sequence: 1, 2, 4, 7, 13, 26, 50, …)

Summations Let {ai} be a sequence. We can create the following summation of this sequence i is called the index of summation j  Z+ is the lower bound (or limit) k  Z+, k  j is the upper bound (Also have ∏ for product.)

Summations Example 5 3 2 å = i

Summations Example: The limit is defined as Let {ai} be an infinite sequence, The limit is defined as The limit may or may not converge to a value Example: does not converge

Summations Let X = {x1, x2, …} and f(x) be a function on X if X = {x | P(x)},

Summations Examples X = {0, 2, 4, 6, 8}, P(x): x is a positive integer divisible by 3 or 11