CHAPTER 9: DISCRETE MATH - Kkuniyuk

1y ago
10 Views
2 Downloads
1.18 MB
36 Pages
Last View : 2m ago
Last Download : 3m ago
Upload by : Brady Himes
Transcription

(Chapter 9: Discrete Math) 9.01CHAPTER 9: DISCRETE MATHCalculus tends to deal more with “continuous” mathematics than “discrete” mathematics.What is the difference? Analogies may help the most. Discrete is digital; continuous is analog.Discrete is a dripping faucet; continuous is running water. Discrete math tends to deal withthings that you can “list,” even if the list is infinitely long. Math 245 is the Discrete Math courseat Mesa.SECTION 9.1: SEQUENCES AND SERIES, andSECTION 9.6: COUNTING PRINCIPLESPART A: SEQUENCESAn infinite sequence can usually be thought of as an ordered list of real numbers.It is often denoted by either:a1 , a2 , a3 , ora0 , a1 , a2 , (this is more common in Calculus)where each of the “ ai ”s represent real numbers called terms.If we’re lucky, there is a nice pattern to our sequence of numbers – a pattern that we candescribe using simple mathematical expressions.

(Chapter 9: Discrete Math) 9.02ExampleWrite the first three terms of the sequence with general n th term an n3 1 .Assume that we begin with n 1 .Solution() ( 2) ( 3)3n 1 : a1 1 1 0n 2 : a2n 3 : a33 1 73 1 26The first three terms are: 0, 7, and 26.()We may graph terms as the points n, an , just as we used to graph points( x, f ( x )) .Technical Note: Observe that the graph of the sequence is a “discretized”version of the graph of f x x 3 1, where the domain is the set of positive()integers. In this sense, sequences may be thought of as functions.

(Chapter 9: Discrete Math) 9.03PART B: SIGN ALTERNATORSAlternating sequences have terms that alternate (i.e., consistently switch) betweenpositive and negative terms. They arise frequently in Calculus.Example( )nWrite the first four terms of the sequence where an 1 n .Assume that we begin with n 1 .Solution( )a ( 1) 2 2a ( 1) 3 3a ( 1) 4 41n 1 : a1 1 1 12n 2:23n 3:34n 4:4Recall that the parity of an integer is either “even” or “odd.”The parity of n here determines the sign of the term.ExampleHow can we obtain an alternating sequence like the one above, but starting with apositive term? Let’s adjust our sign alternator.( )Try: an 1n 1( )n , or an 1n 1nIn either case, we obtain: 1, 2 , 3, 4 , PART C: EVEN VS. ODD2n yields even integers, where n Z .2n 1 and 2n 1 yield odd integers, where n Z .These are often used to describe sequences in Calculus.

(Chapter 9: Discrete Math) 9.04PART D: FACTORIALSDo you see the n! button on your calculator? This is n factorial (not n excited). It is oftenused to describe sequences.We define:0! 1()If n is a positive integer n Z ,n! the product of the integers from 1 to n( )( )( ) ( )Equivalently: n! ( n ) ( n 1) ( n 2 ) ( 2 ) (1)If n is large: n! 1 2 3 n(Think: Countdown.)Examples0! 11! 12! 2 1 2( )( )3! ( 3) ( 2 ) (1) 64! ( 4 ) ( 3) ( 2 ) (1) 24There is a short cut: 4! 4 3!Factorial is at the same level as exponentiation in the order of operations;they both represent successive multiplications. Therefore, the factorialoperator (!) binds more tightly than the multiplication operator , which is()( )()lower in the order of operations. In this case, 4! 4 3! ; this may beclearer.()In general, if n Z : n! n n 1 ! , and 0! 1This is called a recursive definition of the factorial function, because itdescribes how previous values determine later values. In this case, we showhow we get from n 1 ! to n! .()

