1 Exercises and Solutions

Size: px
Start display at page:

Download "1 Exercises and Solutions"

Transcription

1 Exercises ad Solutios Most of the exercises below have solutios but you should try first to solve them. Each subsectio with solutios is after the correspodig subsectio with exercises. T. Time complexity ad Big-Oh otatio: exercises. A sortig method with Big-Oh complexity O( log ) speds exactly millisecod to sort,000 data items. Assumig that time T () of sortig items is directly proportioal to log, that is, T () c log, derive a formula for T (), give the time T (N) for sortig N items, ad estimate how log this method will sort,000,000 items.. A quadratic algorithm with processig time T () c speds T (N) secods for processig N data items. How much time will be spet for processig 5000 data items, assumig that N 00 ad T (N) ms? 3. A algorithm with time complexity O(f()) ad processig time T () cf(), where f() is a kow fuctio of, speds 0 secods to process 000 data items. How much time will be spet to process 00,000 data items if f() ad f() 3? 4. Assume that each of the expressios below gives the processig time T () spet by a algorithm for solvig a problem of size. Select the domiat term(s) havig the steepest icrease i ad specify the lowest Big-Oh complexity of each algorithm. Expressio Domiat term(s) O(...) log log (log ) log 3 log 3 log 8 log log log log (log ) 00 log log 4 log log

2 5. The statemets below show some features of Big-Oh otatio for the fuctios f f() ad g g(). Determie whether each statemet is TRUE or FALSE ad correct the formula i the latter case. Statemet Rule of sums: O(f g) O(f) O(g) Rule of products: O(f g) O(f) O(g) Trasitivity: if g O(f) ad h O(f) the g O(h) O( 4 ) Is it TRUE or FALSE? If it is FALSE the write the correct formula O( log ) 6. Prove that T () a 0 a a a 3 3 is O( 3 ) usig the formal defiitio of the Big-Oh otatio. Hit: Fid a costat c ad threshold 0 such that c 3 T () for Algorithms A ad B sped exactly T A () 0. log 0 ad T B ().5 microsecods, respectively, for a problem of size. Choose the algorithm, which is better i the Big-Oh sese, ad fid out a problem size 0 such that for ay larger size > 0 the chose algorithm outperforms the other. If your problems are of the size 0 9, which algorithm will you recommed to use? 8. Algorithms A ad B sped exactly T A () c A log ad T B () c B microsecods, respectively, for a problem of size. Fid the best algorithm for processig 0 data items if the algoritm A speds 0 microsecods to process 04 items ad the algorithm B speds oly microsecod to process 04 items. 9. Algorithms A ad B sped exactly T A () 5 log 0 ad T B () 5 microsecods, respectively, for a problem of size. Which algorithm is better i the Big-Oh sese? For which problem sizes does it outperform the other? 0. Oe of the two software packages, A or B, should be chose to process very big databases, cotaiig each up to 0 records. Average processig time of the package A is T A () 0. log microsecods, ad the average processig time of the package B is T B () 5 microsecods.

3 Which algorithm has better performace i a Big-Oh sese? Work out exact coditios whe these packages outperform each other.. Oe of the two software packages, A or B, should be chose to process data collectios, cotaiig each up to 0 9 records. Average processig time of the package A is T A () 0.00 millisecods ad the average processig time of the package B is T B () 500 millisecods. Which algorithm has better performace i a Big-Oh sese? Work out exact coditios whe these packages outperform each other.. Software packages A ad B of complexity O( log ) ad O(), respectively, sped exactly T A () c A log 0 ad T B () c B millisecods to process data items. Durig a test, the average time of processig 0 4 data items with the package A ad B is 00 millisecods ad 500 millisecods, respectively. Work out exact coditios whe oe package actually outperforms the other ad recommed the best choice if up to 0 9 items should be processed. 3. Let processig time of a algorithm of Big-Oh complexity O(f()) be directly proportioal to f(). Let three such algorithms A, B, ad C have time complexity O( ), O(.5 ), ad O( log ), respectively. Durig a test, each algorithm speds 0 secods to process 00 data items. Derive the time each algorithm should sped to process 0,000 items. 4. Software packages A ad B have processig time exactly T EP 3.5 ad T WP , respectively. If you are iterested i faster processig of up to 0 8 data items, the which package should be choose?. Time complexity ad Big-Oh otatio: solutios. Because processig time is T () c log, the costat factor c T (N) N log N, ad T () T (N) log N log N. Ratio of logarithms of the same base is idepedet of the base (see Appedix i the textbook), hece, ay appropriate base ca be used i the above formula (say, base of 0). Therefore, for the time is T (, 000, 000) T (, 000) log log , 000 ms. The costat factor c T (N) N, therefore T () T (N) N 0000 T (5000), 500 ms. ms ad 3. The costat factor c T (000) f(000) 0 f(000) millisecods per item. Therefore, T () 0 f() f(00,000) f(000) ms ad T (00, 000) 0 f(000) ms. If f() the T (00, 000) 000 ms. If f() 3, the T (00, 000) 0 7 ms. 3

