Generalizations of Ski-Rental

Size: px
Start display at page:

Download "Generalizations of Ski-Rental"

Transcription

1 Gnraliations of Ski-Rntal Hisham Harik, Jo Chung Octobr 23, 25 1 Th Ski Rntal Problm Suppos you want to start a nw hobby: skiing. In th ski shop, thy giv you th options to ithr rnt skis or buy skis. If you know a priori how many days you will b skiing, thn you can asily comput whthr you should rnt or buy right from th first day. This is an xampl of offlin problms all information is givn at onc, vn futur information. In th ral world, you would not know bforhand how many days you will b skiing. So, you nd to dcid on whthr to rnt or buy skis basd on past information only. This is an xampl of onlin problms you ar only givn past information. You hav no knowldg of th futur, and you hav to dcid in th prsnt. Algorithms that solv onlin problms ar calld onlin algorithms. A rasonabl qustion to ask is: how dos an onlin algorithm compar to its offlin countrpart? On way to assss this is by solving th ratio of th cost of th onlin algorithm to th cost of th offlin algorithm smallr ratio mans bttr onlin algorithm. This ratio is calld th comptitiv ratio. Mathmatically, an algorithm is c-comptitiv if thr xists a constant α such that: 1.1 Offlin Algorithm E(C A (I)) c Cost OPT (I) + α Hr is an xampl of an offlin algorithm. Suppos that th ski shop chargs $2/day to rnt a pair of skis and $3 to buy a pair. Sinc w ar working in an offlin stting, th numbr of days you will ski is known bforhand. Hr is an algorithm that dtrmins th action to tak to minimi th total cost: if 2 d 3, thn always rnt ls, buy on th first day d stands for th numbr of days you will ski. Lt th instanc b th numbr of days you ski. Thn, givn this algorithm and an instanc I d, th optimal cost is Cost OPT (I d ) = min(2 d,3) So, say that you will ski for xactly 1 days, thn you should rnt, sinc Cost OPT (I 1 ) = min(2 1,3) = min(2,3) = 2. If you will ski for xactly 2 days, thn you should buy, sinc Cost OPT (I 2 ) = min(2 2,3) = min(4,3) = 3. 1