(Chapter 9: Discrete Math) 9.05Technical Note: Can we talk about 3.5!, say? The gamma function, which you may studyin Math 151: Calculus II at Mesa, is a continuous version of the factorial function.PART E: FACTORIALS, COUNTING PRINCIPLES, AND SIMPLIFICATIONS(SECTION 9.6)ExampleHow many ways are there to order a standard deck of 52 cards?SolutionThere are 52 possibilities for the first card.Once the first card is set, there are 51 possibilities for the second card.Once the first two cards are set, there are 50 possibilities for the third card.And so on Once the first 51 cards are set, there is only 1 possibility left for the last card.By the Fundamental Counting Principle described on p.663 of Larson, wemultiply together these numbers of possibilities.The number of ways is:(52) (51) (50) (1) , better known as 52! , which is about 8 1067.That’s an 8 followed by 67 digits – literally astronomical!n! grows in value very fast as n grows. Many calculators can’t evenhandle 100!.In general:The number of ways to order n distinct items is: n!The different possible orders are called permutations.

(Chapter 9: Discrete Math) 9.06Example (An elaboration on Example 9 on p.668 in Larson.)How many possible “hands” of five cards can be drawn from a deck of 52 cards?In other words, how many ways are there to choose five cards from a deck of 52?(The order among the five chosen cards does not matter.)Solution 52 C5 , or , called “52 choose 5.” 5 This is the number of combinations of 52 (distinct) items taken 5 at a time.This number is denoted by52 52 52!It turns out that . Why? 5 5! 47!There are 52! ways to order the complete deck of 52 cards.Imagine a divider separating the first five cards from the last (other)47 cards. Let’s call the first five cards the “winners” and the last 47cards the “losers.” We do not care about the order among the fivewinners, so we divide by 5!. (The technical reason for this issomewhat subtle and may not be immediately clear.) Likewise, we donot care about the order among the 47 losers (though poker playersmay beg to differ), so we divide by 47!, also.How can we simplify and compute52!so that a calculator can handle it5! 47!without a problem?Good calculators should be able to handle this, but it is a good skill toknow how to cancel factors when there are factorials involved.The idea here is to unravel one or more of the factorials so that we cancancel factorials.52!52 51 50 49 48 47! 5! 47!5! 47! 2,598,960By the way, there is about a 50-50 chance of getting at least a “pair.”

(Chapter 9: Discrete Math) 9.07Incidentally, we were guaranteed to get an integer because of thenature of the problem. This may not have been obvious from the formof the expression.In general:The number of ways to choose r distinct items from a set of n distinct items(if the order among the chosen items is irrelevant) is given by:n n n!Cr r r! n r !()Think: The number of ways to choose r winners and, therefore, n r losers. n These numbers are called binomial coefficients for reasons we shall see in r Section 9.5.See if you can find the n Cr button on your calculator.What about n Pr ?You may also see this button on your calculator. It is the number of partialpermutations of 52 (distinct) items taken 5 at a time.Let’s say we actually care about the order of the five chosen cards. The number ofsuch partial permutations is given by:52! 52 51 50 49 48 47! 47!47! 1 311,875,200The idea is that we take the number of total permutations of the 52 cards (namely,52!), and we divide by 47!, because we do not care about the order among thelosers. This time, we do not divide by 5!, because we do care here about the orderamong the winners.

(Chapter 9: Discrete Math) 9.08PART F: RECURSIVELY DEFINED SEQUENCES()Recall the recursive definition of factorials: n! n n 1 !( n Z ) We should add that 0! 1 , because we need to know where to start.Likewise, we can define sequences by describing how terms are “built upon” previousterms.Perhaps the most famous recursively defined sequence is the Fibonacci sequence (namedafter Leonardo of Pisa, or “Fibonacci,” a famous Italian mathematician of the MiddleAges who has been credited with introducing Arabic numerals to the West), which isdescribed on p.616 in Larson. There are surprising applications of this sequence innature: sunflower petals, pine cone and seashell patterns, etc. You are virtually assured ofdealing with this sequence in a Discrete Math class. Finding the general n th termnn 1 5 1 1 5 . expression is a bit of a challenge! It turns out to be: an 5 2 2 Yes, we get integers out of this thing! Technical details and other properties are availableat the tmlExample a1 10Consider the sequence recursively defined by: ak 1 2ak( k Z ) Find the first three terms of this sequence, beginning with n 1 .SolutionWe essentially double one term in the sequence to obtain the next term.a1 10( ) 2 ( 20 ) 40a2 2a1 2 10 20a3 2a2

