The Mathematica Journal Tricks of the Trade

Size: px
Start display at page:

Download "The Mathematica Journal Tricks of the Trade"

Transcription

1 The Mathematica Joural Tricks of the Trade Edited by Paul Abbott This is a colum of programmig tricks ad techiques, most of which, we hope, will be cotributed by our readers, either directly as submissios to The Mathematica Joural or as a edited aswer to a questio posted i the Mathematica ewsgroup, comp.soft-sys.math.mathematica. Sum-Free Set The sumset of two or more subsets of a additive group is the set of all sums formed by takig oe elemet from each set (see plaetmath.org/ecyclopedia/ Sumset.html). The sumset ca be computed usig Tuples. I[]:= SumSet@s ListD := Uio@Plus ûûû Tuples@8s<DD Defie to be SumSet. I[2]:= CirclePlus := SumSet Here is the sumset 8, 2< 8, 3, 5< 82<. I[3]:= 8, 2< 8, 3, 5< 82< Out[3]= 84, 5, 6, 7, 8, 9< A sum-free set S is a set for which the itersectio of S ad the sumset S S is empty (see mathworld.wolfram.com/sum-freeset.html). I[4]:= SumFreeQ@s_ListD := s Hs sl 8< For example, the sum-free subsets of 8, 2, 3< are «ª 8<, 8<, 82<, 83<, 8, 3<, ad 82, 3<. I[5]:= SumFreeQ êû 88<, 8<, 82<, 83<, 8, 3<, 82, 3<< Out[5]= 8True, True, True, True, True, True< Note that 8, 2< is ot sum-free. I[6]:= SumFreeQ@8, 2<D Out[6]= False Here are the sum-free subsets of 8, 3, 5, 7, 8<. I[7]:= Select@Subsets@8, 3, 5, 7, 8<D, SumFreeQD Out[7]= 88<, 8<, 83<, 85<, 87<, 88<, 8, 3<, 8, 5<, 8, 7<, 8, 8<, 83, 5<, 83, 7<, 83, 8<, 85, 7<, 85, 8<, 87, 8<, 8, 3, 5<, 8, 3, 7<, 8, 3, 8<, 8, 5, 7<, 8, 5, 8<, 83, 5, 7<, 83, 7, 8<, 85, 7, 8<, 8, 3, 5, 7<< The Mathematica Joural 0: Wolfram Media, Ic.

2 Tricks of the Trade 463 Sum-free subsets of 8, 2,, < ca be computed recursively as follows. I[8]:= = 88<<; I[9]:= := = - D H# 8< &L êû Select@SumFreeSet@ - D, # H - #L 8< &D The key to this computatio is the use of the test # H - #L 8< & o SumFreeSet@ - D to costruct elemets of SumFreeSet@D. Here are the sum-free subsets for = 0,,, 4. I[0]:= Table@SumFreeSet@D, 8, 0, 4<D êê ColumForm Out[0]= 88<< 88<, 8<< 88<, 8<, 82<< 88<, 8<, 82<, 83<, 8, 3<, 82, 3<< 88<, 8<, 82<, 83<, 84<, 8, 3<, 8, 4<, 82, 3<, 83, 4<< Alteratively, sum-free subsets ca be computed usig NestList, startig from the empty set. I[]:= Module@8 = 0<, NestList@H++; # H# 8< &L êû Select@#, # H - #L 8< &DL &, 88<<, 5D êê ColumFormD Out[]= 88<< 88<, 8<< 88<, 8<, 82<< 88<, 8<, 82<, 83<, 8, 3<, 82, 3<< 88<, 8<, 82<, 83<, 84<, 8, 3<, 8, 4<, 82, 3<, 83, 4<< 88<, 8<, 82<, 83<, 84<, 85<, 8, 3<, 8, 4<, 8, 5<, 82, 3<, 82, 5<, 83, 4<, 83, 5<, 84, 5<, 8, 3, 5<, 83, 4, 5<< The umber of sum-free subsets for each are, 2, 3, 6, 9, 6,. Searchig for this sequece at we fid that it is A I[2]:= Legth êû First@%D Out[2]= 8, 2, 3, 6, 9, 6< Usig Sow ad Reap, here is the umber of sum-free subsets for I[3]:= Module@8 = 0<, First ûlast ûreapûnest@h++; Sow@Legth@#DD; # H# 8< &L êû Select@#, # H - #L 8< &DL &, 88<<, 25DD Out[3]= 8, 2, 3, 6, 9, 6, 24, 42, 6, 08, 5, 253, 369, 607, 847, 400, 954, 339, 4398, 6976, 9583, 5456, 20982, 3286, 4547< The Mathematica Joural 0: Wolfram Media, Ic.