2 1.2 Dtrministic Onlin Algorithm Th offlin algorithm can b considrd as a lowr bound of th onlin algorithm sinc th offlin algorithm is givn all information whil th onlin algorithm is givn partial information. So, an onlin algorithm cannot do bttr than Cost OPT (I d ). Latr, w will s that thr ar bttr lowr bounds. A st of all dtrministic onlin algorithms that solv th ski-rntal problm can b dfind as {A x x } whr x is th numbr of days to rnt skis bfor buying. In othr words, A x rnts skis up to x days thn buy. Hr is th function that calculats th cost givn th numbr of days, d, of skiing: { 2 d if d < x Cost(A x,i d ) = 2 x + 3 othrwis Justapos this function with Cost OPT (I d ) = min(2 d,3). Notic that if d is lss than x, thn both th onlin algorithm and th optimal solution hav th cost of 2 d. This is th bst cas for our onlin algorithms whr th comptitiv ratio is 1. Howvr, it is mor maningful to considr th worst cas of th onlin algorithm. Mor spcifically, w want to dtrmin th algorithm that givs th bst worst cas. For that, w us C(A x,i d ) = 2 x + 3 whr d x. Lts look at an xampl of a dtrministic onlin algorithm. Suppos w choos A 5 for our algorithm. What is th worst cas that can happn? In othr words, what is th comptitiv ratio of this algorithm? It is intuitiv to choos d = 6 as th worst cas for A 5. A 5 tlls you to rnt for 5 days, buy on th 6th day, and thn you will nvr go back to ski again aftr th 6th day. Th offlin solution is Cost OPT (I 6 ) = min(6 2,3) = 12. A 5 s solution is Cost(A 5,I 6 ) = = 4. Th comptitiv ratio for A 5 is at last 4/12 or approximatly That mans that w paid about 3.33 tims th optimal amount. So, what is th smallst comptitiv ratio for any dtrministic onlin algorithm? If th skis cost p dollars pr day to rnt and q dollars to buy, thn it is optimal to rnt for q/p days, thn buy. Substituting p and q into th quations, w gt Cost(A q/p,i q/p+1 ) = q p p + q = 2 q. And Cost OPT (I q/p+1 ) = min(( q + 1) p,q) = q. p So, th comptitiv ratio is 2 q/q = 2. And, if w lt c(a x ) b th comptitiv ratio of algorithm A x. Thn A q/p givs th bst comptitiv ratio out of all dtrministic algorithm bcaus c(a x ) = (p x + q) min(p x,q) 2. 2

3 1.3 Randomid Onlin Algorithm W showd that thr is a dtrministic algorithm for th ski-rntal problm that givs a comptitiv ratio of 2. Howvr, it is possibl to gt a comptitiv ratio bttr than 2 by using a randomid algorithm. Lts s a simpl xampl of a randomid algorithm that givs a comptitiv ratio lss than 2. Suppos you us A 1 with probability.5 and A 15 with probability of.5, thn th xpctd cost is: E(Cost(A,I d )) =.5 Cost(A 1,I d ) +.5 Cost(A 15,I d ) Expanding this quation givs us 2 d if d 1 E(Cost(A,I d )) =.5(5) +.5(2 d) if 1 < d 15.5(5) +.5(6) if d > 15 To solv for th comptitiv ratio c(a), plug in all possibl intgr solution for d 15 into th quation and us d = 16 for all d > 15 sinc that maximis c(a). In this xampl, th xpctd cost is maximid whn d = 16. So, w gt th following: c(a) = max( E(Cost(A,I d)) Cost OPT (I d ) ) c(a) = E(Cost(A,I 16)) Cost OPT (I 16 ) c(a) = 55/3 < 2 Hr, w choos a dtrministic algorithm randomly basd on a probability distribution. Th probability distribution is Prob(A 1 ) =.5, Prob(A 15 ) =.5, and vrything ls =. Sinc th instanc I must b fixd bfor th algorithm can run, th advrsary must choos th worst instanc for th randomid algorithm without any knowldg of th raliation of th random variabls usd by th algorithm. Th advrsary wants to find th largst comptitiv ratio c such that E(Cost(A,I A )) c Cost OPT (I A ) for all randomid algorithm A. Thr ar two prspctivs to th ski-rntal problm. On is from th advrsary s point of viw. Th advrsary wants to choos an instanc I that maximis th comptitiv ratio. Anothr prspctiv is from th skir s point of viw. Th skir wants to slct an algorithm that minimis th comptitiv ratio. Ths two playrs hav xact opposit intrsts. Lts say th skir found th bst algorithm that minimis th comptitiv ratio. W will call this algorithm A bst. Th advrsary will choos th bst instanc I with th following formula: c = supe p ( Cost(A bst,i) I I Cost OPT (I) ) If th skir dos not know th bst algorithm that solvs for th minimal comptitiv ratio c, thn th skir would us th following: c = inf sup E p ( Cost(A ),I Cost OPT (I) ) I I 3

4 Givn an arbitrary algorithm A and an arbitrary instanc I d, calculating th comptitiv ratio is simpl. Lts first scal th cost of th ski st to 1 unit and th numbr of days whr th cost of rnting th skis quals th cost of buying th skis to 1 unit. Thn, Cost(A,I d ) Cost OPT (I d ) = +1 d if d if d and d > 1 d if > d > 1 1 (othrwis) Th first scnario is whn you rnt for days and thn buy th skis, but it s chapr to rnt thm vrytim. Th scond scnario is whn you rnt for days and thn buy thm, but it s chapr to just buy thm in th bginning. Th third scnario is whn you rnt thm vrytim but it s chapr to buy thm from th bginning. Th fourth scnario is whn your action is optimal. Notic that it is not conomical for th skir to buy skis aftr 1 unit, sinc th comptitiv ratio will only incras aftr 1 unit. Also, it is not conomical for th advrsary to pick th numbr of days you ski to b lss than 1 unit. Th comptitiv will always dcras whn th numbr of days th advrsary chooss go pass 1 unit. So, scnario 2 and 3 (whr d 1) ar not considrd in th probability distribution. Th advrsary, using scnario 1 and 2 abov, can maximi th lowr bound of th th comptitiv ratio with th following systm of diffrntial quations: q(u)du u q(u)du = 1 q(u) q(u)du c Th advrsary wants to maximi c. Solving th quations givs: c = { u q(u) = 1 u 1 if u < 1 if u > 1 On th othr hand, th skir, using scnario 1 and 2, can minimi th uppr bound of th comptitiv ratio with th following systm of diffrntial quations: u u p()d + p()d c u p()d = 1 p() Th skir wants to minimi c. Solving th quations givs: c = { ( ) p() = 1 if 1 if > 1 Not that th maximum lowr bound of th advrsary s comptitiv ratio is qual to th minimum uppr bound of th skir s comptitiv ratio. W just found th tight bound of 1. 4

5 2 Background matrial for TCP acknowldgmnt Anothr intrsting onlin problm is TCP acknowldgmnt problm. Th TCP acknowldgmnt is known to b a gnraliation of th ski-rntal problm, though it was always thought to b hardr. W will start by discussing th rsult from th Sidn papr that put a lowr bound on th TCP acknowldgmnt problm. W thn mov to xplain th algorithm prsntd in th Karlin- Knyon-Randall papr that has a comptitiv ratio of /( 1), and dmonstrat that th TCP acknowldgmnt problm is no mor complx than ski-rntal. According to th Von Numann / Yao princinpl, th bst possibl randomid algorithm has as a lowr bound th valu incurrd by all dtrministic alogithms ovr a distribution of problm instancs. Sidn argus that a gnral framwork for finding th right distribution is ndd and h gos on to dvis on. Without going into th dtails, Sidn dviss a gnral solution form, thn plugging paramtrs into th solution would giv you th right distribution. H provs a nw rsult, namly th TCP acknowldgmnt problm, using his mthod. Sidn provs a lowr bound for th TCP acknowldgmnt problm of /( 1). What is intrsting about th solution is that Sidn dscribs th problm as not-so-simpl. Shortly aftr that Karlin-Knyon-Randall papr prsnts th first optimal randomid onlin algorithm for th TCP acknowldgmnt problm, that is an algorithm that rachs th lowr bound limit provs in th Sidn papr. Furthrmor it dmonstrats that th problm is not as hard as first thought, spcifically not mor so than th ski-rntal problm. In th rmaindr of this papr w will go on to xplain th TCP acknowldgmnt problm, dscrib th algorithm dvisd by th authors, and thn prsnt an analysis of th algorithm that provs th comptitiv ratio of /( 1). 3 TCP acknowldgmnt (plas us figur on for clarifications) In lam man s trms, th TCP acknowldgmnt problm is that of trying to minimi th numbr of packts snd across a ntwork in ordr to hlp with rliving congstion. In cas of no lost or othrwis damagd packts, th minimum rquird packts snt ar xactly twic th numbr of packts ndd for transfrring th data, sinc vry packt snt has to b acknowldgd by th rcivr. Trying to rduc th total numbr of packts snt is through trying to minimi th numbr of acknowldgmnts snt through acknowldging svral data packts rcivd by a singl packt. Howvr, du to th congstion control mchanism of TCP, if th sndr dos not rciv an acknowldgmnt for his packt within a spcifid priod of tim, th sndr will rsnd his packt, and th ffort to rduc th numbr of total packts would hav bn foild. Dooly, Goldman and Scott combind both rstrictions into a singl quation that capturs both th numbr of acknowldgmnt packts snt and th latncy in snding th acknowldgmnt packts. Th latncy actually capturs th risk of having th data packt snt again by th sndr. Thus th cost incurrd ovr a squnc of n arrival tims a 1, a 2,..., a n, with k acknowldgmnt tims t 1, t 2,..., t k, is statd as th following: whr latncy(j) = t j 1<a i t j (t j a i ). Cost = acknowldgmnt cost + latncy cost = k + latncy(j) 1 j k 5

6 Anothr variant of this problm is through having wights for th packts, but for all practical purposs that formulation is quivalnt to th currnt on, sinc th arrival of a packt with wight two is quivalnt to th arrival of two sparat packts with unit wight. On could asily imagin a dynamic programming solution, in cas th squnc of packt arrivals is known to th algorithm, which would calculat th optimal cost for this problm. It would b through calculating th minimal total cost incurrd for acknowldging a packt dirctly aftr arrival by building th solution ovr th costs calculatd for th prvious packts. This proof is not cntral to proving th A algorithm but srvs as a practic run for proving th comptitivnss of th A algorithm. Howvr, th onlin problm is not as asy to solv. Th onlin algorithm dos not know th squnc of packts arrivals. Thus has th dilmma facd by th algorithm is whthr to wait for a nw packt to arriv bfor acknowldging or will that wait prov to b too long and latncy tim would b wastd (mayb vn that was th last packt snt). As w pointd out arlir, Sidn obtaind a lowr bound of /( 1) for th comptitiv ratio of randomid onlin algorithms, and in th nxt sction w will prsnt th algorithm that achivs that ratio from th Karlin-Knyon-Randall papr. 4 A and A algorithms (plas us figur two for clarifications) Prviously proposd algorithms probabilistically vary th amount of tim thy tolrat bfor snding an acknowldgmnt. Howvr, ths algorithms wr provn not to achiv th optimal comptitiv ratio of /( 1). Th algorithm A that will b prsntd in this sction will us a family of algorithms calld A, whr 1. First w will dfin A : Considring th last acknowldgmnt happnd at tim t i (with t starting at tim ), A would acknowldg at a tim t i+1 that rspcts th following quation: P(t i,t i+1)(t i+1 t i+1) =. Whr P(t,t ) is th st of packts arriving btwn tim t and tim t, and t i+1 is btwn t i and t i+1 (t i t i+1 t i+1). Thus, considring th last acknowldgmnt happnd at tim t i (with t starting at tim ), th algorithm A would chos to acknowldg at th first tim t i+1 availabl that would nsur at last units of latncy hav passd sinc th last acknowldgmnt. Notic on thing about this algorithm, th algorithm considrs only th packts arriving sinc th last acknoldgmnt till th hypothtical tim t i+1. Randomid algorithm A chooss a valu for btwn ro and on, according to th probability dnsity function p() = 1, and thn runs A on it. Th main dificulty is to analy th algorithm, so as a practic run th authors dcidd to analy th A 1 algorithm. 5 Practic run on A 1 (plas us figur thr for clarifications) Th authors go about proving th 2-comptitivnss of th A 1 algorithm in two stps. Th first stp is through proving that thr is at last an optimal algorithm that snds an acknowldgmnt btwn any pair of succssiv A 1 acknowldgmnt. Th scond stp rlis on th first stp for proving that th A 1 algorithm has a 2-comptitiv ratio. Th proof for th first stp is through contradiction. Considr thr is no optimal solution with acknowldgmnt btwn vry pair of A 1 algorithm acknowldgmnt. Tak any squnc for th optimal solution that dos not acknowldg 6

7 btwn a pair of A 1 acknowldgmnt, without loss of gnrality lt us call thm t i and t i+1. Add an acknowldgmnt to th proposd optimal squnc btwn t i and t i+1, and spcifically at t i+1. Calculating th cost for th modifid optimal squnc w discovr that w hav addd a cost of on, by adding an additional acknowldgmnt, and w hav rmovd a cost of at last 1, sinc = 1. Thus th nw squnc is at last as good as th optimal solution, if not bttr. Thus w hav provn that thr is an optimal solution that has an acknowldgmnt btwn vry pair of A 1 acknowldgmnt. Using this rsult w will go on to prov that th A 1 algorithm has a 2-comptitivnss ratio. Th cost of th A 1 algorithm can b boundd in th following mannr: it includs th cost of th optimal solution plus th latncy that is incurrd by th A 1 algorithm and not th optimal solution. Thus w can writ th following quation: Cost(A 1 ) nopt + latncy(opt) + latncy(a 1 OPT) whr latncy(a 1 OPT) is th latncy incurrd by A 1 and not th optimal solution. Th numbr of acknowldgmnts don by th optimal solution sinc ach optimal acknowldgmnt can rmov at most, which in this cas is qual to on, binds that xtra latncy. Thus, Cost(A 1 ) nopt + latncy(opt) + nopt Cost(OPT) + nopt 2 Cost(OPT) This proof is not cntral to proving th A algorithm but srvs as a practic run for proving th comptitivnss of th A algorithm. 6 Analysis of A Algorithm Th objctiv of th A algorithm is to show that th comptitiv ratio of th TCP acknowldgmnt problm is qual to its lowr bound, 1. W larnd from bfor that any dtrministic algorithm must hav a comptitiv ratio of at last 2. So, A must b a randomid algorithm. Lts analy th cost of th A algorithm with rspct to th optimal algorithm OPT. Assum that OPT is givn. Aftr plotting OPT and A on th sam graph, w s that th ara mad by A btwn th lin of packt arrival and A is prcisly th ara cratd by OPT (Cost OPT ), minus th ara in OPT but not in A, plus th ara in A but not in OPT. Th ara in A not in OPT is at most pr acknowldgmnt in OPT by th dfinition of A. This givs an ara of at most n OPT (I). Lt E b th ara in OPT but not in A. And, lt th numbr of acknowldgmnt packts snt by A b n. Thn th cost of A givn any instanc I is: Cost A (I) n (I) + Cost OPT n OPT (I) + n OPT (I) E (I) Now, lts calculat th lowr bound for E. It is difficult to calculat a lowr bound of E gomtrically sinc th shap of th graph may vary basd on I and. Instad, w attack this problm by calculating th ara gaind by E whn w incras by an infinitsimal amount. Thn, w will scal up to 1 using intgration. Lt L(n,) b th minimum ara in OPT but not in A givn th numbr of acknowldgmnts n. W find that if u > v, thn Th proof of this is givn in [1]. L(n u,) (v )(n v n u ) + L(n v,) 7

8 Moving L(n v,) to th lft, and writ it in intgration form whr u = v + dv, w gt for any < t 1, Solving this givs E is prcisly L(n OPT,), so t dl(n v,) L(n t,) t (v )dn v n v dv (1 )n t E n v dv (1 )n t With E, w can now substitut this to th cost quation and find thn find th bst comptitiv ratio. Lt p() b th probability dnsity function for A. Thn, Cost A Cost OPT n OPT + p()(n + n OPT n w dw + (1 )n OPT )d w = Cost OPT + p()n d n w p()ddw If w lt p() = 1, thn = Cost OPT + (p() P())n d CostA 1 + (p() P())n d Cost 1 OPT n d = 1 So, th comptitiv ratio of th A algorithm is 1 Rfrncs whn p() = 1. [1] Karlin, Knyon, Randall, Dynamic TCP Acknowldgmnt and Othr Storis about /(-1), Algorithmica, 36(3), (Nw York: Springr-Vrlag, 23): [2] Sidn, Stvn S., A Gussing Gam and Randomid Onlin Algorithms, Procdings of th 32 nd Annual ACM Symposium on Thory of Computing, (Portland: STOC, 2):

cycle that does not cross any edges (including its own), then it has at least

cycle that does not cross any edges (including its own), then it has at least W prov th following thorm: Thorm If a K n is drawn in th plan in such a way that it has a hamiltonian cycl that dos not cross any dgs (including its own, thn it has at last n ( 4 48 π + O(n crossings Th

More information

Problem Set 6 Solutions

Problem Set 6 Solutions 6.04/18.06J Mathmatics for Computr Scinc March 15, 005 Srini Dvadas and Eric Lhman Problm St 6 Solutions Du: Monday, March 8 at 9 PM in Room 3-044 Problm 1. Sammy th Shark is a financial srvic providr

More information

The Matrix Exponential

The Matrix Exponential Th Matrix Exponntial (with xrciss) by D. Klain Vrsion 207.0.05 Corrctions and commnts ar wlcom. Th Matrix Exponntial For ach n n complx matrix A, dfin th xponntial of A to b th matrix A A k I + A + k!

More information

6.1 Integration by Parts and Present Value. Copyright Cengage Learning. All rights reserved.

6.1 Integration by Parts and Present Value. Copyright Cengage Learning. All rights reserved. 6.1 Intgration by Parts and Prsnt Valu Copyright Cngag Larning. All rights rsrvd. Warm-Up: Find f () 1. F() = ln(+1). F() = 3 3. F() =. F() = ln ( 1) 5. F() = 6. F() = - Objctivs, Day #1 Studnts will b

More information

Search sequence databases 3 10/25/2016

Search sequence databases 3 10/25/2016 Sarch squnc databass 3 10/25/2016 Etrm valu distribution Ø Suppos X is a random variabl with probability dnsity function p(, w sampl a larg numbr S of indpndnt valus of X from this distribution for an

More information

The Matrix Exponential

The Matrix Exponential Th Matrix Exponntial (with xrciss) by Dan Klain Vrsion 28928 Corrctions and commnts ar wlcom Th Matrix Exponntial For ach n n complx matrix A, dfin th xponntial of A to b th matrix () A A k I + A + k!

More information

Addition of angular momentum

Addition of angular momentum Addition of angular momntum April, 0 Oftn w nd to combin diffrnt sourcs of angular momntum to charactriz th total angular momntum of a systm, or to divid th total angular momntum into parts to valuat th

More information

u r du = ur+1 r + 1 du = ln u + C u sin u du = cos u + C cos u du = sin u + C sec u tan u du = sec u + C e u du = e u + C

u r du = ur+1 r + 1 du = ln u + C u sin u du = cos u + C cos u du = sin u + C sec u tan u du = sec u + C e u du = e u + C Tchniqus of Intgration c Donald Kridr and Dwight Lahr In this sction w ar going to introduc th first approachs to valuating an indfinit intgral whos intgrand dos not hav an immdiat antidrivativ. W bgin

More information

First derivative analysis

First derivative analysis Robrto s Nots on Dirntial Calculus Chaptr 8: Graphical analysis Sction First drivativ analysis What you nd to know alrady: How to us drivativs to idntiy th critical valus o a unction and its trm points

More information

u x v x dx u x v x v x u x dx d u x v x u x v x dx u x v x dx Integration by Parts Formula

u x v x dx u x v x v x u x dx d u x v x u x v x dx u x v x dx Integration by Parts Formula 7. Intgration by Parts Each drivativ formula givs ris to a corrsponding intgral formula, as w v sn many tims. Th drivativ product rul yilds a vry usful intgration tchniqu calld intgration by parts. Starting

More information

1 Minimum Cut Problem

1 Minimum Cut Problem CS 6 Lctur 6 Min Cut and argr s Algorithm Scribs: Png Hui How (05), Virginia Dat: May 4, 06 Minimum Cut Problm Today, w introduc th minimum cut problm. This problm has many motivations, on of which coms

More information

Answer Homework 5 PHA5127 Fall 1999 Jeff Stark

Answer Homework 5 PHA5127 Fall 1999 Jeff Stark Answr omwork 5 PA527 Fall 999 Jff Stark A patint is bing tratd with Drug X in a clinical stting. Upon admiion, an IV bolus dos of 000mg was givn which yildd an initial concntration of 5.56 µg/ml. A fw

More information

Higher order derivatives

Higher order derivatives Robrto s Nots on Diffrntial Calculus Chaptr 4: Basic diffrntiation ruls Sction 7 Highr ordr drivativs What you nd to know alrady: Basic diffrntiation ruls. What you can larn hr: How to rpat th procss of

More information

Basic Polyhedral theory

Basic Polyhedral theory Basic Polyhdral thory Th st P = { A b} is calld a polyhdron. Lmma 1. Eithr th systm A = b, b 0, 0 has a solution or thr is a vctorπ such that π A 0, πb < 0 Thr cass, if solution in top row dos not ist

More information

Where k is either given or determined from the data and c is an arbitrary constant.

Where k is either given or determined from the data and c is an arbitrary constant. Exponntial growth and dcay applications W wish to solv an quation that has a drivativ. dy ky k > dx This quation says that th rat of chang of th function is proportional to th function. Th solution is

More information

Construction of asymmetric orthogonal arrays of strength three via a replacement method

Construction of asymmetric orthogonal arrays of strength three via a replacement method isid/ms/26/2 Fbruary, 26 http://www.isid.ac.in/ statmath/indx.php?modul=prprint Construction of asymmtric orthogonal arrays of strngth thr via a rplacmnt mthod Tian-fang Zhang, Qiaoling Dng and Alok Dy

More information

EEO 401 Digital Signal Processing Prof. Mark Fowler

EEO 401 Digital Signal Processing Prof. Mark Fowler EEO 401 Digital Signal Procssing Prof. Mark Fowlr Dtails of th ot St #19 Rading Assignmnt: Sct. 7.1.2, 7.1.3, & 7.2 of Proakis & Manolakis Dfinition of th So Givn signal data points x[n] for n = 0,, -1

More information

Differential Equations

Differential Equations Prfac Hr ar m onlin nots for m diffrntial quations cours that I tach hr at Lamar Univrsit. Dspit th fact that ths ar m class nots, th should b accssibl to anon wanting to larn how to solv diffrntial quations

More information

MATH 319, WEEK 15: The Fundamental Matrix, Non-Homogeneous Systems of Differential Equations

MATH 319, WEEK 15: The Fundamental Matrix, Non-Homogeneous Systems of Differential Equations MATH 39, WEEK 5: Th Fundamntal Matrix, Non-Homognous Systms of Diffrntial Equations Fundamntal Matrics Considr th problm of dtrmining th particular solution for an nsmbl of initial conditions For instanc,

More information

Einstein Equations for Tetrad Fields

Einstein Equations for Tetrad Fields Apiron, Vol 13, No, Octobr 006 6 Einstin Equations for Ttrad Filds Ali Rıza ŞAHİN, R T L Istanbul (Turky) Evry mtric tnsor can b xprssd by th innr product of ttrad filds W prov that Einstin quations for

More information

EXST Regression Techniques Page 1

EXST Regression Techniques Page 1 EXST704 - Rgrssion Tchniqus Pag 1 Masurmnt rrors in X W hav assumd that all variation is in Y. Masurmnt rror in this variabl will not ffct th rsults, as long as thy ar uncorrlatd and unbiasd, sinc thy

More information

CPSC 665 : An Algorithmist s Toolkit Lecture 4 : 21 Jan Linear Programming

CPSC 665 : An Algorithmist s Toolkit Lecture 4 : 21 Jan Linear Programming CPSC 665 : An Algorithmist s Toolkit Lctur 4 : 21 Jan 2015 Lcturr: Sushant Sachdva Linar Programming Scrib: Rasmus Kyng 1. Introduction An optimization problm rquirs us to find th minimum or maximum) of

More information

Homotopy perturbation technique

Homotopy perturbation technique Comput. Mthods Appl. Mch. Engrg. 178 (1999) 257±262 www.lsvir.com/locat/cma Homotopy prturbation tchniqu Ji-Huan H 1 Shanghai Univrsity, Shanghai Institut of Applid Mathmatics and Mchanics, Shanghai 272,

More information

A Propagating Wave Packet Group Velocity Dispersion

A Propagating Wave Packet Group Velocity Dispersion Lctur 8 Phys 375 A Propagating Wav Packt Group Vlocity Disprsion Ovrviw and Motivation: In th last lctur w lookd at a localizd solution t) to th 1D fr-particl Schrödingr quation (SE) that corrsponds to

More information

ECE602 Exam 1 April 5, You must show ALL of your work for full credit.

ECE602 Exam 1 April 5, You must show ALL of your work for full credit. ECE62 Exam April 5, 27 Nam: Solution Scor: / This xam is closd-book. You must show ALL of your work for full crdit. Plas rad th qustions carfully. Plas chck your answrs carfully. Calculators may NOT b

More information

Calculus concepts derivatives

Calculus concepts derivatives All rasonabl fforts hav bn mad to mak sur th nots ar accurat. Th author cannot b hld rsponsibl for any damags arising from th us of ths nots in any fashion. Calculus concpts drivativs Concpts involving

More information

SECTION where P (cos θ, sin θ) and Q(cos θ, sin θ) are polynomials in cos θ and sin θ, provided Q is never equal to zero.

SECTION where P (cos θ, sin θ) and Q(cos θ, sin θ) are polynomials in cos θ and sin θ, provided Q is never equal to zero. SETION 6. 57 6. Evaluation of Dfinit Intgrals Exampl 6.6 W hav usd dfinit intgrals to valuat contour intgrals. It may com as a surpris to larn that contour intgrals and rsidus can b usd to valuat crtain

More information

Computing and Communications -- Network Coding

Computing and Communications -- Network Coding 89 90 98 00 Computing and Communications -- Ntwork Coding Dr. Zhiyong Chn Institut of Wirlss Communications Tchnology Shanghai Jiao Tong Univrsity China Lctur 5- Nov. 05 0 Classical Information Thory Sourc

More information

Brief Introduction to Statistical Mechanics

Brief Introduction to Statistical Mechanics Brif Introduction to Statistical Mchanics. Purpos: Ths nots ar intndd to provid a vry quick introduction to Statistical Mchanics. Th fild is of cours far mor vast than could b containd in ths fw pags.

More information

Homework #3. 1 x. dx. It therefore follows that a sum of the

Homework #3. 1 x. dx. It therefore follows that a sum of the Danil Cannon CS 62 / Luan March 5, 2009 Homwork # 1. Th natural logarithm is dfind by ln n = n 1 dx. It thrfor follows that a sum of th 1 x sam addnd ovr th sam intrval should b both asymptotically uppr-

More information

General Notes About 2007 AP Physics Scoring Guidelines

General Notes About 2007 AP Physics Scoring Guidelines AP PHYSICS C: ELECTRICITY AND MAGNETISM 2007 SCORING GUIDELINES Gnral Nots About 2007 AP Physics Scoring Guidlins 1. Th solutions contain th most common mthod of solving th fr-rspons qustions and th allocation

More information

Introduction to Arithmetic Geometry Fall 2013 Lecture #20 11/14/2013

Introduction to Arithmetic Geometry Fall 2013 Lecture #20 11/14/2013 18.782 Introduction to Arithmtic Gomtry Fall 2013 Lctur #20 11/14/2013 20.1 Dgr thorm for morphisms of curvs Lt us rstat th thorm givn at th nd of th last lctur, which w will now prov. Thorm 20.1. Lt φ:

More information

ME 321 Kinematics and Dynamics of Machines S. Lambert Winter 2002

ME 321 Kinematics and Dynamics of Machines S. Lambert Winter 2002 3.4 Forc Analysis of Linkas An undrstandin of forc analysis of linkas is rquird to: Dtrmin th raction forcs on pins, tc. as a consqunc of a spcifid motion (don t undrstimat th sinificanc of dynamic or

More information

Abstract Interpretation: concrete and abstract semantics

Abstract Interpretation: concrete and abstract semantics Abstract Intrprtation: concrt and abstract smantics Concrt smantics W considr a vry tiny languag that manags arithmtic oprations on intgrs valus. Th (concrt) smantics of th languags cab b dfind by th funzcion

More information

Rational Approximation for the one-dimensional Bratu Equation

Rational Approximation for the one-dimensional Bratu Equation Intrnational Journal of Enginring & Tchnology IJET-IJES Vol:3 o:05 5 Rational Approximation for th on-dimnsional Bratu Equation Moustafa Aly Soliman Chmical Enginring Dpartmnt, Th British Univrsity in

More information

The Transmission Line Wave Equation

The Transmission Line Wave Equation 1//5 Th Transmission Lin Wav Equation.doc 1/6 Th Transmission Lin Wav Equation Q: So, what functions I (z) and V (z) do satisfy both tlgraphr s quations?? A: To mak this asir, w will combin th tlgraphr

More information

RENT, LEASE OR BUY: RANDOMIZED ALGORITHMS FOR MULTISLOPE SKI RENTAL

RENT, LEASE OR BUY: RANDOMIZED ALGORITHMS FOR MULTISLOPE SKI RENTAL RENT, LEASE OR BUY: RANDOMIZED ALGORITHMS FOR MULTISLOPE SKI RENTAL ZVI LOTKER 1, BOAZ PATT-SHAMIR 2, AND DROR RAWITZ 3 1 Dpt. of Communication Systms Enginring, Bn Gurion Univrsity, Br Shva 84105, Isral.

More information

4. Money cannot be neutral in the short-run the neutrality of money is exclusively a medium run phenomenon.

4. Money cannot be neutral in the short-run the neutrality of money is exclusively a medium run phenomenon. PART I TRUE/FALSE/UNCERTAIN (5 points ach) 1. Lik xpansionary montary policy, xpansionary fiscal policy rturns output in th mdium run to its natural lvl, and incrass prics. Thrfor, fiscal policy is also

More information

COMPUTER GENERATED HOLOGRAMS Optical Sciences 627 W.J. Dallas (Monday, April 04, 2005, 8:35 AM) PART I: CHAPTER TWO COMB MATH.

COMPUTER GENERATED HOLOGRAMS Optical Sciences 627 W.J. Dallas (Monday, April 04, 2005, 8:35 AM) PART I: CHAPTER TWO COMB MATH. C:\Dallas\0_Courss\03A_OpSci_67\0 Cgh_Book\0_athmaticalPrliminaris\0_0 Combath.doc of 8 COPUTER GENERATED HOLOGRAS Optical Scincs 67 W.J. Dallas (onday, April 04, 005, 8:35 A) PART I: CHAPTER TWO COB ATH

More information

ph People Grade Level: basic Duration: minutes Setting: classroom or field site

ph People Grade Level: basic Duration: minutes Setting: classroom or field site ph Popl Adaptd from: Whr Ar th Frogs? in Projct WET: Curriculum & Activity Guid. Bozman: Th Watrcours and th Council for Environmntal Education, 1995. ph Grad Lvl: basic Duration: 10 15 minuts Stting:

More information

CS 361 Meeting 12 10/3/18

CS 361 Meeting 12 10/3/18 CS 36 Mting 2 /3/8 Announcmnts. Homwork 4 is du Friday. If Friday is Mountain Day, homwork should b turnd in at my offic or th dpartmnt offic bfor 4. 2. Homwork 5 will b availabl ovr th wknd. 3. Our midtrm

More information

3 Finite Element Parametric Geometry

3 Finite Element Parametric Geometry 3 Finit Elmnt Paramtric Gomtry 3. Introduction Th intgral of a matrix is th matrix containing th intgral of ach and vry on of its original componnts. Practical finit lmnt analysis rquirs intgrating matrics,

More information

GEOMETRICAL PHENOMENA IN THE PHYSICS OF SUBATOMIC PARTICLES. Eduard N. Klenov* Rostov-on-Don, Russia

GEOMETRICAL PHENOMENA IN THE PHYSICS OF SUBATOMIC PARTICLES. Eduard N. Klenov* Rostov-on-Don, Russia GEOMETRICAL PHENOMENA IN THE PHYSICS OF SUBATOMIC PARTICLES Eduard N. Klnov* Rostov-on-Don, Russia Th articl considrs phnomnal gomtry figurs bing th carrirs of valu spctra for th pairs of th rmaining additiv

More information

Elements of Statistical Thermodynamics

Elements of Statistical Thermodynamics 24 Elmnts of Statistical Thrmodynamics Statistical thrmodynamics is a branch of knowldg that has its own postulats and tchniqus. W do not attmpt to giv hr vn an introduction to th fild. In this chaptr,

More information

Mor Tutorial at www.dumblittldoctor.com Work th problms without a calculator, but us a calculator to chck rsults. And try diffrntiating your answrs in part III as a usful chck. I. Applications of Intgration

More information

On spanning trees and cycles of multicolored point sets with few intersections

On spanning trees and cycles of multicolored point sets with few intersections On spanning trs and cycls of multicolord point sts with fw intrsctions M. Kano, C. Mrino, and J. Urrutia April, 00 Abstract Lt P 1,..., P k b a collction of disjoint point sts in R in gnral position. W

More information

(1) Then we could wave our hands over this and it would become:

(1) Then we could wave our hands over this and it would become: MAT* K285 Spring 28 Anthony Bnoit 4/17/28 Wk 12: Laplac Tranform Rading: Kohlr & Johnon, Chaptr 5 to p. 35 HW: 5.1: 3, 7, 1*, 19 5.2: 1, 5*, 13*, 19, 45* 5.3: 1, 11*, 19 * Pla writ-up th problm natly and

More information

Application of Vague Soft Sets in students evaluation

Application of Vague Soft Sets in students evaluation Availabl onlin at www.plagiarsarchlibrary.com Advancs in Applid Scinc Rsarch, 0, (6):48-43 ISSN: 0976-860 CODEN (USA): AASRFC Application of Vagu Soft Sts in studnts valuation B. Chtia*and P. K. Das Dpartmnt

More information

Quasi-Classical States of the Simple Harmonic Oscillator

Quasi-Classical States of the Simple Harmonic Oscillator Quasi-Classical Stats of th Simpl Harmonic Oscillator (Draft Vrsion) Introduction: Why Look for Eignstats of th Annihilation Oprator? Excpt for th ground stat, th corrspondnc btwn th quantum nrgy ignstats

More information

NEW APPLICATIONS OF THE ABEL-LIOUVILLE FORMULA

NEW APPLICATIONS OF THE ABEL-LIOUVILLE FORMULA NE APPLICATIONS OF THE ABEL-LIOUVILLE FORMULA Mirca I CÎRNU Ph Dp o Mathmatics III Faculty o Applid Scincs Univrsity Polithnica o Bucharst Cirnumirca @yahoocom Abstract In a rcnt papr [] 5 th indinit intgrals

More information

4.2 Design of Sections for Flexure

4.2 Design of Sections for Flexure 4. Dsign of Sctions for Flxur This sction covrs th following topics Prliminary Dsign Final Dsign for Typ 1 Mmbrs Spcial Cas Calculation of Momnt Dmand For simply supportd prstrssd bams, th maximum momnt

More information

COUNTING TAMELY RAMIFIED EXTENSIONS OF LOCAL FIELDS UP TO ISOMORPHISM

COUNTING TAMELY RAMIFIED EXTENSIONS OF LOCAL FIELDS UP TO ISOMORPHISM COUNTING TAMELY RAMIFIED EXTENSIONS OF LOCAL FIELDS UP TO ISOMORPHISM Jim Brown Dpartmnt of Mathmatical Scincs, Clmson Univrsity, Clmson, SC 9634, USA jimlb@g.clmson.du Robrt Cass Dpartmnt of Mathmatics,

More information

1973 AP Calculus AB: Section I

1973 AP Calculus AB: Section I 97 AP Calculus AB: Sction I 9 Minuts No Calculator Not: In this amination, ln dnots th natural logarithm of (that is, logarithm to th bas ).. ( ) d= + C 6 + C + C + C + C. If f ( ) = + + + and ( ), g=

More information

Gradebook & Midterm & Office Hours

Gradebook & Midterm & Office Hours Your commnts So what do w do whn on of th r's is 0 in th quation GmM(1/r-1/r)? Do w nd to driv all of ths potntial nrgy formulas? I don't undrstand springs This was th first lctur I actually larnd somthing

More information

Derangements and Applications

Derangements and Applications 2 3 47 6 23 Journal of Intgr Squncs, Vol. 6 (2003), Articl 03..2 Drangmnts and Applications Mhdi Hassani Dpartmnt of Mathmatics Institut for Advancd Studis in Basic Scincs Zanjan, Iran mhassani@iasbs.ac.ir

More information

Section 11.6: Directional Derivatives and the Gradient Vector

Section 11.6: Directional Derivatives and the Gradient Vector Sction.6: Dirctional Drivativs and th Gradint Vctor Practic HW rom Stwart Ttbook not to hand in p. 778 # -4 p. 799 # 4-5 7 9 9 35 37 odd Th Dirctional Drivativ Rcall that a b Slop o th tangnt lin to th

More information

Section 6.1. Question: 2. Let H be a subgroup of a group G. Then H operates on G by left multiplication. Describe the orbits for this operation.

Section 6.1. Question: 2. Let H be a subgroup of a group G. Then H operates on G by left multiplication. Describe the orbits for this operation. MAT 444 H Barclo Spring 004 Homwork 6 Solutions Sction 6 Lt H b a subgroup of a group G Thn H oprats on G by lft multiplication Dscrib th orbits for this opration Th orbits of G ar th right costs of H

More information

Limiting value of higher Mahler measure

Limiting value of higher Mahler measure Limiting valu of highr Mahlr masur Arunabha Biswas a, Chris Monico a, a Dpartmnt of Mathmatics & Statistics, Txas Tch Univrsity, Lubbock, TX 7949, USA Abstract W considr th k-highr Mahlr masur m k P )

More information

Difference -Analytical Method of The One-Dimensional Convection-Diffusion Equation

Difference -Analytical Method of The One-Dimensional Convection-Diffusion Equation Diffrnc -Analytical Mthod of Th On-Dimnsional Convction-Diffusion Equation Dalabav Umurdin Dpartmnt mathmatic modlling, Univrsity of orld Economy and Diplomacy, Uzbistan Abstract. An analytical diffrncing

More information

Network Congestion Games

Network Congestion Games Ntwork Congstion Gams Assistant Profssor Tas A&M Univrsity Collg Station, TX TX Dallas Collg Station Austin Houston Bst rout dpnds on othrs Ntwork Congstion Gams Travl tim incrass with congstion Highway

More information

Addition of angular momentum

Addition of angular momentum Addition of angular momntum April, 07 Oftn w nd to combin diffrnt sourcs of angular momntum to charactriz th total angular momntum of a systm, or to divid th total angular momntum into parts to valuat

More information

Finding low cost TSP and 2-matching solutions using certain half integer subtour vertices

Finding low cost TSP and 2-matching solutions using certain half integer subtour vertices Finding low cost TSP and 2-matching solutions using crtain half intgr subtour vrtics Sylvia Boyd and Robrt Carr Novmbr 996 Introduction Givn th complt graph K n = (V, E) on n nods with dg costs c R E,

More information

Principles of Humidity Dalton s law

Principles of Humidity Dalton s law Principls of Humidity Dalton s law Air is a mixtur of diffrnt gass. Th main gas componnts ar: Gas componnt volum [%] wight [%] Nitrogn N 2 78,03 75,47 Oxygn O 2 20,99 23,20 Argon Ar 0,93 1,28 Carbon dioxid

More information

Chapter 6 Folding. Folding

Chapter 6 Folding. Folding Chaptr 6 Folding Wintr 1 Mokhtar Abolaz Folding Th folding transformation is usd to systmatically dtrmin th control circuits in DSP architctur whr multipl algorithm oprations ar tim-multiplxd to a singl

More information

That is, we start with a general matrix: And end with a simpler matrix:

That is, we start with a general matrix: And end with a simpler matrix: DIAGON ALIZATION OF THE STR ESS TEN SOR INTRO DUCTIO N By th us of Cauchy s thorm w ar abl to rduc th numbr of strss componnts in th strss tnsor to only nin valus. An additional simplification of th strss

More information

2.3 Matrix Formulation

2.3 Matrix Formulation 23 Matrix Formulation 43 A mor complicatd xampl ariss for a nonlinar systm of diffrntial quations Considr th following xampl Exampl 23 x y + x( x 2 y 2 y x + y( x 2 y 2 (233 Transforming to polar coordinats,

More information

(Upside-Down o Direct Rotation) β - Numbers

(Upside-Down o Direct Rotation) β - Numbers Amrican Journal of Mathmatics and Statistics 014, 4(): 58-64 DOI: 10593/jajms0140400 (Upsid-Down o Dirct Rotation) β - Numbrs Ammar Sddiq Mahmood 1, Shukriyah Sabir Ali,* 1 Dpartmnt of Mathmatics, Collg

More information

Hydrogen Atom and One Electron Ions

Hydrogen Atom and One Electron Ions Hydrogn Atom and On Elctron Ions Th Schrödingr quation for this two-body problm starts out th sam as th gnral two-body Schrödingr quation. First w sparat out th motion of th cntr of mass. Th intrnal potntial

More information

Math 34A. Final Review

Math 34A. Final Review Math A Final Rviw 1) Us th graph of y10 to find approimat valus: a) 50 0. b) y (0.65) solution for part a) first writ an quation: 50 0. now tak th logarithm of both sids: log() log(50 0. ) pand th right

More information

The van der Waals interaction 1 D. E. Soper 2 University of Oregon 20 April 2012

The van der Waals interaction 1 D. E. Soper 2 University of Oregon 20 April 2012 Th van dr Waals intraction D. E. Sopr 2 Univrsity of Orgon 20 pril 202 Th van dr Waals intraction is discussd in Chaptr 5 of J. J. Sakurai, Modrn Quantum Mchanics. Hr I tak a look at it in a littl mor

More information

BINOMIAL COEFFICIENTS INVOLVING INFINITE POWERS OF PRIMES

BINOMIAL COEFFICIENTS INVOLVING INFINITE POWERS OF PRIMES BINOMIAL COEFFICIENTS INVOLVING INFINITE POWERS OF PRIMES DONALD M. DAVIS Abstract. If p is a prim (implicit in notation and n a positiv intgr, lt ν(n dnot th xponnt of p in n, and U(n n/p ν(n, th unit

More information

Partial Derivatives: Suppose that z = f(x, y) is a function of two variables.

Partial Derivatives: Suppose that z = f(x, y) is a function of two variables. Chaptr Functions o Two Variabls Applid Calculus 61 Sction : Calculus o Functions o Two Variabls Now that ou hav som amiliarit with unctions o two variabls it s tim to start appling calculus to hlp us solv

More information

Cramér-Rao Inequality: Let f(x; θ) be a probability density function with continuous parameter

Cramér-Rao Inequality: Let f(x; θ) be a probability density function with continuous parameter WHEN THE CRAMÉR-RAO INEQUALITY PROVIDES NO INFORMATION STEVEN J. MILLER Abstract. W invstigat a on-paramtr family of probability dnsitis (rlatd to th Parto distribution, which dscribs many natural phnomna)

More information

u 3 = u 3 (x 1, x 2, x 3 )

u 3 = u 3 (x 1, x 2, x 3 ) Lctur 23: Curvilinar Coordinats (RHB 8.0 It is oftn convnint to work with variabls othr than th Cartsian coordinats x i ( = x, y, z. For xampl in Lctur 5 w mt sphrical polar and cylindrical polar coordinats.

More information

Random Access Techniques: ALOHA (cont.)

Random Access Techniques: ALOHA (cont.) Random Accss Tchniqus: ALOHA (cont.) 1 Exampl [ Aloha avoiding collision ] A pur ALOHA ntwork transmits a 200-bit fram on a shard channl Of 200 kbps at tim. What is th rquirmnt to mak this fram collision

More information

Propositional Logic. Combinatorial Problem Solving (CPS) Albert Oliveras Enric Rodríguez-Carbonell. May 17, 2018

Propositional Logic. Combinatorial Problem Solving (CPS) Albert Oliveras Enric Rodríguez-Carbonell. May 17, 2018 Propositional Logic Combinatorial Problm Solving (CPS) Albrt Olivras Enric Rodríguz-Carbonll May 17, 2018 Ovrviw of th sssion Dfinition of Propositional Logic Gnral Concpts in Logic Rduction to SAT CNFs

More information

Solution: APPM 1360 Final (150 pts) Spring (60 pts total) The following parts are not related, justify your answers:

Solution: APPM 1360 Final (150 pts) Spring (60 pts total) The following parts are not related, justify your answers: APPM 6 Final 5 pts) Spring 4. 6 pts total) Th following parts ar not rlatd, justify your answrs: a) Considr th curv rprsntd by th paramtric quations, t and y t + for t. i) 6 pts) Writ down th corrsponding

More information

Supplementary Materials

Supplementary Materials 6 Supplmntary Matrials APPENDIX A PHYSICAL INTERPRETATION OF FUEL-RATE-SPEED FUNCTION A truck running on a road with grad/slop θ positiv if moving up and ngativ if moving down facs thr rsistancs: arodynamic

More information

Strongly Connected Components

Strongly Connected Components Strongly Connctd Componnts Lt G = (V, E) b a dirctd graph Writ if thr is a path from to in G Writ if and is an quivalnc rlation: implis and implis s quivalnc classs ar calld th strongly connctd componnts

More information

1.2 Faraday s law A changing magnetic field induces an electric field. Their relation is given by:

1.2 Faraday s law A changing magnetic field induces an electric field. Their relation is given by: Elctromagntic Induction. Lorntz forc on moving charg Point charg moving at vlocity v, F qv B () For a sction of lctric currnt I in a thin wir dl is Idl, th forc is df Idl B () Elctromotiv forc f s any

More information

Chapter 8: Electron Configurations and Periodicity

Chapter 8: Electron Configurations and Periodicity Elctron Spin & th Pauli Exclusion Principl Chaptr 8: Elctron Configurations and Priodicity 3 quantum numbrs (n, l, ml) dfin th nrgy, siz, shap, and spatial orintation of ach atomic orbital. To xplain how

More information

1997 AP Calculus AB: Section I, Part A

1997 AP Calculus AB: Section I, Part A 997 AP Calculus AB: Sction I, Part A 50 Minuts No Calculator Not: Unlss othrwis spcifid, th domain of a function f is assumd to b th st of all ral numbrs for which f () is a ral numbr.. (4 6 ) d= 4 6 6

More information

SCHUR S THEOREM REU SUMMER 2005

SCHUR S THEOREM REU SUMMER 2005 SCHUR S THEOREM REU SUMMER 2005 1. Combinatorial aroach Prhas th first rsult in th subjct blongs to I. Schur and dats back to 1916. On of his motivation was to study th local vrsion of th famous quation

More information

Week 3: Connected Subgraphs

Week 3: Connected Subgraphs Wk 3: Connctd Subgraphs Sptmbr 19, 2016 1 Connctd Graphs Path, Distanc: A path from a vrtx x to a vrtx y in a graph G is rfrrd to an xy-path. Lt X, Y V (G). An (X, Y )-path is an xy-path with x X and y

More information

Some remarks on Kurepa s left factorial

Some remarks on Kurepa s left factorial Som rmarks on Kurpa s lft factorial arxiv:math/0410477v1 [math.nt] 21 Oct 2004 Brnd C. Kllnr Abstract W stablish a connction btwn th subfactorial function S(n) and th lft factorial function of Kurpa K(n).

More information

BINOMIAL COEFFICIENTS INVOLVING INFINITE POWERS OF PRIMES. 1. Statement of results

BINOMIAL COEFFICIENTS INVOLVING INFINITE POWERS OF PRIMES. 1. Statement of results BINOMIAL COEFFICIENTS INVOLVING INFINITE POWERS OF PRIMES DONALD M. DAVIS Abstract. If p is a prim and n a positiv intgr, lt ν p (n dnot th xponnt of p in n, and u p (n n/p νp(n th unit part of n. If α

More information

Recall that by Theorems 10.3 and 10.4 together provide us the estimate o(n2 ), S(q) q 9, q=1

Recall that by Theorems 10.3 and 10.4 together provide us the estimate o(n2 ), S(q) q 9, q=1 Chaptr 11 Th singular sris Rcall that by Thorms 10 and 104 togthr provid us th stimat 9 4 n 2 111 Rn = SnΓ 2 + on2, whr th singular sris Sn was dfind in Chaptr 10 as Sn = q=1 Sq q 9, with Sq = 1 a q gcda,q=1

More information

Integration by Parts

Integration by Parts Intgration by Parts Intgration by parts is a tchniqu primarily for valuating intgrals whos intgrand is th product of two functions whr substitution dosn t work. For ampl, sin d or d. Th rul is: u ( ) v'(

More information

Differentiation of Exponential Functions

Differentiation of Exponential Functions Calculus Modul C Diffrntiation of Eponntial Functions Copyright This publication Th Northrn Albrta Institut of Tchnology 007. All Rights Rsrvd. LAST REVISED March, 009 Introduction to Diffrntiation of

More information

dr Bartłomiej Rokicki Chair of Macroeconomics and International Trade Theory Faculty of Economic Sciences, University of Warsaw

dr Bartłomiej Rokicki Chair of Macroeconomics and International Trade Theory Faculty of Economic Sciences, University of Warsaw dr Bartłomij Rokicki Chair of Macroconomics and Intrnational Trad Thory Faculty of Economic Scincs, Univrsity of Warsaw dr Bartłomij Rokicki Opn Economy Macroconomics Small opn conomy. Main assumptions

More information

5.80 Small-Molecule Spectroscopy and Dynamics

5.80 Small-Molecule Spectroscopy and Dynamics MIT OpnCoursWar http://ocw.mit.du 5.80 Small-Molcul Spctroscopy and Dynamics Fall 008 For information about citing ths matrials or our Trms of Us, visit: http://ocw.mit.du/trms. Lctur # 3 Supplmnt Contnts

More information

Rent, Lease or Buy: Randomized Algorithms for Multislope Ski Rental

Rent, Lease or Buy: Randomized Algorithms for Multislope Ski Rental Rnt, Las or Buy: Randomizd Algorithms for Multislop Ski Rntal Zvi Lotkr, Boaz Patt-Shamir, Dror Rawitz To cit this vrsion: Zvi Lotkr, Boaz Patt-Shamir, Dror Rawitz. Rnt, Las or Buy: Randomizd Algorithms

More information

First order differential equation Linear equation; Method of integrating factors

First order differential equation Linear equation; Method of integrating factors First orr iffrntial quation Linar quation; Mtho of intgrating factors Exampl 1: Rwrit th lft han si as th rivativ of th prouct of y an som function by prouct rul irctly. Solving th first orr iffrntial

More information

Searching Linked Lists. Perfect Skip List. Building a Skip List. Skip List Analysis (1) Assume the list is sorted, but is stored in a linked list.

Searching Linked Lists. Perfect Skip List. Building a Skip List. Skip List Analysis (1) Assume the list is sorted, but is stored in a linked list. 3 3 4 8 6 3 3 4 8 6 3 3 4 8 6 () (d) 3 Sarching Linkd Lists Sarching Linkd Lists Sarching Linkd Lists ssum th list is sortd, but is stord in a linkd list. an w us binary sarch? omparisons? Work? What if

More information

EECE 301 Signals & Systems Prof. Mark Fowler

EECE 301 Signals & Systems Prof. Mark Fowler EECE 301 Signals & Systms Prof. Mark Fowlr ot St #21 D-T Signals: Rlation btwn DFT, DTFT, & CTFT 1/16 W can us th DFT to implmnt numrical FT procssing This nabls us to numrically analyz a signal to find

More information

Fourier Transforms and the Wave Equation. Key Mathematics: More Fourier transform theory, especially as applied to solving the wave equation.

Fourier Transforms and the Wave Equation. Key Mathematics: More Fourier transform theory, especially as applied to solving the wave equation. Lur 7 Fourir Transforms and th Wav Euation Ovrviw and Motivation: W first discuss a fw faturs of th Fourir transform (FT), and thn w solv th initial-valu problm for th wav uation using th Fourir transform

More information

MCB137: Physical Biology of the Cell Spring 2017 Homework 6: Ligand binding and the MWC model of allostery (Due 3/23/17)

MCB137: Physical Biology of the Cell Spring 2017 Homework 6: Ligand binding and the MWC model of allostery (Due 3/23/17) MCB37: Physical Biology of th Cll Spring 207 Homwork 6: Ligand binding and th MWC modl of allostry (Du 3/23/7) Hrnan G. Garcia March 2, 207 Simpl rprssion In class, w drivd a mathmatical modl of how simpl

More information

Equidistribution and Weyl s criterion

Equidistribution and Weyl s criterion Euidistribution and Wyl s critrion by Brad Hannigan-Daly W introduc th ida of a sunc of numbrs bing uidistributd (mod ), and w stat and prov a thorm of Hrmann Wyl which charactrizs such suncs. W also discuss

More information

1997 AP Calculus AB: Section I, Part A

1997 AP Calculus AB: Section I, Part A 997 AP Calculus AB: Sction I, Part A 50 Minuts No Calculator Not: Unlss othrwis spcifid, th domain of a function f is assumd to b th st of all ral numbrs x for which f (x) is a ral numbr.. (4x 6 x) dx=

More information

INTEGRATION BY PARTS

INTEGRATION BY PARTS Mathmatics Rvision Guids Intgration by Parts Pag of 7 MK HOME TUITION Mathmatics Rvision Guids Lvl: AS / A Lvl AQA : C Edcl: C OCR: C OCR MEI: C INTEGRATION BY PARTS Vrsion : Dat: --5 Eampls - 6 ar copyrightd

More information