(Chapter 9: Discrete Math) 9.09PART G: SUMMATION (SIGMA) NOTATIONΣ is the Greek letter known as uppercase sigma. (Lowercase sigma, σ , is famous fordenoting standard deviation in statistics.) Σ is a summation operator; we use it toefficiently indicate the addition of terms.Example5i 1) . ( 3Evaluate the sumi 02aiTerminology and NotationHere, i serves as the index of summation. It does not matter if we use j, k,etc., as long as there are no conflicts with other notations, and we use thesenotations consistently. We can think of i as a dummy variable. It’s like yournew co-worker – if we replaced one dummy with another, nothing reallychanges. In Calculus, dummy variables are used in definite integration.Here, 0 is the lower limit (of summation), and 3 is the upper limit.SolutionWe need to successively replace i with the integers from 0 through 3 andthen add the results.3 ai a0 a1 a2 a3i 0()()()()2222 5 0 1 5 1 1 5 2 1 5 3 1 a0 1 4 19 44 66a1a2a3

(Chapter 9: Discrete Math) 9.10PART H: SERIESA series arises when we take the sum of terms of a sequence.The following is an example of a finite series:n akk 1 a1 a2 a3 anThe following is an example of an infinite series: ak 1k a1 a2 a3 In fact, the finite series above represents the n th partial sum of the infinite seriesabove; it represents the sum of the first n terms.

(Chapter 9: Discrete Math) 9.11SECTION 9.2: ARITHMETIC SEQUENCES and PARTIAL SUMSPART A: WHAT IS AN ARITHMETIC SEQUENCE?The following appears to be an example of an arithmetic (stress on the “me”) sequence:a1 2a2 5a3 8a4 11 We begin with 2. After that, we successively add 3 to obtain the other terms of thesequence.An arithmetic sequence is determined by: Its initial termHere, it is a1 , although, in other examples, it could be a0 or something else.Here, a1 2 . Its common differenceThis is denoted by d . It is the number that is always added to a previousterm to obtain the following term. Here, d 3.Observe that: d a2 a1 a3 a2 ak 1 akThe following information completely determines our sequence:The sequence is arithmetic.(Initial term) a1 2(Common difference) d 3( k Z )

(Chapter 9: Discrete Math) 9.12In general, a recursive definition for an arithmetic sequence that begins with a1 may begiven by: a1 given ak 1 ak d( k 1; "k is an integer" is implied )ExampleThe arithmetic sequence 25, 20, 15, 10, can be described by: a1 25 d 5

(Chapter 9: Discrete Math) 9.13PART B : FORMULA FOR THE GENERAL n th TERM OF ANARITHMETIC SEQUENCELet’s begin with a1 and keep adding d until we obtain an expression for an , wheren Z .a1 a1a2 a1 da3 a1 2da4 a1 3d ()an a1 n 1 dThe general n th term of an arithmetic sequence with initial term a1 andcommon difference d is given by:an a1 n 1 d()Think: We take n 1 steps of size d to get from a1 to an .Note: Observe that the expression for an is linear in n. This reflects the fact thatarithmetic sequences often arise from linear models.ExampleFind the 100th term of the arithmetic sequence: 2, 5, 8, 11, (Assume that 2 is the “first term.”)Solution( ) 2 (100 1) ( 3) 2 ( 99 ) ( 3)an a1 n 1 da100 299

(Chapter 9: Discrete Math) 9.14PART C : FORMULA FOR THE n th PARTIAL SUM OF ANARITHMETIC SEQUENCEThe n th partial sum of an arithmetic sequence with initial term a1 andcommon difference d is given by: a an Sn n 1 2 Think: The (cumulative) sum of the first n terms of an arithmetic sequence is givenby the number of terms involved times the average of the first and last terms.ExampleFind the 100th partial sum of the arithmetic sequence: 2, 5, 8, 11, SolutionWe found in the previous Example that: a100 299 a an Sn n 1 2 2 299 S100 100 2 ( ) 301 100 2 ( ) 15,050i.e., 2 5 8 . 299 15,050This is much easier than doing things brute force on your calculator!Read the Historical Note on p.628 in Larson for the story of how Gauss quickly100computed the sum of the first 100 positive integers, k 1 2 3 . 100 . Use ourk 1formula to confirm his result. Gauss’s trick is actually used in the proof of our formula;see p.694 in Larson. We will touch on a related question in Section 9.4.

(Chapter 9: Discrete Math) 9.15SECTION 9.3: GEOMETRIC SEQUENCES, PARTIAL SUMS, andSERIESPART A: WHAT IS A GEOMETRIC SEQUENCE?The following appears to be an example of a geometric sequence:a1 2a2 6a3 18a4 54 We begin with 2. After that, we successively multiply by 3 to obtain the other terms ofthe sequence. Recall that, for an arithmetic sequence, we successively add.A geometric sequence is determined by: Its initial termHere, it is a1 , although, in other examples, it could be a0 or something else.Here, a1 2 . Its common ratioThis is denoted by r. It is the number that we always multiply the previousterm by to obtain the following term. Here, r 3.Observe that: r a2a1 a3a2 ak 1ak( k Z ) The following information completely determines our sequence:The sequence is geometric.(Initial term) a1 2(Common ratio) r 3

(Chapter 9: Discrete Math) 9.16In general, a recursive definition for a geometric sequence that begins with a1 may begiven by: a1 given ak 1 ak r( k 1; "k is an integer" is implied )We assume a1 0 and r 0 .ExampleThe geometric sequence 2, 6, 18, 54, can be described by: a1 2 r 3

(Chapter 9: Discrete Math) 9.17PART B : FORMULA FOR THE GENERAL n th TERM OF AGEOMETRIC SEQUENCELet’s begin with a1 and keep multiplying by r until we obtain an expression for an ,where n Z .a1 a1a2 a1 ra3 a1 r 2a4 a1 r 3 an a1 r n 1The general n th term of a geometric sequence with initial term a1 andcommon ratio r is given by:an a1 r n 1Think: As with arithmetic sequences, we take n 1 steps to get from a1 to an .Note: Observe that the expression for an is exponential in n. This reflects the factthat geometric sequences often arise from exponential models, for example thoseinvolving compound interest or population growth.

(Chapter 9: Discrete Math) 9.18ExampleFind the 6th term of the geometric sequence: 2, 1 ,1, 2(Assume that 2 is the “first term.”)SolutionHere, a1 2 and r 1.2an a1 r n 1 1 a6 2 2 () 1 2 2 ()6 15 1 2 32 () 116Observe that, as n , the terms of this sequence approach 0.(Assume a1 0 . Then, a1 r n 1 0 as n ) ( 1 r 1)i.e., r 1

(Chapter 9: Discrete Math) 9.19PART C : FORMULA FOR THE n th PARTIAL SUM OF AGEOMETRIC SEQUENCEThe n th partial sum of a geometric sequence with initial term a1 and common ratio r(where r 1 ) is given by: 1 rn a1 a1r nSn or a1 1 r 1 r You should get used to summation notation:Remember that S n for a sequence starting with a1 is given by:Sn n ak 1k a1 a2 anBecause ak a1 r k 1 for our geometric series:Sn n a rk 1k 11a1 a1r n1 r a1 a1r a1r 2 . a1r n 1 a2a3an(according to our theorem in the box above)Note: The book Concrete Mathematics by Graham, Knuth, and Patashniksuggests a way to remember the numerator: “first in – first out.” This isbecause a1 is the “first” term included in the sum, while a1r n is the firstterm in the corresponding infinite geometric series that is excluded from thesum.1 rn2n 1Technical Note: The key is that 1 r r r . You can see that this1 ris true by multiplying both sides by 1 r . Also see the proof on p.694 of Larson.()Technical Note: If r 1, then we are dealing with a constant sequence andessentially a multiplication problem. For example, the 4th partial sum of the series7 7 7 7 . is 7 7 7 7 4 7 28 . In general, the n th partial sum of( )( )the series a1 a1 a1 . is given by na1 .

(Chapter 9: Discrete Math) 9.20ExampleFind the 6th partial sum of the geometric sequence 2, 1 ,1, 2Solution1for this sequence.21We found in the previous Example that: a6 16Recall that a1 2 and r We will use our formula to evaluate:S6 2 1 1111 24816Using our formula directly:Sn a1 a1r n1 r 1 rn or a1 1 r If we use the second version on the right 1 rn S n a1 1 r 6 1 1 2 S6 2 1 1 2 1 1 64 2 1 1 2

(Chapter 9: Discrete Math) 9.21 2 636432 2 12 64 3 1 322163 21 2 32 16 2116We can also use the first version and the “first in – first out” idea:S6 2 1 1111 24816“First out” is: a7 Sn 132a1 a1r n1 r12 32S6 1 1 2 64 1 32 32 63 3232 2116332162116 231

(Chapter 9: Discrete Math) 9.22PART D: INFINITE GEOMETRIC SERIESAn infinite series converges (i.e., has a sum) The S n partial sums approach a()real number as n , which is then called the sum of the series.In other words, if lim S n S , where S is a real number, then S is the sum of the series.n ExampleConsider the geometric series:1 1 1 1 .2 4 8 16Let’s take a look at the partial (cumulative) sums:1111 . 81624 1 2 S1 34 S2 78 S3 S4 1516It appears that the partial sums are approaching 1. In fact, they are; we willhave a formula for this. This series has a sum, and it is 1.The figure below may make you a believer:

(Chapter 9: Discrete Math) 9.23ExampleThe geometric series 2 6 18 54 . has no sum, because: lim S n n ExampleThe geometric series 1 1 1 1 . has no sum, because the partial sumsdo not approach a single real number. Observe:1 1 1 1 . S1 1 S2 0 S3 1 S4 0()An infinite geometric series converges 1 r 1 i.e., r 1Take another look at the Examples of this Part.It is true that an infinite geometric series converges Its terms approach 0.Warning: However, this cannot be said about series in general. For example, the 11 1famous harmonic series 1 does not converge, even though the2 3k 1 kterms of the series approach 0. In order for a series to converge, it is necessary butnot sufficient for the terms to approach 0.No infinite arithmetic sequence (such as 2 5 8 11 ) can have a sum, unlessyou include 0 0 0 . as an arithmetic sequence.

(Chapter 9: Discrete Math) 9.24The sum of a convergent infinite geometric series with initial term a1 andcommon ratio r , where 1 r 1, is given by: i.e., r 1S a11 rTechnical Note: This comes from our partial sum formula S n (a1 a1r n)1 rand thefact that a1r n 0 as n 0 if 1 r 1. i.e., r 1ExampleWrite 0.81 as a nice (simplified) fraction of the forminteger.integerRecall how the repeating bar works: 0.81 0.81818181.Note: In Arithmetic, you learned how to use long division to express a“nice” fraction as a repeated decimal; remember that rational numbers canalways be expressed as either a terminating or a “nicely” repeating decimal.Now, after all this time, you will learn how to do the reverse!Solution0.81 can be written as: 0.81 0.0081 0.000081 .Observe that this is a geometric series with initial term a1 0.81 andcommon ratio r 0.00811 0.01 ; because r 1 , the series0.81100converges.The sum of the series is given by:S a11 r 0.810.81 81 9 1 0.01 0.99 99 11

(Chapter 9: Discrete Math) 9.25Again, you should get used to summation notation: S a1r k 1k 1 ()() 0.81 0.01k 1 k 1911If you make the substitution i k 1, the summation form can berewritten as: ()()()()S 0.81 0.01k 1 0.81 0.01i 0k 1iIn Calculus, 0 is more common than 1 as a lower limit of summation.

(Chapter 9: Discrete Math) 9.26SECTION 9.4: MATHEMATICAL INDUCTIONWhat is the sum of the first n positive integers, where n Z ? In other words, what is1 2 3 . n ? According to our formula for the n th partial sum of an arithmetic sequence 1 n n n 1(see Section 9.2), the answer is: S n n 2 2 ()Handshake Problem (Cool, but Optional)There’s another way of seeing why this formula works out.Imagine n 1 people walking into a room one-by-one. Whenever a person walks into aroom, he/she must shake hands exactly once with every other person who is currently inthe room, and those are the only handshakes they make. The first person who walks intothe room shakes nobody’s hand, the second person shakes the first person’s hand, thethird person shakes the first two people’s hands, and so on, until the last person shakesthe other n people’s hands. This means that every distinct pair of people eventually shakehands exactly once. The total number of handshakes then equals the number of distinctpairs of people that can be formed from a group of n 1 people.We see that the number of handshakes equals both 1 2 3 . n and( n 1)! ( n 1)! ( n 1) n ( n 1)! n ( n 1) .22! (( n 1) 2 )! 2! ( n 1)!2 ( n 1)!n ( n 1)Therefore: 1 2 3 . n n 1 2 2In this section, we will use mathematical induction to prove that: 1 2 3 . n ()n n 12Mathematical induction is used to prove conjectures, statements that we believe to be true butare as yet unproven. Unfortunately, the method of mathematical induction cannot give us an n 1formula such as 1 2 3 . n ; we must first guess at such a formula by perhaps2working out a few cases and using trial-and-error. (For example, try out Problem #90 in Section9.2 on p.633 in Larson.) Induction is then used to verify our guess.()

(Chapter 9: Discrete Math) 9.27Induction is commonly used in Discrete Math and in Linear Algebra. It is even used incontinuous mathematics; in Calculus, for example, induction is used to prove integrationformulas involving powers of (or products of powers of) trig functions.The Domino ImageVisualize a half-line (or a “ray”) of infinitely many dominoes. When are we guaranteedthat all the dominoes will eventually fall? If we are guaranteed the following: The first domino falls.(This corresponds to the Basis Step.) The fall of one domino guarantees the fall of the next domino.(This corresponds to the Inductive Step.)The Proof of Our FormulaConjecture:()The following is true for all positive integers n i.e., n Z :Pn , which states that: 1 2 3 . n ()n n 12Basis Step:Verify that P1 is true. (i.e., Verify that Pn is true for n 1 .)1 1 ()1 1 1212()21 1This demonstrates that P1 is true, because we have shown that P1 isequivalent to the true statement 1 1.

(Chapter 9: Discrete Math) 9.28Note: If we only had to prove Pn for all integers n such that n 7 , say, then wewould verify P7 as our Basis Step.Inductive Step:Let k be any fixed positive integer. (Some books use n; whatever you do, beconsistent throughout the problem!)Assume that Pk is true. (This assumption is called the Inductive Hypothesis, whichwe will abbreviate as I.H.)Using the Domino Image: Assume that the k th domino has fallen.Here, we assume: 1 2 3 . k ()k k 12Show that Pk 1 is then true.()Using the Domino Image: We must then show that the k 1stdomino mustthen fall as a result.Here, we must show that, as a result:k 1) (( k 1) 1)(( k 1) ( k 2)1 2 3 . ( k 1) , or22This is somewhat similar to a verification problem in trig in that the righthand side is something of a TARGET.

(Chapter 9: Discrete Math) 9.29()()1 2 3 . k 1 1 2 3 . k k 1Apply the I.H. to this. () k k 1( k 1)) 2 ( k 1)2k k 1(22k k 1 2 k 1(() (2k 2 k 1)())2( from Factoring )2( TARGET )( k 1) ( k 2)Note: The argument above works even for k 1 , k 2 , and k 3 , eventhough the first line may seem incompatible with those cases.ConclusionWe may now write: Pn is true for all positive integers n.orPn is true for all positive integers n. QED.Note: QED stands for the Latin phrase Quod Erat Demonstrandum.It effectively means “that which was to have been proven.”Read p.648 in Larson for formulas for sums of powers of the first n positive integers.Challenge ProblemUse induction to prove that every amount of postage greater than or equal to 12 cents canbe formed by using just 4- and 5-cent stamps.

(Chapter 9: Discrete Math) 9.30SECTION 9.5: THE BINOMIAL THEOREMPART A: INTRO()nHow do we expand a b , where n is a nonnegative integer?(a b)0 1(a b)1 a b(a b)2 a 2 2ab b2(a b)3 ( a b) ( a b )2Do first2 a 3a b 3ab2 b3 3(a b)10 YUK!Look for patternsTake (a b) . Let’s look at the variable parts of the terms.3(a b)322 a 3 3a b 3abb3 Startswitha3Endswithb3At each step, the exponent on a by 1 the exponent on b by 1a 0 1, b 0 1, so they are “invisible.”Each term has degree 3.

(Chapter 9: Discrete Math) 9.31In general,(a b)n a n b n (n is a whole number) ( n 1) terms(# terms power 1)What about the coefficients? They are given by PART B: PASCAL’S TRIANGLEThe ingredients:“Tent” of “1”sAny other entry sum of the two entries immediately aboveRow n gives the coefficients for (a b) .n(a b) 0 1(a b)1 a b(a b) 2 a 2 2ab b 2(a b) 3 a 3 3a 2b 3ab 2 b 3(a b)4 a 4 4a 3b 6a 2b 2 4ab3 b4 (See my website for some magical properties of Pascal’s triangle!)

(Chapter 9: Discrete Math) 9.32PART C: EXPANDING POWERS OF GENERAL BINOMIALSExampleExpand and simplify (3x y) using the Binomial Theorem.3Solution3We will use the template for a b .(3x y)3 3x ( y) SubSub a 3 xb y [a b]33 a 3 3a 2 b 3ab 2 b 3Sub back: a (3x), b ( y) (3x) 3 3( 3x )2 ( y) 3(3x)( y) ( y)Simplify. First, do powers.2( )( ) 27x 3 3 9x 2 ( y) 3(3x) y 2 y3 27x 3 27x 2 y 9xy 2 y 33

THE MAGIC OF PASCAL'S TRIANGLEPASCAL'S TRIANGLEÊ nˆThis represents a way to write down the "early" binomial coefficients Á easily.Ër Each row begins and ends with "1". (We have a "tent" of "1"s.) Every other entry equals the sum of the two entries immediately above it.Here it is:111111234136141Ê 0ˆRow 0: Contains Á Ë 0 Ê1 ˆ Ê1ˆRow 1: Contains Á , Á Ë 0 Ë1 Ê 2 ˆ Ê 2ˆ Ê 2ˆRow 2: Contains Á , Á , Á Ë 0 Ë1 Ë 2 Ê 3ˆ Ê 3ˆ Ê 3ˆ Ê 3ˆRow 3: Contains Á , Á , Á , Á Ë 0 Ë1 Ë 2 Ë 3 Ê 4ˆ Ê 4ˆ Ê 4ˆ Ê 4ˆ Ê 4ˆRow 4: Contains Á , Á , Á , Á , Á Ë 0 Ë 1 Ë 2 Ë 3 Ë 4 etc. - The "histograms" of the rows approach a bell-shaped "normal" distribution!We can observe some basic properties of binomial coefficients:Ê nˆ Ê n ˆSymmetry about the center: Á Á Ë r Ë n - r (The process of choosing r winners is equivalent to the process ofchoosing n-r losers.)Ê nˆ Ê nˆThe "tent" of "1"s: Á Á 1Ë 0 Ë n Ê nˆ Ê n ˆThe "inner tent" of natural numbers: Á Á nË1 Ë n - 1 (There are n ways to get one winner and n-1 losers from a group of npeople.)

THE PLINKO / PACHINKO APPROACH TO PASCAL'S TRIANGLEIn the game of Plinko on the CBS game show "The Price is Right", contestants wonmoney by standing over a board full of pins and dropping chips. The chips then fell intobins at the bottom of the board; each bin was labeled with a dollar amount that was addedto the contestant's winnings.Now imagine a pinboard shaped like Pascal's triangle:Player After pin is hit, the chip can move left or right.111112 After a pin is hit, the chip can move left or right.1334 After a pin is hit, the chip can move left or right.1 After a pin is hit, the chip can move left or right.161 After a pin is hit, the chip can move left or right.4It turns out that the number of ways to hit a pin is equal to the number on the pin!ExampleThere are 3 ways to hit the boldfaced pin labeled "3" above.One way: LLR12111 Left (L) - first "drop"11334 Left (L) - second "drop"16 Right (R) - third "drop"141A second way: LRL111111 Right (R)12334 Left (L)6 Left (L)141

A third way: RLL11111 Right (R)1334 Left (L)126 Left (L)141The only way to reach the "3" is if there are exactly one "R" and two "L"sin any order. How many ways are there to choose exactly one of the threeÊ 3ˆdrops to be an "R"? Á , which the 3 represents!Ë1 Likewise, there are 6 ways to hit the "6" pin, because out of four drops, weÊ 4ˆneed exactly two of them to be "R"s. There are Á 6 ways to do this.Ë 2 Remember the construction of Pascal's triangle: Each row begins and ends with "1". (We have a "tent" of "1"s.) Every other entry equals the sum of the two entries immediately above it.How does the Plinko model exhibit this?Example111111233416141There is 1 way to hit the "1" (all "L"s).Then, you can move right to hit the "4".There are 3 ways to hit the "3".Then, you can move left to hit the "4".So, there are 4 total ways to hit the "4".Note: If you go to a science museum that has a "Plinko-type" board with numerous ballsbeing dropped from the top-center, the bottom of the board should look like a bell curve!

EXPANDING POWERS OF BINOMIALS: THE BINOMIAL THEOREM(MATH 96)Remember that Row n of Pascal's Triangle provides the coefficients for the expansion of( a b )n :Ê nˆÊ nˆÊ nˆÊ nˆ(a b)n Á a n Á a n -1b Á a n - 2 b 2 . Á b nË 0 Ë1 Ë 2 Ë n Example(a b)3 1a 3 3a 2 b 3ab 2 1b 3Here's why this expansion of ( a b) is correct:3You can start by writing down 8 terms, each corresponding to a sequence ofchoices.3a b) ( a b) ( a b)(a b) 12(443 124 43 124 43Choose Choose C

Calculus tends to deal more with "continuous" mathematics than "discrete" mathematics. What is the difference? Analogies may help the most. Discrete is digital; continuous is analog. Discrete is a dripping faucet; continuous is running water. Discrete math tends to deal with things that you can "list," even if the list is infinitely .

Related Documents:

Part One: Heir of Ash Chapter 1 Chapter 2 Chapter 3 Chapter 4 Chapter 5 Chapter 6 Chapter 7 Chapter 8 Chapter 9 Chapter 10 Chapter 11 Chapter 12 Chapter 13 Chapter 14 Chapter 15 Chapter 16 Chapter 17 Chapter 18 Chapter 19 Chapter 20 Chapter 21 Chapter 22 Chapter 23 Chapter 24 Chapter 25 Chapter 26 Chapter 27 Chapter 28 Chapter 29 Chapter 30 .

TO KILL A MOCKINGBIRD. Contents Dedication Epigraph Part One Chapter 1 Chapter 2 Chapter 3 Chapter 4 Chapter 5 Chapter 6 Chapter 7 Chapter 8 Chapter 9 Chapter 10 Chapter 11 Part Two Chapter 12 Chapter 13 Chapter 14 Chapter 15 Chapter 16 Chapter 17 Chapter 18. Chapter 19 Chapter 20 Chapter 21 Chapter 22 Chapter 23 Chapter 24 Chapter 25 Chapter 26

2.1 Sampling and discrete time systems 10 Discrete time systems are systems whose inputs and outputs are discrete time signals. Due to this interplay of continuous and discrete components, we can observe two discrete time systems in Figure 2, i.e., systems whose input and output are both discrete time signals.

6 POWER ELECTRONICS SEGMENTS INCLUDED IN THIS REPORT By device type SiC Silicon GaN-on-Si Diodes (discrete or rectifier bridge) MOSFET (discrete or module) IGBT (discrete or module) Thyristors (discrete) Bipolar (discrete or module) Power management Power HEMT (discrete, SiP, SoC) Diodes (discrete or hybrid module)

DEDICATION PART ONE Chapter 1 Chapter 2 Chapter 3 Chapter 4 Chapter 5 Chapter 6 Chapter 7 Chapter 8 Chapter 9 Chapter 10 Chapter 11 PART TWO Chapter 12 Chapter 13 Chapter 14 Chapter 15 Chapter 16 Chapter 17 Chapter 18 Chapter 19 Chapter 20 Chapter 21 Chapter 22 Chapter 23 .

Precalculus Any Math for College course Calc Discrete Math AP or dual - enrollment Prob & Stats Any Math for College course Discrete Math AP or dual-enrollment Math for Data and Financial Literacy (Honors) Prob Discrete Math-Algebra 2 (Honors) Precalculus Prob & Stats AP or dual It is important to note this is just a sample and other courses .

(Exercises for Chapter 9: Discrete Mathematics) E.9.2 9) Consider the sequence recursively defined by: k a 1 4 a 1 a k 10 ()k , k 1 . Find a 1, a 2, a 3, and a 4. This sequence is an arithmetic sequence, which we will discuss further in Section 9.2. (F) 10) Consider the sequence recursively defined by: a 1 2 a k 1 1 2 a k ()k , k 1 .

Nazism and the Rise of Hitler 49 In the spring of 1945, a little eleven-year-old German boy called Helmuth was lying in bed when he overheard his parents discussing something in serious tones. His father, a prominent physician, deliberated with his wife whether the time had come to kill the entire family, or if he should commit suicide alone. His father spoke about his fear of revenge, saying .