3 464 Edited by Paul Abbott Google Search for Mathematica Chris Chiasso A Google search for keyword site:documets.wolfram.com iurl:mathematica searches for keyword i The Mathematica Book ad i the curret versio of the olie documetatio. For example, a search for NVariatioalBoud returs a lik to documets.wolfram.com/mathematica/add-osliks/stadardpackages/ Calculus/VariatioalMethods.html. Firefox users ca make a bookmark with the URL ematica&sourceid=moilla-search ad the fill i the keyword field for that bookmark as mhelp. Typig mhelp NVariatioalBoud ito the Firefox address bar searches the documetatio for NVariatioalBoud. Asymptotic Expasio ad p Gregory s series (mathworld.wolfram.com/gregoryseries.html) is a slowly coverget formula for p. I[]:= 4 H-L k- k= ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ ÄÄÄÄÄÄÄÄÄ 2 k - Out[]= p Trucatig the series after 50,000 terms (half a power of 0, i this case 0 5 ) yields a result that is icorrect i the 6 th digit. I[2]:= gregory = 4` H-L k- k= ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ ÄÄÄÄÄÄÄÄÄ 2 k - Out[2]= I[3]:= pi = N@p, 50D Out[3]= I[4]:= - dlog 0 Hpi - gregorylt Out[4]= 6 However, comparig these two umbers, it is surprisig how may digits they have i commo [, 2]. I[5]:= RealDigits@piD - RealDigits@gregoryD Out[5]= 880, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2, 0, 0, 0, 0, 0, 0, 0, 0,, 0, 0, 0, 0, 0, 0, 0, 0, -2, 7, 8, 0, 0, 0, 0, 0, 0, 3, -3, 7, 0, 0, 0, 0, 0<, 0< The Mathematica Joural 0: Wolfram Media, Ic.

4 Tricks of the Trade 465 Moreover, the idex of the positio of the least sigificat digit of each block of differet digits is a odd multiple of 5. I[6]:= Partitio@Rest û First@%D, 5D Out[6]= i j k y { The differeces ca be computed usig FromDigits. I[7]:= FromDigits êû % Out[7]= 82, 0, -2, 0, 0, 0, -22, 0, 2770< We ca represet the differece betwee p ad Gregory s series trucated after 50,000 terms as _ , _ where umbers above the ceter lie are egative ad those below the lie are positive. Searchig for the sequece of differeces at we fid that they are twice the Euler umbers, E 2 k. I[8]:= Table@8k, 2 E 2 k <, 8k, 0, 4<D Out[8]= i y 3-22 j k { Empirically, we have determied the asymptotic differece betwee p ad the trucated Gregory s series. I[9]:= diff@_, m_d = 2 m k=0 E 2 k ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ 2 k+ ; See [] for a proof of this result. The Mathematica Joural 0: Wolfram Media, Ic.

5 466 Edited by Paul Abbott Addig the asymptotic differece to the trucated Gregory s series ad puttig = 2 µ = 0 5, we ca recover p to (at least) 50 decimal places. I[0]:= p - gregory - diff@0 5, 4D Out[0]= 0. µ 0-50 The asymptotic differece ca be computed directly usig Series. H-L k- I[]:= FullSimplifyASeriesAp - 4 ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ ÄÄÄÄÄÄÄÄÄ 2 k - Out[]= 3 5 ÄÄÄÄÄÄ 2 k= 7, 8,, 9<E, > 0 Ì ÄÄÄÄÄÄ 4 Œ E 2 ÅÅÅÅÅ - 2 i k y + 0 i { k y - 22 i { k y i { k y + O i j i { kk y { See also [3]. 9 0 y { Hadamard Regulariatio Hadamard regulariatio is a techique for hadlig diverget itegrals (essetially keepig oly the fiite part of the itegral) ad plays a importat role i several braches of mathematical physics (see [4, 5] ad mathworld.wolfram.com/hadamarditegral.html). Cosider evaluatig K f D ª ÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅ GH-aL f HyL ÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅ ÅÅÅÅÅÅÅÅÅÅÅÅÅ - H - yl a+ i the Hadamard sese, where 0 < a < + ad œ, that is, dat ad f œ C D. Usig itegratio by parts via patter matchig, we ca icrease the expoet of H - yl -p util it is itegrable, that is, - < p 0. I[]:= byparts = H - yl p_ f_@ yd y f H yl H - yl p y - J H - yl p yn y f H yl y; Here is the formal result of itegratig by parts oce. I[2]:= Out[2]= ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ GH-aL f H yl ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ ÄÄÄÄÄÄÄÄÄÄÄÄÄÄ H - yl a+ Ÿ H - yl -a f HyL y ÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅ ÅÅÅÅÅÅÅÅÅÅÅ - H - yl-a f H yl ÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅ ÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅ ÅÅÅÅÅÅÅÅÅÅ GH - al GH - al y y ê. byparts êê FullSimplify êê Expad The H - yl -a f HyL term is sigular at y = if a > 0. Here is the result of three partial itegratios. The Mathematica Joural 0: Wolfram Media, Ic.

6 Tricks of the Trade 467 I[3]:= CollectANestA# ê. byparts &, 8 f H yl, f H_L H yl<, FullSimplifyE ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ GH-aL f H yl ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ y, 3E, a+ H - yl Out[3]= - f HyL H - yl -a ÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅ - f H yl H - yl 2-a f H yl H - yl-a ÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅ - ÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅ ÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅ ÅÅÅÅÅÅÅÅÅÅ + Ÿ H - yl 2-a f H3L HyL y ÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅ ÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅ GH2 - al GH3 - al GH - al GH3 - al Neglectig the sigular terms at y =, we evaluate the partial itegrals at y = -. I[4]:= -% ê. HoldPatter@Itegrate@ DD :> 0 ê. y Æ - Out[4]= 2 -a f H-L ÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅ ÅÅÅÅÅÅÅÅÅÅÅÅÅÅ + 2-a f H-L ÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅ ÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅ + 22-a f H-L ÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅ ÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅ GH - al GH2 - al GH3 - al The patter is clear. Droppig the sigular terms at y =, we obtai k=0 K f D ª ÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅ GH-aL f HyL ÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅ ÅÅÅÅÅÅÅÅÅÅÅÅÅ - H - yl a+ y 2 k-a ÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅ f HkL H-L + ÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅ ÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅ GHk - a + L GH - a + L H - yl -a f H+L HyL y. - As a defiite example, cosider - exph yl ÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅ ÅÅÅÅÅÅÅÅÅÅÅÅÅ y. a+ H - yl Direct itegratio followed by series expasio about e = 0 reveals the sigular terms. I[5]:= AssumigA > e > 0, Out[5]= HGH-a, el - GH-a, 2LL ÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅ ÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅ GH-aL I[6]:= Series@%, 8e, 0, <D Out[6]= -e exph yl ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ GH-aL ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ - H - yl a+ HH ÅÅÅÅ + ÅÅÅÅÅÅÅÅÅ e + a -a OHe2 LL e -a + GH-aL - GH-a, 2LL ÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅ ÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅ ÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅ ÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅ ÅÅÅÅÅÅÅÅÅ GH-aL Now e -a is sigular at e = 0 for a > 0, ad e -a is either sigular if a > or vaishes if 0 < a <. So both terms are igorable. Hece the osigular part ca be extracted as follows. I[7]:= K = % ê. e -a Æ 0 êê FullSimplify Out[7]= GH-a, 2L - ÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅ ÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅ GH-aL For example, here is the exact result for a = 3 ê 2. ye The Mathematica Joural 0: Wolfram Media, Ic.

7 468 Edited by Paul Abbott I[8]:= Out[8]= K êê FuctioExpad êê Simplify 3 ÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅ ÅÅÅÅÅÅÅÅÅÅÅ 4 è!!!!!!! 2 p + erfiè!!! 2 M Alteratively, usig the idetity obtaied usig itegratio by parts, we obtai the same aswer. I[9]:= ModuleA8a = 3 ê 2,, f = Exp<, = Floor@aD; Out[9]= ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ ÄÄÄÄÄÄÄ GH - a + L H - yl -a f H+L H yl ye êê Simplify - 3 ÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅ ÅÅÅÅÅÅÅÅÅÅÅ 4 è!!!!!!! 2 p + erfiè!!! 2 M k=0 2 k-a ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ ÄÄÄÄÄÄÄ GHk - a + L f HkL H-L + Refereces [] J. M. Borwei, P. B. Borwei, ad K. Dilcher, Pi, Euler Numbers, ad Asymptotic Expasios, America Mathematical Mothly, 96(8), 989 pp [2] G. Almkvist, May Correct Digits of p, Revisited, America Mathematical Mothly, 04(4), 997 pp DOI-Lik: dx.doi.org/0.2307/ [3] S. Matsumoto, Covergece Improvemet of Ifiite Series by Liear Fractios, i Applied Mathematica: Electroic Proceedigs of the Eighth Iteratioal Mathematica Symposium (IMS06), Avigo, Frace (Y. Papegay, ed.), Rocquecourt: INRIA, 2006 ISBN [4] D. Elliott, Three Algorithms for Hadamard Fiite-Part Itegrals ad Fractioal Derivatives, Joural of Computatioal ad Applied Mathematics, 62(3), 995 pp [5] L. Blachet ad G. Faye, Hadamard Regulariatio, Joural of Mathematical Physics, 4, 2000 pp Paul Abbott School of Physics, M03 The Uiversity of Wester Australia 35 Stirlig Highway Crawley WA 6009, Australia tmj@physics.uwa.edu.au physics.uwa.edu.au/~paul The Mathematica Joural 0: Wolfram Media, Ic.

Tricks of the Trade Edited by Paul Abbott

Tricks of the Trade Edited by Paul Abbott The Mathematica Journal Tricks of the Trade Edited by Paul Abbott This is a column of programming tricks and techniques, most of which, we hope, will be contributed by our readers, either directly as submissions

More information

The Gamma function. Marco Bonvini. October 9, dt e t t z 1. (1) Γ(z + 1) = z Γ(z) : (2) = e t t z. + z dt e t t z 1. = z Γ(z).

The Gamma function. Marco Bonvini. October 9, dt e t t z 1. (1) Γ(z + 1) = z Γ(z) : (2) = e t t z. + z dt e t t z 1. = z Γ(z). The Gamma fuctio Marco Bovii October 9, 2 Gamma fuctio The Euler Gamma fuctio is defied as Γ() It is easy to show that Γ() satisfy the recursio relatio ideed, itegratig by parts, dt e t t. () Γ( + ) Γ()

More information

MAT1026 Calculus II Basic Convergence Tests for Series

MAT1026 Calculus II Basic Convergence Tests for Series MAT026 Calculus II Basic Covergece Tests for Series Egi MERMUT 202.03.08 Dokuz Eylül Uiversity Faculty of Sciece Departmet of Mathematics İzmir/TURKEY Cotets Mootoe Covergece Theorem 2 2 Series of Real

More information

CHAPTER 10 INFINITE SEQUENCES AND SERIES

CHAPTER 10 INFINITE SEQUENCES AND SERIES CHAPTER 10 INFINITE SEQUENCES AND SERIES 10.1 Sequeces 10.2 Ifiite Series 10.3 The Itegral Tests 10.4 Compariso Tests 10.5 The Ratio ad Root Tests 10.6 Alteratig Series: Absolute ad Coditioal Covergece

More information

2.4 - Sequences and Series

2.4 - Sequences and Series 2.4 - Sequeces ad Series Sequeces A sequece is a ordered list of elemets. Defiitio 1 A sequece is a fuctio from a subset of the set of itegers (usually either the set 80, 1, 2, 3,... < or the set 81, 2,

More information

Section 7 Fundamentals of Sequences and Series

Section 7 Fundamentals of Sequences and Series ectio Fudametals of equeces ad eries. Defiitio ad examples of sequeces A sequece ca be thought of as a ifiite list of umbers. 0, -, -0, -, -0...,,,,,,. (iii),,,,... Defiitio: A sequece is a fuctio which

More information

Chapter 10: Power Series

Chapter 10: Power Series Chapter : Power Series 57 Chapter Overview: Power Series The reaso series are part of a Calculus course is that there are fuctios which caot be itegrated. All power series, though, ca be itegrated because

More information

Infinite Sequences and Series

Infinite Sequences and Series Chapter 6 Ifiite Sequeces ad Series 6.1 Ifiite Sequeces 6.1.1 Elemetary Cocepts Simply speakig, a sequece is a ordered list of umbers writte: {a 1, a 2, a 3,...a, a +1,...} where the elemets a i represet

More information

Tricks of the Trade. Edited by Paul Abbott. Interpolation with Noise Vittorio G. Caffa. The Mathematica Journal

Tricks of the Trade. Edited by Paul Abbott. Interpolation with Noise Vittorio G. Caffa. The Mathematica Journal The Mathematica Journal Tricks of the Trade Edited by Paul Abbott This is a column of programming tricks and techniques, most of which, we hope, will be contributed by our readers, either directly as submissions

More information

6.003 Homework #3 Solutions

6.003 Homework #3 Solutions 6.00 Homework # Solutios Problems. Complex umbers a. Evaluate the real ad imagiary parts of j j. π/ Real part = Imagiary part = 0 e Euler s formula says that j = e jπ/, so jπ/ j π/ j j = e = e. Thus the

More information

62. Power series Definition 16. (Power series) Given a sequence {c n }, the series. c n x n = c 0 + c 1 x + c 2 x 2 + c 3 x 3 +

62. Power series Definition 16. (Power series) Given a sequence {c n }, the series. c n x n = c 0 + c 1 x + c 2 x 2 + c 3 x 3 + 62. Power series Defiitio 16. (Power series) Give a sequece {c }, the series c x = c 0 + c 1 x + c 2 x 2 + c 3 x 3 + is called a power series i the variable x. The umbers c are called the coefficiets of

More information

Math 475, Problem Set #12: Answers

Math 475, Problem Set #12: Answers Math 475, Problem Set #12: Aswers A. Chapter 8, problem 12, parts (b) ad (d). (b) S # (, 2) = 2 2, sice, from amog the 2 ways of puttig elemets ito 2 distiguishable boxes, exactly 2 of them result i oe

More information

18.440, March 9, Stirling s formula

18.440, March 9, Stirling s formula Stirlig s formula 8.44, March 9, 9 The factorial fuctio! is importat i evaluatig biomial, hypergeometric, ad other probabilities. If is ot too large,! ca be computed directly, by calculators or computers.

More information

10.2 Infinite Series Contemporary Calculus 1

10.2 Infinite Series Contemporary Calculus 1 10. Ifiite Series Cotemporary Calculus 1 10. INFINITE SERIES Our goal i this sectio is to add together the umbers i a sequece. Sice it would take a very log time to add together the ifiite umber of umbers,

More information

Math 113 Exam 3 Practice

Math 113 Exam 3 Practice Math Exam Practice Exam will cover.-.9. This sheet has three sectios. The first sectio will remid you about techiques ad formulas that you should kow. The secod gives a umber of practice questios for you

More information

11.1 Arithmetic Sequences and Series

11.1 Arithmetic Sequences and Series 11.1 Arithmetic Sequeces ad Series A itroductio 1, 4, 7, 10, 13 9, 1, 7, 15 6., 6.6, 7, 7.4 ππ+, 3, π+ 6 Arithmetic Sequeces ADD To get ext term 35 1 7. 3π + 9, 4, 8, 16, 3 9, 3, 1, 1/ 3 1,1/ 4,1/16,1/

More information

Topic 5 [434 marks] (i) Find the range of values of n for which. (ii) Write down the value of x dx in terms of n, when it does exist.

Topic 5 [434 marks] (i) Find the range of values of n for which. (ii) Write down the value of x dx in terms of n, when it does exist. Topic 5 [44 marks] 1a (i) Fid the rage of values of for which eists 1 Write dow the value of i terms of 1, whe it does eist Fid the solutio to the differetial equatio 1b give that y = 1 whe = π (cos si

More information

INFINITE SEQUENCES AND SERIES

INFINITE SEQUENCES AND SERIES 11 INFINITE SEQUENCES AND SERIES INFINITE SEQUENCES AND SERIES 11.4 The Compariso Tests I this sectio, we will lear: How to fid the value of a series by comparig it with a kow series. COMPARISON TESTS

More information

ENGI Series Page 6-01

ENGI Series Page 6-01 ENGI 3425 6 Series Page 6-01 6. Series Cotets: 6.01 Sequeces; geeral term, limits, covergece 6.02 Series; summatio otatio, covergece, divergece test 6.03 Stadard Series; telescopig series, geometric series,

More information

Bernoulli numbers and the Euler-Maclaurin summation formula

Bernoulli numbers and the Euler-Maclaurin summation formula Physics 6A Witer 006 Beroulli umbers ad the Euler-Maclauri summatio formula I this ote, I shall motivate the origi of the Euler-Maclauri summatio formula. I will also explai why the coefficiets o the right

More information

7 Sequences of real numbers

7 Sequences of real numbers 40 7 Sequeces of real umbers 7. Defiitios ad examples Defiitio 7... A sequece of real umbers is a real fuctio whose domai is the set N of atural umbers. Let s : N R be a sequece. The the values of s are

More information

Approximate formulas for the distance term in far and near field interferometry Tim Cornwell, NRAO

Approximate formulas for the distance term in far and near field interferometry Tim Cornwell, NRAO EVLA Memo 75 Approximate formulas for the distance term in far and near field interferometry Tim Cornwell, NRAO tcornwel@nrao.edu Introduction In many applications in wide field and near field interferometry,

More information

Roberto s Notes on Series Chapter 2: Convergence tests Section 7. Alternating series

Roberto s Notes on Series Chapter 2: Convergence tests Section 7. Alternating series Roberto s Notes o Series Chapter 2: Covergece tests Sectio 7 Alteratig series What you eed to kow already: All basic covergece tests for evetually positive series. What you ca lear here: A test for series

More information

SCORE. Exam 2. MA 114 Exam 2 Fall 2017

SCORE. Exam 2. MA 114 Exam 2 Fall 2017 Exam Name: Sectio ad/or TA: Do ot remove this aswer page you will retur the whole exam. You will be allowed two hours to complete this test. No books or otes may be used. You may use a graphig calculator

More information

is also known as the general term of the sequence

is also known as the general term of the sequence Lesso : Sequeces ad Series Outlie Objectives: I ca determie whether a sequece has a patter. I ca determie whether a sequece ca be geeralized to fid a formula for the geeral term i the sequece. I ca determie

More information

Roberto s Notes on Infinite Series Chapter 1: Sequences and series Section 3. Geometric series

Roberto s Notes on Infinite Series Chapter 1: Sequences and series Section 3. Geometric series Roberto s Notes o Ifiite Series Chapter 1: Sequeces ad series Sectio Geometric series What you eed to kow already: What a ifiite series is. The divergece test. What you ca le here: Everythig there is to

More information

Chapter 9: Numerical Differentiation

Chapter 9: Numerical Differentiation 178 Chapter 9: Numerical Differetiatio Numerical Differetiatio Formulatio of equatios for physical problems ofte ivolve derivatives (rate-of-chage quatities, such as velocity ad acceleratio). Numerical

More information

Complex Numbers Solutions

Complex Numbers Solutions Complex Numbers Solutios Joseph Zoller February 7, 06 Solutios. (009 AIME I Problem ) There is a complex umber with imagiary part 64 ad a positive iteger such that Fid. [Solutio: 697] 4i + + 4i. 4i 4i

More information

Calculus 2 - D. Yuen Final Exam Review (Version 11/22/2017. Please report any possible typos.)

Calculus 2 - D. Yuen Final Exam Review (Version 11/22/2017. Please report any possible typos.) Calculus - D Yue Fial Eam Review (Versio //7 Please report ay possible typos) NOTE: The review otes are oly o topics ot covered o previous eams See previous review sheets for summary of previous topics

More information

Infinite Series. Definition. An infinite series is an expression of the form. Where the numbers u k are called the terms of the series.

Infinite Series. Definition. An infinite series is an expression of the form. Where the numbers u k are called the terms of the series. Ifiite Series Defiitio. A ifiite series is a expressio of the form uk = u + u + u + + u + () 2 3 k Where the umbers u k are called the terms of the series. Such a expressio is meat to be the result of

More information

... and realizing that as n goes to infinity the two integrals should be equal. This yields the Wallis result-

... and realizing that as n goes to infinity the two integrals should be equal. This yields the Wallis result- INFINITE PRODUTS Oe defies a ifiite product as- F F F... F x [ F ] Takig the atural logarithm of each side oe has- l[ F x] l F l F l F l F... So that the iitial ifiite product will coverge oly if the sum

More information

Fall 2013 MTH431/531 Real analysis Section Notes

Fall 2013 MTH431/531 Real analysis Section Notes Fall 013 MTH431/531 Real aalysis Sectio 8.1-8. Notes Yi Su 013.11.1 1. Defiitio of uiform covergece. We look at a sequece of fuctios f (x) ad study the coverget property. Notice we have two parameters

More information

THE SOLUTION OF NONLINEAR EQUATIONS f( x ) = 0.

THE SOLUTION OF NONLINEAR EQUATIONS f( x ) = 0. THE SOLUTION OF NONLINEAR EQUATIONS f( ) = 0. Noliear Equatio Solvers Bracketig. Graphical. Aalytical Ope Methods Bisectio False Positio (Regula-Falsi) Fied poit iteratio Newto Raphso Secat The root of

More information

SCORE. Exam 2. MA 114 Exam 2 Fall 2016

SCORE. Exam 2. MA 114 Exam 2 Fall 2016 MA 4 Exam Fall 06 Exam Name: Sectio ad/or TA: Do ot remove this aswer page you will retur the whole exam. You will be allowed two hours to complete this test. No books or otes may be used. You may use

More information

1 6 = 1 6 = + Factorials and Euler s Gamma function

1 6 = 1 6 = + Factorials and Euler s Gamma function Royal Holloway Uiversity of Lodo Departmet of Physics Factorials ad Euler s Gamma fuctio Itroductio The is a self-cotaied part of the course dealig, essetially, with the factorial fuctio ad its geeralizatio

More information

x a x a Lecture 2 Series (See Chapter 1 in Boas)

x a x a Lecture 2 Series (See Chapter 1 in Boas) Lecture Series (See Chapter i Boas) A basic ad very powerful (if pedestria, recall we are lazy AD smart) way to solve ay differetial (or itegral) equatio is via a series expasio of the correspodig solutio

More information

SEQUENCES AND SERIES

SEQUENCES AND SERIES 9 SEQUENCES AND SERIES INTRODUCTION Sequeces have may importat applicatios i several spheres of huma activities Whe a collectio of objects is arraged i a defiite order such that it has a idetified first

More information

Examine each chart, what connections are there between the ratio!p!n and your findings in Task 2.1.1? Explain your reasoning.

Examine each chart, what connections are there between the ratio!p!n and your findings in Task 2.1.1? Explain your reasoning. Algebra II: Strad. Liear Fuctios; Topic. Liear Patters; Task.. TASK..: FINITE DIFFERENCES. Refer to your charts from Task.. ad add two colums to each chart: a. A colum o the left of the chart labeled Chage

More information

Math 1314 Lesson 16 Area and Riemann Sums and Lesson 17 Riemann Sums Using GeoGebra; Definite Integrals

Math 1314 Lesson 16 Area and Riemann Sums and Lesson 17 Riemann Sums Using GeoGebra; Definite Integrals Math 1314 Lesso 16 Area ad Riema Sums ad Lesso 17 Riema Sums Usig GeoGebra; Defiite Itegrals The secod questio studied i calculus is the area questio. If a regio coforms to a kow formula from geometry,

More information

ACCELERATING CONVERGENCE OF SERIES

ACCELERATING CONVERGENCE OF SERIES ACCELERATIG COVERGECE OF SERIES KEITH CORAD. Itroductio A ifiite series is the limit of its partial sums. However, it may take a large umber of terms to get eve a few correct digits for the series from

More information

Series with Central Binomial Coefficients, Catalan Numbers, and Harmonic Numbers

Series with Central Binomial Coefficients, Catalan Numbers, and Harmonic Numbers 3 47 6 3 Joural of Iteger Sequeces, Vol. 5 (0), Article..7 Series with Cetral Biomial Coefficiets, Catala Numbers, ad Harmoic Numbers Khristo N. Boyadzhiev Departmet of Mathematics ad Statistics Ohio Norther

More information

We are mainly going to be concerned with power series in x, such as. (x)} converges - that is, lims N n

We are mainly going to be concerned with power series in x, such as. (x)} converges - that is, lims N n Review of Power Series, Power Series Solutios A power series i x - a is a ifiite series of the form c (x a) =c +c (x a)+(x a) +... We also call this a power series cetered at a. Ex. (x+) is cetered at

More information

Chimica Inorganica 3

Chimica Inorganica 3 himica Iorgaica Irreducible Represetatios ad haracter Tables Rather tha usig geometrical operatios, it is ofte much more coveiet to employ a ew set of group elemets which are matrices ad to make the rule

More information

Quiz. Use either the RATIO or ROOT TEST to determine whether the series is convergent or not.

Quiz. Use either the RATIO or ROOT TEST to determine whether the series is convergent or not. Quiz. Use either the RATIO or ROOT TEST to determie whether the series is coverget or ot. e .6 POWER SERIES Defiitio. A power series i about is a series of the form c 0 c a c a... c a... a 0 c a where

More information

Sequences of Definite Integrals, Factorials and Double Factorials

Sequences of Definite Integrals, Factorials and Double Factorials 47 6 Joural of Iteger Sequeces, Vol. 8 (5), Article 5.4.6 Sequeces of Defiite Itegrals, Factorials ad Double Factorials Thierry Daa-Picard Departmet of Applied Mathematics Jerusalem College of Techology

More information

Solutions to Homework 7

Solutions to Homework 7 Solutios to Homework 7 Due Wedesday, August 4, 004. Chapter 4.1) 3, 4, 9, 0, 7, 30. Chapter 4.) 4, 9, 10, 11, 1. Chapter 4.1. Solutio to problem 3. The sum has the form a 1 a + a 3 with a k = 1/k. Sice

More information

6 Integers Modulo n. integer k can be written as k = qn + r, with q,r, 0 r b. So any integer.

6 Integers Modulo n. integer k can be written as k = qn + r, with q,r, 0 r b. So any integer. 6 Itegers Modulo I Example 2.3(e), we have defied the cogruece of two itegers a,b with respect to a modulus. Let us recall that a b (mod ) meas a b. We have proved that cogruece is a equivalece relatio

More information

The Rand and block distances of pairs of set partitions

The Rand and block distances of pairs of set partitions The Rad ad block distaces of pairs of set partitios Frak Ruskey 1 ad Jeifer Woodcock 1 Dept. of Computer Sciece, Uiversity of Victoria, CANADA Abstract. The Rad distaces of two set partitios is the umber

More information

Math 106 Fall 2014 Exam 3.1 December 10, 2014

Math 106 Fall 2014 Exam 3.1 December 10, 2014 Math 06 Fall 0 Exam 3 December 0, 0 Determie if the series is coverget or diverget by makig a compariso DCT or LCT) with a suitable b Fill i the blaks with your aswer For Coverget or Diverget write Coverget

More information

SEQUENCES AND SERIES

SEQUENCES AND SERIES Sequeces ad 6 Sequeces Ad SEQUENCES AND SERIES Successio of umbers of which oe umber is desigated as the first, other as the secod, aother as the third ad so o gives rise to what is called a sequece. Sequeces

More information

Chapter 7: Numerical Series

Chapter 7: Numerical Series Chapter 7: Numerical Series Chapter 7 Overview: Sequeces ad Numerical Series I most texts, the topic of sequeces ad series appears, at first, to be a side topic. There are almost o derivatives or itegrals

More information

SCORE. Exam 2. MA 114 Exam 2 Fall 2016

SCORE. Exam 2. MA 114 Exam 2 Fall 2016 Exam 2 Name: Sectio ad/or TA: Do ot remove this aswer page you will retur the whole exam. You will be allowed two hours to complete this test. No books or otes may be used. You may use a graphig calculator

More information

Quiz No. 1. ln n n. 1. Define: an infinite sequence A function whose domain is N 2. Define: a convergent sequence A sequence that has a limit

Quiz No. 1. ln n n. 1. Define: an infinite sequence A function whose domain is N 2. Define: a convergent sequence A sequence that has a limit Quiz No.. Defie: a ifiite sequece A fuctio whose domai is N 2. Defie: a coverget sequece A sequece that has a limit 3. Is this sequece coverget? Why or why ot? l Yes, it is coverget sice L=0 by LHR. INFINITE

More information

Alternating Series. 1 n 0 2 n n THEOREM 9.14 Alternating Series Test Let a n > 0. The alternating series. 1 n a n.

Alternating Series. 1 n 0 2 n n THEOREM 9.14 Alternating Series Test Let a n > 0. The alternating series. 1 n a n. 0_0905.qxd //0 :7 PM Page SECTION 9.5 Alteratig Series Sectio 9.5 Alteratig Series Use the Alteratig Series Test to determie whether a ifiite series coverges. Use the Alteratig Series Remaider to approximate

More information

MATH 1080: Calculus of One Variable II Fall 2017 Textbook: Single Variable Calculus: Early Transcendentals, 7e, by James Stewart.

MATH 1080: Calculus of One Variable II Fall 2017 Textbook: Single Variable Calculus: Early Transcendentals, 7e, by James Stewart. MATH 1080: Calculus of Oe Variable II Fall 2017 Textbook: Sigle Variable Calculus: Early Trascedetals, 7e, by James Stewart Uit 3 Skill Set Importat: Studets should expect test questios that require a

More information

Singular Continuous Measures by Michael Pejic 5/14/10

Singular Continuous Measures by Michael Pejic 5/14/10 Sigular Cotiuous Measures by Michael Peic 5/4/0 Prelimiaries Give a set X, a σ-algebra o X is a collectio of subsets of X that cotais X ad ad is closed uder complemetatio ad coutable uios hece, coutable

More information

Sequences, Mathematical Induction, and Recursion. CSE 2353 Discrete Computational Structures Spring 2018

Sequences, Mathematical Induction, and Recursion. CSE 2353 Discrete Computational Structures Spring 2018 CSE 353 Discrete Computatioal Structures Sprig 08 Sequeces, Mathematical Iductio, ad Recursio (Chapter 5, Epp) Note: some course slides adopted from publisher-provided material Overview May mathematical

More information

The Riemann Zeta Function

The Riemann Zeta Function Physics 6A Witer 6 The Riema Zeta Fuctio I this ote, I will sketch some of the mai properties of the Riema zeta fuctio, ζ(x). For x >, we defie ζ(x) =, x >. () x = For x, this sum diverges. However, we

More information

Unit 6: Sequences and Series

Unit 6: Sequences and Series AMHS Hoors Algebra 2 - Uit 6 Uit 6: Sequeces ad Series 26 Sequeces Defiitio: A sequece is a ordered list of umbers ad is formally defied as a fuctio whose domai is the set of positive itegers. It is commo

More information

XT - MATHS Grade 12. Date: 2010/06/29. Subject: Series and Sequences 1: Arithmetic Total Marks: 84 = 2 = 2 1. FALSE 10.

XT - MATHS Grade 12. Date: 2010/06/29. Subject: Series and Sequences 1: Arithmetic Total Marks: 84 = 2 = 2 1. FALSE 10. ubject: eries ad equeces 1: Arithmetic otal Mars: 8 X - MAH Grade 1 Date: 010/0/ 1. FALE 10 Explaatio: his series is arithmetic as d 1 ad d 15 1 he sum of a arithmetic series is give by [ a ( ] a represets

More information

Lecture 2 Appendix B: Some sample problems from Boas, Chapter 1. Solution: We want to use the general expression for the form of a geometric series

Lecture 2 Appendix B: Some sample problems from Boas, Chapter 1. Solution: We want to use the general expression for the form of a geometric series Lecture Appedix B: ome sample problems from Boas, Chapter Here are some solutios to the sample problems assiged for Chapter, 6 ad 9 : 5 olutio: We wat to use the geeral expressio for the form of a geometric

More information

Math 106 Fall 2014 Exam 3.2 December 10, 2014

Math 106 Fall 2014 Exam 3.2 December 10, 2014 Math 06 Fall 04 Exam 3 December 0, 04 Determie if the series is coverget or diverget by makig a compariso (DCT or LCT) with a suitable b Fill i the blaks with your aswer For Coverget or Diverget write

More information

Math 113 Exam 4 Practice

Math 113 Exam 4 Practice Math Exam 4 Practice Exam 4 will cover.-.. This sheet has three sectios. The first sectio will remid you about techiques ad formulas that you should kow. The secod gives a umber of practice questios for

More information

Math 163 REVIEW EXAM 3: SOLUTIONS

Math 163 REVIEW EXAM 3: SOLUTIONS Math 63 REVIEW EXAM 3: SOLUTIONS These otes do ot iclude solutios to the Cocept Check o p8. They also do t cotai complete solutios to the True-False problems o those pages. Please go over these problems

More information

Physics 116A Solutions to Homework Set #1 Winter Boas, problem Use equation 1.8 to find a fraction describing

Physics 116A Solutions to Homework Set #1 Winter Boas, problem Use equation 1.8 to find a fraction describing Physics 6A Solutios to Homework Set # Witer 0. Boas, problem. 8 Use equatio.8 to fid a fractio describig 0.694444444... Start with the formula S = a, ad otice that we ca remove ay umber of r fiite decimals

More information

10.6 ALTERNATING SERIES

10.6 ALTERNATING SERIES 0.6 Alteratig Series Cotemporary Calculus 0.6 ALTERNATING SERIES I the last two sectios we cosidered tests for the covergece of series whose terms were all positive. I this sectio we examie series whose

More information

LONG SNAKES IN POWERS OF THE COMPLETE GRAPH WITH AN ODD NUMBER OF VERTICES

LONG SNAKES IN POWERS OF THE COMPLETE GRAPH WITH AN ODD NUMBER OF VERTICES J Lodo Math Soc (2 50, (1994, 465 476 LONG SNAKES IN POWERS OF THE COMPLETE GRAPH WITH AN ODD NUMBER OF VERTICES Jerzy Wojciechowski Abstract I [5] Abbott ad Katchalski ask if there exists a costat c >

More information

n=0 f n(z) converges, we say that f n (z) = lim N s N(z) (37)

n=0 f n(z) converges, we say that f n (z) = lim N s N(z) (37) 10 Power Series A fuctio defied by a series of fuctios Let {f } be defied o A C The formal sum f is called a series of fuctios If for ay z A, the series f (z) coverges, we say that f coverges o A I this

More information

2 n = n=1 a n is convergent and we let. i=1

2 n = n=1 a n is convergent and we let. i=1 Lecture 3 : Series So far our defiitio of a sum of umbers applies oly to addig a fiite set of umbers. We ca exted this to a defiitio of a sum of a ifiite set of umbers i much the same way as we exteded

More information

CSE 1400 Applied Discrete Mathematics Number Theory and Proofs

CSE 1400 Applied Discrete Mathematics Number Theory and Proofs CSE 1400 Applied Discrete Mathematics Number Theory ad Proofs Departmet of Computer Scieces College of Egieerig Florida Tech Sprig 01 Problems for Number Theory Backgroud Number theory is the brach of

More information

MATH301 Real Analysis (2008 Fall) Tutorial Note #7. k=1 f k (x) converges pointwise to S(x) on E if and

MATH301 Real Analysis (2008 Fall) Tutorial Note #7. k=1 f k (x) converges pointwise to S(x) on E if and MATH01 Real Aalysis (2008 Fall) Tutorial Note #7 Sequece ad Series of fuctio 1: Poitwise Covergece ad Uiform Covergece Part I: Poitwise Covergece Defiitio of poitwise covergece: A sequece of fuctios f

More information

ÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅ

ÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅ HW.nb HW #. D scattering (a) The delta function potential requires a discontinuity of the wave function, y' H+0L - y' H-0L = ÅÅÅÅÅÅÅÅÅÅÅÅ m m yh0l, while the wavefunction itself is continuous. SolveA9

More information

Chapter 7 COMBINATIONS AND PERMUTATIONS. where we have the specific formula for the binomial coefficients:

Chapter 7 COMBINATIONS AND PERMUTATIONS. where we have the specific formula for the binomial coefficients: Chapter 7 COMBINATIONS AND PERMUTATIONS We have see i the previous chapter that (a + b) ca be writte as 0 a % a & b%þ% a & b %þ% b where we have the specific formula for the biomial coefficiets: '!!(&)!

More information

MATH 31B: MIDTERM 2 REVIEW

MATH 31B: MIDTERM 2 REVIEW MATH 3B: MIDTERM REVIEW JOE HUGHES. Evaluate x (x ) (x 3).. Partial Fractios Solutio: The umerator has degree less tha the deomiator, so we ca use partial fractios. Write x (x ) (x 3) = A x + A (x ) +

More information

6.3 Testing Series With Positive Terms

6.3 Testing Series With Positive Terms 6.3. TESTING SERIES WITH POSITIVE TERMS 307 6.3 Testig Series With Positive Terms 6.3. Review of what is kow up to ow I theory, testig a series a i for covergece amouts to fidig the i= sequece of partial

More information

Series III. Chapter Alternating Series

Series III. Chapter Alternating Series Chapter 9 Series III With the exceptio of the Null Sequece Test, all the tests for series covergece ad divergece that we have cosidered so far have dealt oly with series of oegative terms. Series with

More information

SOLUTIONS TO EXAM 3. Solution: Note that this defines two convergent geometric series with respective radii r 1 = 2/5 < 1 and r 2 = 1/5 < 1.

SOLUTIONS TO EXAM 3. Solution: Note that this defines two convergent geometric series with respective radii r 1 = 2/5 < 1 and r 2 = 1/5 < 1. SOLUTIONS TO EXAM 3 Problem Fid the sum of the followig series 2 + ( ) 5 5 2 5 3 25 2 2 This series diverges Solutio: Note that this defies two coverget geometric series with respective radii r 2/5 < ad

More information

CHAPTER 1 SEQUENCES AND INFINITE SERIES

CHAPTER 1 SEQUENCES AND INFINITE SERIES CHAPTER SEQUENCES AND INFINITE SERIES SEQUENCES AND INFINITE SERIES (0 meetigs) Sequeces ad limit of a sequece Mootoic ad bouded sequece Ifiite series of costat terms Ifiite series of positive terms Alteratig

More information

Chapter 6 Overview: Sequences and Numerical Series. For the purposes of AP, this topic is broken into four basic subtopics:

Chapter 6 Overview: Sequences and Numerical Series. For the purposes of AP, this topic is broken into four basic subtopics: Chapter 6 Overview: Sequeces ad Numerical Series I most texts, the topic of sequeces ad series appears, at first, to be a side topic. There are almost o derivatives or itegrals (which is what most studets

More information

ARITHMETIC PROGRESSION

ARITHMETIC PROGRESSION CHAPTER 5 ARITHMETIC PROGRESSION Poits to Remember :. A sequece is a arragemet of umbers or objects i a defiite order.. A sequece a, a, a 3,..., a,... is called a Arithmetic Progressio (A.P) if there exists

More information

(I.C) THE DISTRIBUTION OF PRIMES

(I.C) THE DISTRIBUTION OF PRIMES I.C) THE DISTRIBUTION OF PRIMES I the last sectio we showed via a Euclid-ispired, algebraic argumet that there are ifiitely may primes of the form p = 4 i.e. 4 + 3). I fact, this is true for primes of

More information

REVIEW 1, MATH n=1 is convergent. (b) Determine whether a n is convergent.

REVIEW 1, MATH n=1 is convergent. (b) Determine whether a n is convergent. REVIEW, MATH 00. Let a = +. a) Determie whether the sequece a ) is coverget. b) Determie whether a is coverget.. Determie whether the series is coverget or diverget. If it is coverget, fid its sum. a)

More information

A MATHEMATICA PACKAGE FOR COMPUTING ASYMPTOTIC EXPANSIONS OF SOLUTIONS OF P-FINITE RECURRENCE EQUATIONS. 1. The Problem

A MATHEMATICA PACKAGE FOR COMPUTING ASYMPTOTIC EXPANSIONS OF SOLUTIONS OF P-FINITE RECURRENCE EQUATIONS. 1. The Problem A MATHEMATICA PACKAGE FOR COMPUTING ASYMPTOTIC EXPANSIONS OF SOLUTIONS OF P-FINITE RECURRENCE EQUATIONS MANUEL KAUERS Abstract. We describe a simple package for computig a fudametal system of certai formal

More information

The Random Walk For Dummies

The Random Walk For Dummies The Radom Walk For Dummies Richard A Mote Abstract We look at the priciples goverig the oe-dimesioal discrete radom walk First we review five basic cocepts of probability theory The we cosider the Beroulli

More information

Exercises 1 Sets and functions

Exercises 1 Sets and functions Exercises 1 Sets ad fuctios HU Wei September 6, 018 1 Basics Set theory ca be made much more rigorous ad built upo a set of Axioms. But we will cover oly some heuristic ideas. For those iterested studets,

More information

SEQUENCE AND SERIES NCERT

SEQUENCE AND SERIES NCERT 9. Overview By a sequece, we mea a arragemet of umbers i a defiite order accordig to some rule. We deote the terms of a sequece by a, a,..., etc., the subscript deotes the positio of the term. I view of

More information

A NOTE ON PASCAL S MATRIX. Gi-Sang Cheon, Jin-Soo Kim and Haeng-Won Yoon

A NOTE ON PASCAL S MATRIX. Gi-Sang Cheon, Jin-Soo Kim and Haeng-Won Yoon J Korea Soc Math Educ Ser B: Pure Appl Math 6(1999), o 2 121 127 A NOTE ON PASCAL S MATRIX Gi-Sag Cheo, Ji-Soo Kim ad Haeg-Wo Yoo Abstract We ca get the Pascal s matrix of order by takig the first rows

More information

MIXED REVIEW of Problem Solving

MIXED REVIEW of Problem Solving MIXED REVIEW of Problem Solvig STATE TEST PRACTICE classzoe.com Lessos 2.4 2.. MULTI-STEP PROBLEM A ball is dropped from a height of 2 feet. Each time the ball hits the groud, it bouces to 70% of its previous

More information

Combinatorially Thinking

Combinatorially Thinking Combiatorially Thiig SIMUW 2008: July 4 25 Jeifer J Qui jjqui@uwashigtoedu Philosophy We wat to costruct our mathematical uderstadig To this ed, our goal is to situate our problems i cocrete coutig cotexts

More information

f t dt. Write the third-degree Taylor polynomial for G

f t dt. Write the third-degree Taylor polynomial for G AP Calculus BC Homework - Chapter 8B Taylor, Maclauri, ad Power Series # Taylor & Maclauri Polyomials Critical Thikig Joural: (CTJ: 5 pts.) Discuss the followig questios i a paragraph: What does it mea

More information

Notes 8 Singularities

Notes 8 Singularities ECE 6382 Fall 27 David R. Jackso Notes 8 Sigularities Notes are from D. R. Wilto, Dept. of ECE Sigularity A poit s is a sigularity of the fuctio f () if the fuctio is ot aalytic at s. (The fuctio does

More information

sin(n) + 2 cos(2n) n 3/2 3 sin(n) 2cos(2n) n 3/2 a n =

sin(n) + 2 cos(2n) n 3/2 3 sin(n) 2cos(2n) n 3/2 a n = 60. Ratio ad root tests 60.1. Absolutely coverget series. Defiitio 13. (Absolute covergece) A series a is called absolutely coverget if the series of absolute values a is coverget. The absolute covergece

More information

Average-Case Analysis of QuickSort

Average-Case Analysis of QuickSort Average-Case Aalysis of QuickSort Comp 363 Fall Semester 003 October 3, 003 The purpose of this documet is to itroduce the idea of usig recurrece relatios to do average-case aalysis. The average-case ruig

More information

PAPER : IIT-JAM 2010

PAPER : IIT-JAM 2010 MATHEMATICS-MA (CODE A) Q.-Q.5: Oly oe optio is correct for each questio. Each questio carries (+6) marks for correct aswer ad ( ) marks for icorrect aswer.. Which of the followig coditios does NOT esure

More information

Ans: a n = 3 + ( 1) n Determine whether the sequence converges or diverges. If it converges, find the limit.

Ans: a n = 3 + ( 1) n Determine whether the sequence converges or diverges. If it converges, find the limit. . Fid a formula for the term a of the give sequece: {, 3, 9, 7, 8 },... As: a = 3 b. { 4, 9, 36, 45 },... As: a = ( ) ( + ) c. {5,, 5,, 5,, 5,,... } As: a = 3 + ( ) +. Determie whether the sequece coverges

More information

arxiv: v3 [math.nt] 24 Dec 2017

arxiv: v3 [math.nt] 24 Dec 2017 DOUGALL S 5 F SUM AND THE WZ-ALGORITHM Abstract. We show how to prove the examples of a paper by Chu ad Zhag usig the WZ-algorithm. arxiv:6.085v [math.nt] Dec 07 Keywords. Geeralized hypergeometric series;

More information

The Pendulum. Purpose

The Pendulum. Purpose The Pedulum Purpose To carry out a example illustratig how physics approaches ad solves problems. The example used here is to explore the differet factors that determie the period of motio of a pedulum.

More information

Infinite Sequence and Series

Infinite Sequence and Series Chapter 7 Ifiite Sequece ad Series 7. Sequeces A sequece ca be thought of as a list of umbers writte i a defiite order: a,a 2,a 3,a 4,...,a,... The umber a is called the first term, a 2 is the secod term,

More information

Topics. Homework Problems. MATH 301 Introduction to Analysis Chapter Four Sequences. 1. Definition of convergence of sequences.

Topics. Homework Problems. MATH 301 Introduction to Analysis Chapter Four Sequences. 1. Definition of convergence of sequences. MATH 301 Itroductio to Aalysis Chapter Four Sequeces Topics 1. Defiitio of covergece of sequeces. 2. Fidig ad provig the limit of sequeces. 3. Bouded covergece theorem: Theorem 4.1.8. 4. Theorems 4.1.13

More information