4 Expressio Domiat term(s) O(...) O( 3 ) log O(.5 ) O(.75 ) log (log ) log O( log ) log 3 log log 3, log O( log ) 3 log 8 log log log 3 log 8 O(log ) O( ) O( ) O(.5 ) 0.0 log (log ) (log ) O((log ) ) 00 log O( 3 ) log 4 log log log 4 O(log ) Statemet Is it TRUE or FALSE? If it is FALSE the write the correct formula Rule of sums: O(f g) O(f) O(g) FALSE O(f g) max {O(f), O(g) Rule of products: O(f g) O(f) O(g) TRUE 5. Trasitivity: if g O(f) ad h O(f) the g O(h) FALSE if g O(f) ad f O(h) the g O(h) O( 4 ) TRUE O( log ) FALSE O( 3 ) 6. It is obvious that T () a 0 a a a 3 3. Thus if, the T () c 3 where c a 0 a a a 3 so that T () is O( 3 ). 7. I the Big-Oh sese, the algorithm B is better. It outperforms the algo- 4

5 rithm A whe T B () T A (), that is, whe.5 0. log 0. This iequality reduces to log 0 5, or If 0 9, the algorithm of choice is A. 8. The costat factors for A ad B are: c A 0 04 log ; c B 04 Thus, to process 0 04 items the algorithms A ad B will sped T A ( 0 ) 04 0 log ( 0 ) 080µs ad T B ( 0 ) µs, respectively. Because T B ( 0 ) T A ( 0 ), the method of choice is A. 9. I the Big-Oh sese, the algorithm B is better. It outperforms the algorithm A if T B () T A (), that is, if 5 5 log 0, or log 0 5, or 00, I the Big-Oh sese, the algorithm B of complexity O() is better tha A of complexity O( log ). he package B has better performace i a The package B begis to outperform A whe (T A () T B (), that is, whe 0. log 5. This iequality reduces to 0. log 5, or Thus for processig up to 0 data items, the package of choice is A.. I the Big-Oh sese, the package B of complexity O( 0.5 ) is better tha A of complexity O(). The package B begis to outperform A whe (T A () T B (), that is, whe This iequality reduces to 5 0 5, or Thus for processig up to 0 9 data items, the package of choice is A.. I the Big-Oh sese, the package B of liear complexity O() is better tha the package A of O( log ) complexity. The processig times of the packages are T A () c A log 0 ad T B () c B, respectively. The tests allows us to derive the costat factors: 00 c A 0 4 log c B The package B begis to outperform A whe we must estimate the data size 0 that esures T A () T B (), that is, whe log This iequality reduces to log , or 00. Thus for processig up to 0 9 data items, the package of choice is A. 3. Complexity Time to process 0,000 items A O( ) T (0, 000) T (00) , 000 sec. A O(.5 ) T (0, 000) T (00) , 000 sec log 0000 A3 O( log ) T (0, 000) T (00) 00 log , 000 sec. 5

6 4. I the Big-Oh sese, the package A is better. But it outperforms the package B whe T A () T B (), that is, whe This iequality reduces to 0.5 3/0.03( 00), or 0 8. Thus for processig up to 0 8 data items, the package of choice is B..3 Recurreces ad divide-ad-coquer paradigm: exercises. Ruig time T () of processig data items with a give algorithm is described by the recurrece: ( ) T () k T c ; T () 0. k Derive a closed form formula for T () i terms of c,, ad k. What is the computatioal complexity of this algorithm i a Big-Oh sese? Hit: To have the well-defied recurrece, assume that k m with the iteger m log k ad k.. Ruig time T () of processig data items with aother, slightly differet algorithm is described by the recurrece: ( ) T () k T c k ; T () 0. k Derive a closed form formula for T () i terms of c,, ad k ad detemie computatioal complexity of this algorithm i a Big-Oh sese. Hit: To have the well-defied recurrece, assume that k m with the iteger m log k ad k. 3. What value of k, 3, or 4 results i the fastest processig with the above algorithm? Hit: You may eed a relatio log k l l k where l deotes the atural logarithm with the base e ). 4. Derive the recurrece that describes processig time T () of the recursive method: public static it recurretmethod( it[] a, it low, it high, it goal ) { it target arragetarget( a, low, high ); if ( goal < target ) retur recurretmethod( a, low, target-, goal ); else if ( goal > target ) retur recurretmethod( a, target, high, goal ); else retur a[ target ]; 6

7 The rage of iput variables is 0 low goal high a.legth. A o-recursive method arragetarget() has liear time complexity T () c where high low ad returs iteger target i the rage low target high. Output values of arragetarget() are equiprobable i this rage, e.g. if low 0 ad high, the every target 0,,..., occurs with the same probability. Time for performig elemetary operatios like if else or retur should ot be take ito accout i the recurrece. Hit: cosider a call of recurretmethod() for a.legth data items, e.g. recurretmethod( a, 0, a.legth -, goal ) ad aalyse all recurreces for T () for differet iput arrays. Each recurrece ivolves the umber of data items the method recursively calls to. 5. Derive a explicit (closed form) formula for time T () of processig a array of size if T () is specified implicitly by the recurrece: T () (T (0) T () T ( )) c ; T (0) 0 Hit: You might eed the -th harmoic umber H 3 l for derivig the explicit formula for T (). 6. Determie a explicit formula for the time T () of processig a array of size if T () relates to the average of T ( ),..., T (0) as follows: where T(0) 0. T () (T (0) T ( )) c Hit: You might eed the equatio 3 () for derivig the explicit formula for T (). 7. The obvious liear algorithm for expoetiatio x uses multiplicatios. Propose a faster algorithm ad fid its Big-Oh complexity i the case whe m by writig ad solvig a recurrece formula..4 Recurreces ad divide-ad-coquer paradigm: solutios. The closed-form formula ca be derived either by telescopig or by guessig from a few values ad usig the math iductio. If you kow differece equatios i math, you will easily otice that the recurreces are the differece equatios ad telescopig is their solutio by substitutio of the same equatio for gradually decreasig argumets: or /k. 7

8 (a) Derivatio with telescopig : the recurrece T (k m ) k T (k m ) c k m ca be represeted ad telescoped as follows: T (k m ) k m T (km ) k m c T (k m ) k m T (km ) k m c T (k) T () c k Therefore, T (km ) k m c m, or T (k m ) c k m m, or T () c log k. The Big-Oh complexity is O( log ). (b) Aother versio of telescopig: the like substitutio ca be applied directly to the iitial recurrece: T (k m ) k T (k m ) c k m k T (k m ) k T (k m ) c k m k m T (k) k m T () c k m so that T (k m ) c m k m (c) Guessig ad math iductio: let us costruct a few iitial values of T (), startig from the give T () ad successively applyig the recurrece: T () 0 T (k) k T () c k c k T (k ) k T (k) c k c k T (k 3 ) k T (k ) c k 3 3 c k 3 This sequece leads to a assumptio that T (k m ) c m k m. Let us explore it with math iductio. The iductive steps are as follows: (i) The base case T () T (k 0 ) c 0 k 0 0 holds uder our assumptio. (ii) Let the assumptio holds for l 0,..., m. The T (k m ) k T (k m ) c k m k c (m ) k m c k m c (m ) k m c m k m Therefore, the assumed relatioship holds for all values m 0,,...,, so that T () c log k. 8

9 The Big-Oh complexity of this algorithm is O( log ).. The recurrece T (k m ) k T (k m ) c k m telescopes as follows: T (k m ) k m T (k m ) k m T (k) k T (k m ) k m T (k m ) k m Therefore, T (km ) k m c m, or T (k m ) c k m m, or T () c k log k. The complexity is O( log ) because k is costat. 3. Processig time T () c k log k ca be easily rewritte as T () c k l k l to give a explicit depedece of k. Because l.8854, 3 4 l , ad l , the fastest processig is obtaied for k Because all the variats: T () k c c c T () T (0) c or T () T ( ) c if target 0 T () T () c or T () T ( ) c if target T () T () c or T () T ( 3) c if target T () T ( ) c or T () T (0) c if target are equiprobable, the the recurrece is T () (T (0)... T ( )) c 5. The recurrece suggests that T () T (0)T () T ( )T ( )c. It follows that ( )T ( ) T (0)...T ( )c ( ), ad by subtractig the latter equatio from the former oe, we obtai the followig basic recurrece: T () ( )T ( ) T ( ) c c. It reduces to T () T ( ) c c, or T () T ( ) c c. Telescopig results i the followig system of equalities: T () T ( ) c c T ( ) T ( ) c c T () T () c c T () T (0) c c Because T (0) 0, the explicit expressio for T () is: ( T () c c ) c H c l

10 6. The recurrece suggests that T () (T (0)T ()...T ( )T ( )) c. Because ( )T ( ) (T (0)... T ( )) c ( ), the subtractio of the latter equality from the former oe results i the followig basic recurrece T () ( )T ( ) T ( ) c. It reduces to T () ( )T ( ) c, or T () T ( ) c (). Telescopig results i the followig system of equalities: T () T ( ) T ( ) c () T ( ) c ( ) T () 3 T () T () c 3 T (0) c Because T (0) 0, the explicit expressio for T () is: T () c 3 ( ) c ( ) c so that T () c. A alterative approach (guessig ad math iductio): T (0) 0 T () 0 c c T () (0 c) c c T (3) 3 (0 c c) c 3c T (4) 4 (0 c c 3c) c 4c It suggests a assumptio T () c to be explored with math iductio: (i) The assumptio is valid for T (0) 0. (ii) Let it be valid for k,...,, that is, T (k) kc for k,...,. The T () (0 c c... ( )c) c ( ) c c ( )c c c The assumptio is prove, ad T () c. 7. A straightforward liear expoetiatio eeds m multiplicatios to produce x after havig already x. But because x x x, it ca be computed with oly oe multiplicatio more tha to compute x. Therefore, more efficiet expoetiatio is performed as follows: x x x, x 4 x x, x 8 x 4 x 4, etc. Processig time for such more efficiet 0

11 algorithm correspods to a recurrece: T ( m ) T ( m ), ad by telescopig oe obtais: T ( m ) T ( m ) T ( m ) T ( m ) T () T () T () 0 that is, T ( m ) m, or T () log. The Big-Oh complexity of such algorithm is O(log )..5 Time complexity of code: exercises. Work out the computatioal complexity of the followig piece of code: for( it i ; i > 0; i / ) { for( it j ; j < ; j * ) { for( it k 0; k < ; k ) {... // costat umber of operatios. Work out the computatioal complexity of the followig piece of code. for ( i; i < ; i * ) { for ( j ; j > 0; j / ) { for ( k j; k < ; k ) { sum (i j * k ); 3. Work out the computatioal complexity of the followig piece of code assumig that m : for( it i ; i > 0; i-- ) { for( it j ; j < ; j * ) { for( it k 0; k < j; k ) {... // costat umber C of operatios

12 4. Work out the computatioal complexity (i the Big-Oh sese) of the followig piece of code ad explai how you derived it usig the basic features of the Big-Oh otatio: for( it boud ; boud < ; boud * ) { for( it i 0; i < boud; i ) { for( it j 0; j < ; j ) {... // costat umber of operatios for( it j ; j < ; j * ) {... // costat umber of operatios 5. Determie the average processig time T () of the recursive algorithm: it mytest( it ) { if ( < 0 ) retur 0; 3 else { 4 it i radom( - ); 5 retur mytest( i ) mytest( - - i ); 6 7 providig the algorithm radom( it ) speds oe time uit to retur a radom iteger value uiformly distributed i the rage [0, ] whereas all other istructios sped a egligibly small time (e.g., T (0) 0). Hits: derive ad solve the basic recurrece relatig T () i average to T ( ),..., T (0). You might eed the equatio 3 () for derivig the explicit formula for T (). 6. Assume that the array a cotais values, that the method radomvalue takes costat umber c of computatioal steps to produce each output value, ad that the method goodsort takes log computatioal steps to sort the array. Determie the Big-Oh complexity for the followig fragmets of code takig ito accout oly the above computatioal steps: for( i 0; i < ; i ) { for( j 0; j < ; j ) a[ j ] radomvalue( i ); goodsort( a );

13 .6 Time complexity of code: solutios. I the outer for-loop, the variable i keeps halvig so it goes roud log times. For each i, ext loop goes roud also log times, because of doublig the variable j. The iermost loop by k goes roud times. Loops are ested, so the bouds may be multiplied to give that the algorithm is O ( (log ) ).. Ruig time of the ier, middle, ad outer loop is proportioal to, log, ad log, respectively. Thus the overall Big-Oh complexity is O((log ) ). More detailed optioal aalysis gives the same value. Let k. The the outer loop is executed k times, the middle loop is executed k times, ad for each value j k, k,...,,, the ier loop has differet executio times: j Ier iteratios k k ( k k ) k ( k k ) ( k ) 0 ( k 0 ) I total, the umber of ier/middle steps is k k (... k ) k k ( k ) Thus, the total complexity is O((log ) )..5 (k ) k (log ) O( log ) 3. The outer for-loop goes roud times. For each i, the ext loop goes roud m log times, because of doublig the variable j. For each j, the iermost loop by k goes roud j times, so that the two ier loops together go roud 4... m m times. Loops are ested, so the bouds may be multiplied to give that the algorithm is O ( ). 4. The first ad secod successive iermost loops have O() ad O(log ) complexity, respectively. Thus, the overall complexity of the iermost part is O(). The outermost ad middle loops have complexity O(log ) ad O(), so a straightforward (ad valid) solutio is that the overall complexity is O( log ). 3

14 More detailed aalysis shows that the outermost ad middle loops are iterrelated, ad the umber of repeatig the iermost part is as follows:... m m where m log is the smallest iteger such that m >. Thus actually this code has quadratic complexity O( ). But selectio of either aswer (O( log ) ad O( ) is valid. 5. The algorithm suggests that T () T (i) T ( i). By summig this relatioship for all the possible radom values i 0,,...,, we obtai that i average T () (T (0)T ()...T ( )T ( )). Because ( )T ( ) (T (0)... T ( )) ( ), the basic recurrece is as follows: T () ( )T ( ) T ( ), or T () ( )T ( ), or T () T ( ) (). The telescopig results i the followig system of expressios: T () T ( ) T ( ) () T ( ) ( ) T () 3 T () T () 3 T (0) Because T (0) 0, the explicit expressio for T () is: T () 3 ( ) ( ) so that T (). 6. The ier loop has liear complexity c, but the ext called method is of higher complexity log. Because the outer loop is liear i, the overall complexity of this piece of code is log. 4

Soving Recurrence Relations

Soving Recurrence Relations Sovig Recurrece Relatios Part 1. Homogeeous liear 2d degree relatios with costat coefficiets. Cosider the recurrece relatio ( ) T () + at ( 1) + bt ( 2) = 0 This is called a homogeeous liear 2d degree

More information

Infinite Sequences and Series

Infinite Sequences and Series CHAPTER 4 Ifiite Sequeces ad Series 4.1. Sequeces A sequece is a ifiite ordered list of umbers, for example the sequece of odd positive itegers: 1, 3, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29...

More information

In nite Sequences. Dr. Philippe B. Laval Kennesaw State University. October 9, 2008

In nite Sequences. Dr. Philippe B. Laval Kennesaw State University. October 9, 2008 I ite Sequeces Dr. Philippe B. Laval Keesaw State Uiversity October 9, 2008 Abstract This had out is a itroductio to i ite sequeces. mai de itios ad presets some elemetary results. It gives the I ite Sequeces

More information

Running Time ( 3.1) Analysis of Algorithms. Experimental Studies ( 3.1.1) Limitations of Experiments. Pseudocode ( 3.1.2) Theoretical Analysis

Running Time ( 3.1) Analysis of Algorithms. Experimental Studies ( 3.1.1) Limitations of Experiments. Pseudocode ( 3.1.2) Theoretical Analysis Ruig Time ( 3.) Aalysis of Algorithms Iput Algorithm Output A algorithm is a step-by-step procedure for solvig a problem i a fiite amout of time. Most algorithms trasform iput objects ito output objects.

More information

CS103A Handout 23 Winter 2002 February 22, 2002 Solving Recurrence Relations

CS103A Handout 23 Winter 2002 February 22, 2002 Solving Recurrence Relations CS3A Hadout 3 Witer 00 February, 00 Solvig Recurrece Relatios Itroductio A wide variety of recurrece problems occur i models. Some of these recurrece relatios ca be solved usig iteratio or some other ad

More information

Asymptotic Growth of Functions

Asymptotic Growth of Functions CMPS Itroductio to Aalysis of Algorithms Fall 3 Asymptotic Growth of Fuctios We itroduce several types of asymptotic otatio which are used to compare the performace ad efficiecy of algorithms As we ll

More information

Sequences and Series

Sequences and Series CHAPTER 9 Sequeces ad Series 9.. Covergece: Defiitio ad Examples Sequeces The purpose of this chapter is to itroduce a particular way of geeratig algorithms for fidig the values of fuctios defied by their

More information

Lecture 13. Lecturer: Jonathan Kelner Scribe: Jonathan Pines (2009)

Lecture 13. Lecturer: Jonathan Kelner Scribe: Jonathan Pines (2009) 18.409 A Algorithmist s Toolkit October 27, 2009 Lecture 13 Lecturer: Joatha Keler Scribe: Joatha Pies (2009) 1 Outlie Last time, we proved the Bru-Mikowski iequality for boxes. Today we ll go over the

More information

Trigonometric Form of a Complex Number. The Complex Plane. axis. ( 2, 1) or 2 i FIGURE 6.44. The absolute value of the complex number z a bi is

Trigonometric Form of a Complex Number. The Complex Plane. axis. ( 2, 1) or 2 i FIGURE 6.44. The absolute value of the complex number z a bi is 0_0605.qxd /5/05 0:45 AM Page 470 470 Chapter 6 Additioal Topics i Trigoometry 6.5 Trigoometric Form of a Complex Number What you should lear Plot complex umbers i the complex plae ad fid absolute values

More information

Solving Logarithms and Exponential Equations

Solving Logarithms and Exponential Equations Solvig Logarithms ad Epoetial Equatios Logarithmic Equatios There are two major ideas required whe solvig Logarithmic Equatios. The first is the Defiitio of a Logarithm. You may recall from a earlier topic:

More information

THE ARITHMETIC OF INTEGERS. - multiplication, exponentiation, division, addition, and subtraction

THE ARITHMETIC OF INTEGERS. - multiplication, exponentiation, division, addition, and subtraction THE ARITHMETIC OF INTEGERS - multiplicatio, expoetiatio, divisio, additio, ad subtractio What to do ad what ot to do. THE INTEGERS Recall that a iteger is oe of the whole umbers, which may be either positive,

More information

I. Chi-squared Distributions

I. Chi-squared Distributions 1 M 358K Supplemet to Chapter 23: CHI-SQUARED DISTRIBUTIONS, T-DISTRIBUTIONS, AND DEGREES OF FREEDOM To uderstad t-distributios, we first eed to look at aother family of distributios, the chi-squared distributios.

More information

Basic Elements of Arithmetic Sequences and Series

Basic Elements of Arithmetic Sequences and Series MA40S PRE-CALCULUS UNIT G GEOMETRIC SEQUENCES CLASS NOTES (COMPLETED NO NEED TO COPY NOTES FROM OVERHEAD) Basic Elemets of Arithmetic Sequeces ad Series Objective: To establish basic elemets of arithmetic

More information

SECTION 1.5 : SUMMATION NOTATION + WORK WITH SEQUENCES

SECTION 1.5 : SUMMATION NOTATION + WORK WITH SEQUENCES SECTION 1.5 : SUMMATION NOTATION + WORK WITH SEQUENCES Read Sectio 1.5 (pages 5 9) Overview I Sectio 1.5 we lear to work with summatio otatio ad formulas. We will also itroduce a brief overview of sequeces,

More information

Lecture 4: Cauchy sequences, Bolzano-Weierstrass, and the Squeeze theorem

Lecture 4: Cauchy sequences, Bolzano-Weierstrass, and the Squeeze theorem Lecture 4: Cauchy sequeces, Bolzao-Weierstrass, ad the Squeeze theorem The purpose of this lecture is more modest tha the previous oes. It is to state certai coditios uder which we are guarateed that limits

More information

THE ABRACADABRA PROBLEM

THE ABRACADABRA PROBLEM THE ABRACADABRA PROBLEM FRANCESCO CARAVENNA Abstract. We preset a detailed solutio of Exercise E0.6 i [Wil9]: i a radom sequece of letters, draw idepedetly ad uiformly from the Eglish alphabet, the expected

More information

Example 2 Find the square root of 0. The only square root of 0 is 0 (since 0 is not positive or negative, so those choices don t exist here).

Example 2 Find the square root of 0. The only square root of 0 is 0 (since 0 is not positive or negative, so those choices don t exist here). BEGINNING ALGEBRA Roots ad Radicals (revised summer, 00 Olso) Packet to Supplemet the Curret Textbook - Part Review of Square Roots & Irratioals (This portio ca be ay time before Part ad should mostly

More information

A Faster Clause-Shortening Algorithm for SAT with No Restriction on Clause Length

A Faster Clause-Shortening Algorithm for SAT with No Restriction on Clause Length Joural o Satisfiability, Boolea Modelig ad Computatio 1 2005) 49-60 A Faster Clause-Shorteig Algorithm for SAT with No Restrictio o Clause Legth Evgey Datsi Alexader Wolpert Departmet of Computer Sciece

More information

5 Boolean Decision Trees (February 11)

5 Boolean Decision Trees (February 11) 5 Boolea Decisio Trees (February 11) 5.1 Graph Coectivity Suppose we are give a udirected graph G, represeted as a boolea adjacecy matrix = (a ij ), where a ij = 1 if ad oly if vertices i ad j are coected

More information

SEQUENCES AND SERIES

SEQUENCES AND SERIES Chapter 9 SEQUENCES AND SERIES Natural umbers are the product of huma spirit. DEDEKIND 9.1 Itroductio I mathematics, the word, sequece is used i much the same way as it is i ordiary Eglish. Whe we say

More information

S. Tanny MAT 344 Spring 1999. be the minimum number of moves required.

S. Tanny MAT 344 Spring 1999. be the minimum number of moves required. S. Tay MAT 344 Sprig 999 Recurrece Relatios Tower of Haoi Let T be the miimum umber of moves required. T 0 = 0, T = 7 Iitial Coditios * T = T + $ T is a sequece (f. o itegers). Solve for T? * is a recurrece,

More information

Incremental calculation of weighted mean and variance

Incremental calculation of weighted mean and variance Icremetal calculatio of weighted mea ad variace Toy Fich faf@cam.ac.uk dot@dotat.at Uiversity of Cambridge Computig Service February 009 Abstract I these otes I eplai how to derive formulae for umerically

More information

How To Solve The Homewor Problem Beautifully

How To Solve The Homewor Problem Beautifully Egieerig 33 eautiful Homewor et 3 of 7 Kuszmar roblem.5.5 large departmet store sells sport shirts i three sizes small, medium, ad large, three patters plaid, prit, ad stripe, ad two sleeve legths log

More information

1 Computing the Standard Deviation of Sample Means

1 Computing the Standard Deviation of Sample Means Computig the Stadard Deviatio of Sample Meas Quality cotrol charts are based o sample meas ot o idividual values withi a sample. A sample is a group of items, which are cosidered all together for our aalysis.

More information

FIBONACCI NUMBERS: AN APPLICATION OF LINEAR ALGEBRA. 1. Powers of a matrix

FIBONACCI NUMBERS: AN APPLICATION OF LINEAR ALGEBRA. 1. Powers of a matrix FIBONACCI NUMBERS: AN APPLICATION OF LINEAR ALGEBRA. Powers of a matrix We begi with a propositio which illustrates the usefuless of the diagoalizatio. Recall that a square matrix A is diogaalizable if

More information

SAMPLE QUESTIONS FOR FINAL EXAM. (1) (2) (3) (4) Find the following using the definition of the Riemann integral: (2x + 1)dx

SAMPLE QUESTIONS FOR FINAL EXAM. (1) (2) (3) (4) Find the following using the definition of the Riemann integral: (2x + 1)dx SAMPLE QUESTIONS FOR FINAL EXAM REAL ANALYSIS I FALL 006 3 4 Fid the followig usig the defiitio of the Riema itegral: a 0 x + dx 3 Cosider the partitio P x 0 3, x 3 +, x 3 +,......, x 3 3 + 3 of the iterval

More information

Properties of MLE: consistency, asymptotic normality. Fisher information.

Properties of MLE: consistency, asymptotic normality. Fisher information. Lecture 3 Properties of MLE: cosistecy, asymptotic ormality. Fisher iformatio. I this sectio we will try to uderstad why MLEs are good. Let us recall two facts from probability that we be used ofte throughout

More information

0.7 0.6 0.2 0 0 96 96.5 97 97.5 98 98.5 99 99.5 100 100.5 96.5 97 97.5 98 98.5 99 99.5 100 100.5

0.7 0.6 0.2 0 0 96 96.5 97 97.5 98 98.5 99 99.5 100 100.5 96.5 97 97.5 98 98.5 99 99.5 100 100.5 Sectio 13 Kolmogorov-Smirov test. Suppose that we have a i.i.d. sample X 1,..., X with some ukow distributio P ad we would like to test the hypothesis that P is equal to a particular distributio P 0, i.e.

More information

.04. This means $1000 is multiplied by 1.02 five times, once for each of the remaining sixmonth

.04. This means $1000 is multiplied by 1.02 five times, once for each of the remaining sixmonth Questio 1: What is a ordiary auity? Let s look at a ordiary auity that is certai ad simple. By this, we mea a auity over a fixed term whose paymet period matches the iterest coversio period. Additioally,

More information

Solutions to Selected Problems In: Pattern Classification by Duda, Hart, Stork

Solutions to Selected Problems In: Pattern Classification by Duda, Hart, Stork Solutios to Selected Problems I: Patter Classificatio by Duda, Hart, Stork Joh L. Weatherwax February 4, 008 Problem Solutios Chapter Bayesia Decisio Theory Problem radomized rules Part a: Let Rx be the

More information

INVESTMENT PERFORMANCE COUNCIL (IPC)

INVESTMENT PERFORMANCE COUNCIL (IPC) INVESTMENT PEFOMANCE COUNCIL (IPC) INVITATION TO COMMENT: Global Ivestmet Performace Stadards (GIPS ) Guidace Statemet o Calculatio Methodology The Associatio for Ivestmet Maagemet ad esearch (AIM) seeks

More information

A Recursive Formula for Moments of a Binomial Distribution

A Recursive Formula for Moments of a Binomial Distribution A Recursive Formula for Momets of a Biomial Distributio Árpád Béyi beyi@mathumassedu, Uiversity of Massachusetts, Amherst, MA 01003 ad Saverio M Maago smmaago@psavymil Naval Postgraduate School, Moterey,

More information

Department of Computer Science, University of Otago

Department of Computer Science, University of Otago Departmet of Computer Sciece, Uiversity of Otago Techical Report OUCS-2006-09 Permutatios Cotaiig May Patters Authors: M.H. Albert Departmet of Computer Sciece, Uiversity of Otago Micah Colema, Rya Fly

More information

A probabilistic proof of a binomial identity

A probabilistic proof of a binomial identity A probabilistic proof of a biomial idetity Joatho Peterso Abstract We give a elemetary probabilistic proof of a biomial idetity. The proof is obtaied by computig the probability of a certai evet i two

More information

MARTINGALES AND A BASIC APPLICATION

MARTINGALES AND A BASIC APPLICATION MARTINGALES AND A BASIC APPLICATION TURNER SMITH Abstract. This paper will develop the measure-theoretic approach to probability i order to preset the defiitio of martigales. From there we will apply this

More information

CS103X: Discrete Structures Homework 4 Solutions

CS103X: Discrete Structures Homework 4 Solutions CS103X: Discrete Structures Homewor 4 Solutios Due February 22, 2008 Exercise 1 10 poits. Silico Valley questios: a How may possible six-figure salaries i whole dollar amouts are there that cotai at least

More information

BINOMIAL EXPANSIONS 12.5. In this section. Some Examples. Obtaining the Coefficients

BINOMIAL EXPANSIONS 12.5. In this section. Some Examples. Obtaining the Coefficients 652 (12-26) Chapter 12 Sequeces ad Series 12.5 BINOMIAL EXPANSIONS I this sectio Some Examples Otaiig the Coefficiets The Biomial Theorem I Chapter 5 you leared how to square a iomial. I this sectio you

More information

1. MATHEMATICAL INDUCTION

1. MATHEMATICAL INDUCTION 1. MATHEMATICAL INDUCTION EXAMPLE 1: Prove that for ay iteger 1. Proof: 1 + 2 + 3 +... + ( + 1 2 (1.1 STEP 1: For 1 (1.1 is true, sice 1 1(1 + 1. 2 STEP 2: Suppose (1.1 is true for some k 1, that is 1

More information

Definition. A variable X that takes on values X 1, X 2, X 3,...X k with respective frequencies f 1, f 2, f 3,...f k has mean

Definition. A variable X that takes on values X 1, X 2, X 3,...X k with respective frequencies f 1, f 2, f 3,...f k has mean 1 Social Studies 201 October 13, 2004 Note: The examples i these otes may be differet tha used i class. However, the examples are similar ad the methods used are idetical to what was preseted i class.

More information

I. Why is there a time value to money (TVM)?

I. Why is there a time value to money (TVM)? Itroductio to the Time Value of Moey Lecture Outlie I. Why is there the cocept of time value? II. Sigle cash flows over multiple periods III. Groups of cash flows IV. Warigs o doig time value calculatios

More information

Chapter 5 Unit 1. IET 350 Engineering Economics. Learning Objectives Chapter 5. Learning Objectives Unit 1. Annual Amount and Gradient Functions

Chapter 5 Unit 1. IET 350 Engineering Economics. Learning Objectives Chapter 5. Learning Objectives Unit 1. Annual Amount and Gradient Functions Chapter 5 Uit Aual Amout ad Gradiet Fuctios IET 350 Egieerig Ecoomics Learig Objectives Chapter 5 Upo completio of this chapter you should uderstad: Calculatig future values from aual amouts. Calculatig

More information

CME 302: NUMERICAL LINEAR ALGEBRA FALL 2005/06 LECTURE 8

CME 302: NUMERICAL LINEAR ALGEBRA FALL 2005/06 LECTURE 8 CME 30: NUMERICAL LINEAR ALGEBRA FALL 005/06 LECTURE 8 GENE H GOLUB 1 Positive Defiite Matrices A matrix A is positive defiite if x Ax > 0 for all ozero x A positive defiite matrix has real ad positive

More information

Your organization has a Class B IP address of 166.144.0.0 Before you implement subnetting, the Network ID and Host ID are divided as follows:

Your organization has a Class B IP address of 166.144.0.0 Before you implement subnetting, the Network ID and Host ID are divided as follows: Subettig Subettig is used to subdivide a sigle class of etwork i to multiple smaller etworks. Example: Your orgaizatio has a Class B IP address of 166.144.0.0 Before you implemet subettig, the Network

More information

Week 3 Conditional probabilities, Bayes formula, WEEK 3 page 1 Expected value of a random variable

Week 3 Conditional probabilities, Bayes formula, WEEK 3 page 1 Expected value of a random variable Week 3 Coditioal probabilities, Bayes formula, WEEK 3 page 1 Expected value of a radom variable We recall our discussio of 5 card poker hads. Example 13 : a) What is the probability of evet A that a 5

More information

Taking DCOP to the Real World: Efficient Complete Solutions for Distributed Multi-Event Scheduling

Taking DCOP to the Real World: Efficient Complete Solutions for Distributed Multi-Event Scheduling Taig DCOP to the Real World: Efficiet Complete Solutios for Distributed Multi-Evet Schedulig Rajiv T. Maheswara, Milid Tambe, Emma Bowrig, Joatha P. Pearce, ad Pradeep araatham Uiversity of Souther Califoria

More information

Annuities Under Random Rates of Interest II By Abraham Zaks. Technion I.I.T. Haifa ISRAEL and Haifa University Haifa ISRAEL.

Annuities Under Random Rates of Interest II By Abraham Zaks. Technion I.I.T. Haifa ISRAEL and Haifa University Haifa ISRAEL. Auities Uder Radom Rates of Iterest II By Abraham Zas Techio I.I.T. Haifa ISRAEL ad Haifa Uiversity Haifa ISRAEL Departmet of Mathematics, Techio - Israel Istitute of Techology, 3000, Haifa, Israel I memory

More information

The Stable Marriage Problem

The Stable Marriage Problem The Stable Marriage Problem William Hut Lae Departmet of Computer Sciece ad Electrical Egieerig, West Virgiia Uiversity, Morgatow, WV William.Hut@mail.wvu.edu 1 Itroductio Imagie you are a matchmaker,

More information

Escola Federal de Engenharia de Itajubá

Escola Federal de Engenharia de Itajubá Escola Federal de Egeharia de Itajubá Departameto de Egeharia Mecâica Pós-Graduação em Egeharia Mecâica MPF04 ANÁLISE DE SINAIS E AQUISÇÃO DE DADOS SINAIS E SISTEMAS Trabalho 02 (MATLAB) Prof. Dr. José

More information

Convexity, Inequalities, and Norms

Convexity, Inequalities, and Norms Covexity, Iequalities, ad Norms Covex Fuctios You are probably familiar with the otio of cocavity of fuctios. Give a twicedifferetiable fuctio ϕ: R R, We say that ϕ is covex (or cocave up) if ϕ (x) 0 for

More information

Integer Factorization Algorithms

Integer Factorization Algorithms Iteger Factorizatio Algorithms Coelly Bares Departmet of Physics, Orego State Uiversity December 7, 004 This documet has bee placed i the public domai. Cotets I. Itroductio 3 1. Termiology 3. Fudametal

More information

CHAPTER 3 DIGITAL CODING OF SIGNALS

CHAPTER 3 DIGITAL CODING OF SIGNALS CHAPTER 3 DIGITAL CODING OF SIGNALS Computers are ofte used to automate the recordig of measuremets. The trasducers ad sigal coditioig circuits produce a voltage sigal that is proportioal to a quatity

More information

CHAPTER 3 THE TIME VALUE OF MONEY

CHAPTER 3 THE TIME VALUE OF MONEY CHAPTER 3 THE TIME VALUE OF MONEY OVERVIEW A dollar i the had today is worth more tha a dollar to be received i the future because, if you had it ow, you could ivest that dollar ad ear iterest. Of all

More information

Institute of Actuaries of India Subject CT1 Financial Mathematics

Institute of Actuaries of India Subject CT1 Financial Mathematics Istitute of Actuaries of Idia Subject CT1 Fiacial Mathematics For 2014 Examiatios Subject CT1 Fiacial Mathematics Core Techical Aim The aim of the Fiacial Mathematics subject is to provide a groudig i

More information

Present Value Factor To bring one dollar in the future back to present, one uses the Present Value Factor (PVF): Concept 9: Present Value

Present Value Factor To bring one dollar in the future back to present, one uses the Present Value Factor (PVF): Concept 9: Present Value Cocept 9: Preset Value Is the value of a dollar received today the same as received a year from today? A dollar today is worth more tha a dollar tomorrow because of iflatio, opportuity cost, ad risk Brigig

More information

3 Basic Definitions of Probability Theory

3 Basic Definitions of Probability Theory 3 Basic Defiitios of Probability Theory 3defprob.tex: Feb 10, 2003 Classical probability Frequecy probability axiomatic probability Historical developemet: Classical Frequecy Axiomatic The Axiomatic defiitio

More information

Cooley-Tukey. Tukey FFT Algorithms. FFT Algorithms. Cooley

Cooley-Tukey. Tukey FFT Algorithms. FFT Algorithms. Cooley Cooley Cooley-Tuey Tuey FFT Algorithms FFT Algorithms Cosider a legth- sequece x[ with a -poit DFT X[ where Represet the idices ad as +, +, Cooley Cooley-Tuey Tuey FFT Algorithms FFT Algorithms Usig these

More information

BENEFIT-COST ANALYSIS Financial and Economic Appraisal using Spreadsheets

BENEFIT-COST ANALYSIS Financial and Economic Appraisal using Spreadsheets BENEIT-CST ANALYSIS iacial ad Ecoomic Appraisal usig Spreadsheets Ch. 2: Ivestmet Appraisal - Priciples Harry Campbell & Richard Brow School of Ecoomics The Uiversity of Queeslad Review of basic cocepts

More information

Vladimir N. Burkov, Dmitri A. Novikov MODELS AND METHODS OF MULTIPROJECTS MANAGEMENT

Vladimir N. Burkov, Dmitri A. Novikov MODELS AND METHODS OF MULTIPROJECTS MANAGEMENT Keywords: project maagemet, resource allocatio, etwork plaig Vladimir N Burkov, Dmitri A Novikov MODELS AND METHODS OF MULTIPROJECTS MANAGEMENT The paper deals with the problems of resource allocatio betwee

More information

3. If x and y are real numbers, what is the simplified radical form

3. If x and y are real numbers, what is the simplified radical form lgebra II Practice Test Objective:.a. Which is equivalet to 98 94 4 49?. Which epressio is aother way to write 5 4? 5 5 4 4 4 5 4 5. If ad y are real umbers, what is the simplified radical form of 5 y

More information

University of California, Los Angeles Department of Statistics. Distributions related to the normal distribution

University of California, Los Angeles Department of Statistics. Distributions related to the normal distribution Uiversity of Califoria, Los Ageles Departmet of Statistics Statistics 100B Istructor: Nicolas Christou Three importat distributios: Distributios related to the ormal distributio Chi-square (χ ) distributio.

More information

Class Meeting # 16: The Fourier Transform on R n

Class Meeting # 16: The Fourier Transform on R n MATH 18.152 COUSE NOTES - CLASS MEETING # 16 18.152 Itroductio to PDEs, Fall 2011 Professor: Jared Speck Class Meetig # 16: The Fourier Trasform o 1. Itroductio to the Fourier Trasform Earlier i the course,

More information

Here are a couple of warnings to my students who may be here to get a copy of what happened on a day that you missed.

Here are a couple of warnings to my students who may be here to get a copy of what happened on a day that you missed. This documet was writte ad copyrighted by Paul Dawkis. Use of this documet ad its olie versio is govered by the Terms ad Coditios of Use located at http://tutorial.math.lamar.edu/terms.asp. The olie versio

More information

Repeating Decimals are decimal numbers that have number(s) after the decimal point that repeat in a pattern.

Repeating Decimals are decimal numbers that have number(s) after the decimal point that repeat in a pattern. 5.5 Fractios ad Decimals Steps for Chagig a Fractio to a Decimal. Simplify the fractio, if possible. 2. Divide the umerator by the deomiator. d d Repeatig Decimals Repeatig Decimals are decimal umbers

More information

Discrete Mathematics and Probability Theory Spring 2014 Anant Sahai Note 13

Discrete Mathematics and Probability Theory Spring 2014 Anant Sahai Note 13 EECS 70 Discrete Mathematics ad Probability Theory Sprig 2014 Aat Sahai Note 13 Itroductio At this poit, we have see eough examples that it is worth just takig stock of our model of probability ad may

More information

Hypothesis testing. Null and alternative hypotheses

Hypothesis testing. Null and alternative hypotheses Hypothesis testig Aother importat use of samplig distributios is to test hypotheses about populatio parameters, e.g. mea, proportio, regressio coefficiets, etc. For example, it is possible to stipulate

More information

Our aim is to show that under reasonable assumptions a given 2π-periodic function f can be represented as convergent series

Our aim is to show that under reasonable assumptions a given 2π-periodic function f can be represented as convergent series 8 Fourier Series Our aim is to show that uder reasoable assumptios a give -periodic fuctio f ca be represeted as coverget series f(x) = a + (a cos x + b si x). (8.) By defiitio, the covergece of the series

More information

Solutions to Exercises Chapter 4: Recurrence relations and generating functions

Solutions to Exercises Chapter 4: Recurrence relations and generating functions Solutios to Exercises Chapter 4: Recurrece relatios ad geeratig fuctios 1 (a) There are seatig positios arraged i a lie. Prove that the umber of ways of choosig a subset of these positios, with o two chose

More information

Chapter 6: Variance, the law of large numbers and the Monte-Carlo method

Chapter 6: Variance, the law of large numbers and the Monte-Carlo method Chapter 6: Variace, the law of large umbers ad the Mote-Carlo method Expected value, variace, ad Chebyshev iequality. If X is a radom variable recall that the expected value of X, E[X] is the average value

More information

Analysis Notes (only a draft, and the first one!)

Analysis Notes (only a draft, and the first one!) Aalysis Notes (oly a draft, ad the first oe!) Ali Nesi Mathematics Departmet Istabul Bilgi Uiversity Kuştepe Şişli Istabul Turkey aesi@bilgi.edu.tr Jue 22, 2004 2 Cotets 1 Prelimiaries 9 1.1 Biary Operatio...........................

More information

Chapter 7 Methods of Finding Estimators

Chapter 7 Methods of Finding Estimators Chapter 7 for BST 695: Special Topics i Statistical Theory. Kui Zhag, 011 Chapter 7 Methods of Fidig Estimators Sectio 7.1 Itroductio Defiitio 7.1.1 A poit estimator is ay fuctio W( X) W( X1, X,, X ) of

More information

NATIONAL SENIOR CERTIFICATE GRADE 12

NATIONAL SENIOR CERTIFICATE GRADE 12 NATIONAL SENIOR CERTIFICATE GRADE MATHEMATICS P EXEMPLAR 04 MARKS: 50 TIME: 3 hours This questio paper cosists of 8 pages ad iformatio sheet. Please tur over Mathematics/P DBE/04 NSC Grade Eemplar INSTRUCTIONS

More information

Section 11.3: The Integral Test

Section 11.3: The Integral Test Sectio.3: The Itegral Test Most of the series we have looked at have either diverged or have coverged ad we have bee able to fid what they coverge to. I geeral however, the problem is much more difficult

More information

Partial Di erential Equations

Partial Di erential Equations Partial Di eretial Equatios Partial Di eretial Equatios Much of moder sciece, egieerig, ad mathematics is based o the study of partial di eretial equatios, where a partial di eretial equatio is a equatio

More information

Part - I. Mathematics

Part - I. Mathematics Part - I Mathematics CHAPTER Set Theory. Objectives. Itroductio. Set Cocept.. Sets ad Elemets. Subset.. Proper ad Improper Subsets.. Equality of Sets.. Trasitivity of Set Iclusio.4 Uiversal Set.5 Complemet

More information

Modified Line Search Method for Global Optimization

Modified Line Search Method for Global Optimization Modified Lie Search Method for Global Optimizatio Cria Grosa ad Ajith Abraham Ceter of Excellece for Quatifiable Quality of Service Norwegia Uiversity of Sciece ad Techology Trodheim, Norway {cria, ajith}@q2s.tu.o

More information

Notes on exponential generating functions and structures.

Notes on exponential generating functions and structures. Notes o expoetial geeratig fuctios ad structures. 1. The cocept of a structure. Cosider the followig coutig problems: (1) to fid for each the umber of partitios of a -elemet set, (2) to fid for each the

More information

2-3 The Remainder and Factor Theorems

2-3 The Remainder and Factor Theorems - The Remaider ad Factor Theorems Factor each polyomial completely usig the give factor ad log divisio 1 x + x x 60; x + So, x + x x 60 = (x + )(x x 15) Factorig the quadratic expressio yields x + x x

More information

Lecture 2: Karger s Min Cut Algorithm

Lecture 2: Karger s Min Cut Algorithm priceto uiv. F 3 cos 5: Advaced Algorithm Desig Lecture : Karger s Mi Cut Algorithm Lecturer: Sajeev Arora Scribe:Sajeev Today s topic is simple but gorgeous: Karger s mi cut algorithm ad its extesio.

More information

Lecture 4: Cheeger s Inequality

Lecture 4: Cheeger s Inequality Spectral Graph Theory ad Applicatios WS 0/0 Lecture 4: Cheeger s Iequality Lecturer: Thomas Sauerwald & He Su Statemet of Cheeger s Iequality I this lecture we assume for simplicity that G is a d-regular

More information

1 Correlation and Regression Analysis

1 Correlation and Regression Analysis 1 Correlatio ad Regressio Aalysis I this sectio we will be ivestigatig the relatioship betwee two cotiuous variable, such as height ad weight, the cocetratio of a ijected drug ad heart rate, or the cosumptio

More information

Theorems About Power Series

Theorems About Power Series Physics 6A Witer 20 Theorems About Power Series Cosider a power series, f(x) = a x, () where the a are real coefficiets ad x is a real variable. There exists a real o-egative umber R, called the radius

More information

SEQUENCES AND SERIES CHAPTER

SEQUENCES AND SERIES CHAPTER CHAPTER SEQUENCES AND SERIES Whe the Grat family purchased a computer for $,200 o a istallmet pla, they agreed to pay $00 each moth util the cost of the computer plus iterest had bee paid The iterest each

More information

FOUNDATIONS OF MATHEMATICS AND PRE-CALCULUS GRADE 10

FOUNDATIONS OF MATHEMATICS AND PRE-CALCULUS GRADE 10 FOUNDATIONS OF MATHEMATICS AND PRE-CALCULUS GRADE 10 [C] Commuicatio Measuremet A1. Solve problems that ivolve liear measuremet, usig: SI ad imperial uits of measure estimatio strategies measuremet strategies.

More information

Elementary Theory of Russian Roulette

Elementary Theory of Russian Roulette Elemetary Theory of Russia Roulette -iterestig patters of fractios- Satoshi Hashiba Daisuke Miematsu Ryohei Miyadera Itroductio. Today we are goig to study mathematical theory of Russia roulette. If some

More information

Solving equations. Pre-test. Warm-up

Solving equations. Pre-test. Warm-up Solvig equatios 8 Pre-test Warm-up We ca thik of a algebraic equatio as beig like a set of scales. The two sides of the equatio are equal, so the scales are balaced. If we add somethig to oe side of the

More information

Chapter 5: Inner Product Spaces

Chapter 5: Inner Product Spaces Chapter 5: Ier Product Spaces Chapter 5: Ier Product Spaces SECION A Itroductio to Ier Product Spaces By the ed of this sectio you will be able to uderstad what is meat by a ier product space give examples

More information

MATH 083 Final Exam Review

MATH 083 Final Exam Review MATH 08 Fial Eam Review Completig the problems i this review will greatly prepare you for the fial eam Calculator use is ot required, but you are permitted to use a calculator durig the fial eam period

More information

Hypergeometric Distributions

Hypergeometric Distributions 7.4 Hypergeometric Distributios Whe choosig the startig lie-up for a game, a coach obviously has to choose a differet player for each positio. Similarly, whe a uio elects delegates for a covetio or you

More information

Mathematical goals. Starting points. Materials required. Time needed

Mathematical goals. Starting points. Materials required. Time needed Level A1 of challege: C A1 Mathematical goals Startig poits Materials required Time eeded Iterpretig algebraic expressios To help learers to: traslate betwee words, symbols, tables, ad area represetatios

More information

Subject CT5 Contingencies Core Technical Syllabus

Subject CT5 Contingencies Core Technical Syllabus Subject CT5 Cotigecies Core Techical Syllabus for the 2015 exams 1 Jue 2014 Aim The aim of the Cotigecies subject is to provide a groudig i the mathematical techiques which ca be used to model ad value

More information

Confidence Intervals. CI for a population mean (σ is known and n > 30 or the variable is normally distributed in the.

Confidence Intervals. CI for a population mean (σ is known and n > 30 or the variable is normally distributed in the. Cofidece Itervals A cofidece iterval is a iterval whose purpose is to estimate a parameter (a umber that could, i theory, be calculated from the populatio, if measuremets were available for the whole populatio).

More information

Lesson 17 Pearson s Correlation Coefficient

Lesson 17 Pearson s Correlation Coefficient Outlie Measures of Relatioships Pearso s Correlatio Coefficiet (r) -types of data -scatter plots -measure of directio -measure of stregth Computatio -covariatio of X ad Y -uique variatio i X ad Y -measurig

More information

THE REGRESSION MODEL IN MATRIX FORM. For simple linear regression, meaning one predictor, the model is. for i = 1, 2, 3,, n

THE REGRESSION MODEL IN MATRIX FORM. For simple linear regression, meaning one predictor, the model is. for i = 1, 2, 3,, n We will cosider the liear regressio model i matrix form. For simple liear regressio, meaig oe predictor, the model is i = + x i + ε i for i =,,,, This model icludes the assumptio that the ε i s are a sample

More information

Output Analysis (2, Chapters 10 &11 Law)

Output Analysis (2, Chapters 10 &11 Law) B. Maddah ENMG 6 Simulatio 05/0/07 Output Aalysis (, Chapters 10 &11 Law) Comparig alterative system cofiguratio Sice the output of a simulatio is radom, the comparig differet systems via simulatio should

More information

Normal Distribution.

Normal Distribution. Normal Distributio www.icrf.l Normal distributio I probability theory, the ormal or Gaussia distributio, is a cotiuous probability distributio that is ofte used as a first approimatio to describe realvalued

More information

Concept: Types of algorithms

Concept: Types of algorithms Discrete Math for Bioiformatics WS 10/11:, by A. Bockmayr/K. Reiert, 18. Oktober 2010, 21:22 1001 Cocept: Types of algorithms The expositio is based o the followig sources, which are all required readig:

More information

Project Deliverables. CS 361, Lecture 28. Outline. Project Deliverables. Administrative. Project Comments

Project Deliverables. CS 361, Lecture 28. Outline. Project Deliverables. Administrative. Project Comments Project Deliverables CS 361, Lecture 28 Jared Saia Uiversity of New Mexico Each Group should tur i oe group project cosistig of: About 6-12 pages of text (ca be loger with appedix) 6-12 figures (please

More information

INFINITE SERIES KEITH CONRAD

INFINITE SERIES KEITH CONRAD INFINITE SERIES KEITH CONRAD. Itroductio The two basic cocepts of calculus, differetiatio ad itegratio, are defied i terms of limits (Newto quotiets ad Riema sums). I additio to these is a third fudametal

More information

Approximating Area under a curve with rectangles. To find the area under a curve we approximate the area using rectangles and then use limits to find

Approximating Area under a curve with rectangles. To find the area under a curve we approximate the area using rectangles and then use limits to find 1.8 Approximatig Area uder a curve with rectagles 1.6 To fid the area uder a curve we approximate the area usig rectagles ad the use limits to fid 1.4 the area. Example 1 Suppose we wat to estimate 1.

More information

Time Value of Money, NPV and IRR equation solving with the TI-86

Time Value of Money, NPV and IRR equation solving with the TI-86 Time Value of Moey NPV ad IRR Equatio Solvig with the TI-86 (may work with TI-85) (similar process works with TI-83, TI-83 Plus ad may work with TI-82) Time Value of Moey, NPV ad IRR equatio solvig with

More information