Size: px
Start display at page:

Download ""

Transcription

1 Improved dynamic programs for some batcing problems involving te maximum lateness criterion A P M Wagelmans Econometric Institute Erasmus University Rotterdam PO Box 1738, 3000 DR Rotterdam Te Neterlands A E Gerodimos Centre for Quantitative Finance Imperial College Exibition Road London, SW7 2B United Kingdom April 27, 1999 Abstract We study four sceduling problems involving te maximum lateness criterion and an element of batcing. For all te problems tat we examine, algoritms appear in te literature tat consist of a sorting step to determine an optimal job sequence, followed by a dynamic programming step tat determines te optimal batces. In eac case, te dynamic program is based on a backward recursion of wic a straigtforward implementation requires O(n 2 ) time, were n is te number of jobs. We present improved implementations of tese dynamic programs tat are based on monotonicity properties of te objective expressed as a function of te total processing time of te rst batc. Tese properties and te use of ecient data structures enable optimal solutions to be found for eac of te four problems in O(n log n) time; in two cases, te batcing step is actually performed in linear time and te overall complexity is determined by te sorting step. 1

2 1 Introduction Te early 1990's saw te emergence of powerful tecniques tat reduced te time requirement of dynamic programming algoritms for te classic economic lot sizing (ELS) problem [8, 14, 1]. It was subsequently realized tat certain sceduling problems involving te sum of completion times objective and an element of batcing exibited structural properties tat made tem amenable to more ecient dynamic programming solutions. In some cases [7, 3], te improved scemes were problem-specic; in oter cases [6, 10], te dynamic programming recursion could be written in a form tat allowed te application of te geometric tecniques of Van Hoesel et al. [13], wic are a generalization of te tecnique used in [14]. Te typical complexity improvement was from O(n 2 )too(n log n), were n is te number of jobs. A question tat arises naturally is weter similar improvements can be acieved in solving te maximum lateness counterparts of tese batcing problems since, in a standard implementation, te respective dynamic programs ave also quadratic time requirements. Tis paper provides an armative answer to tis question. We study four suc batcing problems and provide implementations of dynamic programming wit a time requirement tat is eiter linear or O(n log n). Since te batcing problems are solved after an initial sorting step, our results imply O(n log n) algoritms for te four maximum lateness problems. Te remainder of tis paper is organized as follows. In Section 2 we sketc our approac wit particular focus on a subproblem tat we encounter frequently wen solving te four batcing problems. Subsequently, we list te problems in order of relative complexity, bot in terms of te improved running time and te diculty of obtaining tis improvement. Specically, Section 3 deals wit te problem of batcing jobs of a single type under batc availability. A problem in wic jobs are processed by a batcing macine is te subject of Section 4. In Section 5 we give an improved algoritm for batcing customized two-operation jobs on a single macine under batc availability and we indicate ow a similar approac can be adopted in te case of item availability. Finally, some concluding remarks are given in Section 6. 2 Preliminaries In general, solving sceduling problems wit a batcing element involves taking te appropriate batcing and sequencing decisions. For te problems 2

3 tat we examine in tis paper, tese two aspects can be decoupled. In fact, for tree of our problems tere is an optimal scedule in wic jobs complete according to te earliest due date (EDD) rule, wereas for te problem studied in Section 4 te sortest processing time (SPT) rule is optimal. In any case, te sorting step imposes a lower bound of O(n log n)on te overall complexity ofany algoritm. For two of te problems examined ere, improving te eciency of te dynamic programming step results in te sorting step being te overall bottleneck. Altoug it is dicult to provide a description of a procedure tat would be general enoug to be applied to all te problems tackled in tis paper, we now sketc some common elements of our approac; te implementation details and some special data structures deployed are covered in te subsequent sections. Our starting point is always a backward recursion dynamic program wit batc insertion [11]: te optimal scedule is built by inserting entire batces of jobs (or operations) at te start of previously obtained scedules. Te recursions are tus of te general form: G k = min f maxfp k;l + G l ;L k;l gg; (1) k<ln+1 were G k is te minimum lateness of scedules including jobs k; k+1;:::;n, wereas P k;l and L k;l denote te total processing time and overall lateness of te inserted batc, wic consists of te jobs k; k +1;:::;l, 1. In oter words, l is te index of te rst job in te second batc. Our rst step is to observe tat te index set fk +1;:::;n +1g can be divided into two mutually exclusive index sets I 1 and k I2 k so tat te maximum in (1) is given by eiter te rst or te second term, respectively. In view of tat, (1) can be re-written as G k = min f minfp k;l + G l g; min L k;l gg; (2) l2i k 1 l2i k 2 For reasons tat will become clearer in te subsequent sections, te solution to te second minimization problem in (2) is obtained by retrieving te minimal index l from I 2 k. Tis leaves us wit te following tasks: a) maintain/update te index sets I 1 k and I2 k eciently, b) solve te rst minimization problem and, were applicable, a second optimization problem tat arises wen calculating L k;l. Wit respect to te rst task, observe tat I 1 and k I2 k are not necessarily contiguous. In fact, as we sow in te subsequent sections, te satisfaction 3

4 of tis additional condition by some problems leads to linear-time implementations; were tis is not te case, updating tese index sets is `costly' and te complexity of te dynamic program becomes O(n log n). As for te second task, bot te rst minimization problem and te non-trivial variants of te second optimization problem possess a key property tat enables a solution to be found in time wic is overall linear. Specically, te idea is to transform all suc problems into a problem of te following type: Problem (P) Determine te minima m k, k =1; 2;:::;n, dened as m k = min f l k<luk were u k 2fk; k +2;:::;ng for all k =1; 2;:::;n (m k = 1 if u k = k) and te following conditions old: a. u k u k+1 for all k =1; 2;:::;n, 1 b. u n = n c. u k is known once m k+1 is known, k =1; 2;:::;n, 1 d. f k is known once m k is known, k =1; 2;:::;n Conditions (c) and (d) suggest tat te values m k can only be calculated in order of decreasing index k. A straigtforward way to solve problem (P) requires O(n 2 ) time. We sow, owever, tat a linear time bound is possible. Consider, for an arbitrary k 2 f1; 2 :::;ng wit u k > k, te values f l ; l = k +1;k+2;:::;u k. Let t(1);t(2);:::;t(r) be te unique subsequence of k +1;k+2;:::;u k wic as te following properties: 1. t(1) = k +1, 2. t(i +1) is te smallest index in ft(i) +1;t(i) +2;:::;u k g suc tat f t(i+1) <f t(i), i =1;:::;r, 1. Clearly, tis subsequence as te properties t(1) < t(2) < ::: < t(r) and f t(1) > f t(2) > ::: > f t(r). Moreover, f t(r) = m k. Hence, given te subsequence, te desired minimum is immediately available. We keep track of te subsequence by storing its elements in decreasing order in a list (i.e, f k+1 is te element at te top). Tis particular data structure as te property tat elements at te bottom can only be deleted, wile elements at te top can be bot deleted and added. Hence, it could 4

5 be viewed as a combination of a stack and a queue, and it can easily be implemented so tat eac deletion and eac addition requires constant time (see [2]). To see wy tis data structure is convenient, rst observe te following: if for a given k 2, a value l 2 fk +1;k +2;:::;u k g is not selected in te subsequence, ten l will not be selected for k, 1. Tis follows from te fact tat tere exists some value in te subsequence, say t(i), suc tat k +1 t(i) < l and f t(i) < f l. Now if l 2 fk; k +1;:::;u k,1 g, ten also t(i) 2 fk; k +1;:::;u k,1 g and tis implies tat l sould still be excluded from te subsequence. Repetition of tis argument leads to an element never being considered for inclusion in te subsequence once it as been excluded. Tis means tat wen for a certain k 2 te elements t(1);t(2);:::;t(r) of te subsequence are given, ten once u k,1 is known te corresponding subsequence for k, 1 can be constructed as follows. Because u k,1 u k,we rst delete from te bottom of te list any element larger tan u k,1. Now, suppose u k,1 > k, 1. Ten, because k will be added at te top of te list, we delete from te top all remaining elements t(i) for wic f k f t(i). Finally, we add k at te top of te list. In case u k,1 = k, 1 te list is empty after te deletion operations and no element is added. Te above updating process is carried out n, 1 times in total. Eac time at most one element is added, wic requires constant time per addition. Furtermore, several elements may be deleted. Note tat, because te list elements are already ordered, eac deletion requires indeed constant time. Te number of deleted elements can not be bounded nicely for eac individual time te updating process is carried out. However, te overall number of deletions is not larger tan n. Te reason for tis is simple: in te updating process, eac of te elements 1; 2;:::;n is added at most once to te list and terefore it can be deleted at most once. To summarize te above discussion: we ave sown tat problem (P) can be solved in O(n) time. 3 Sceduling jobs of a single type under batc availability Te problem we are addressing in tis section may be stated formally as follows. Tere are n jobs to be sceduled on a single macine. Eac job j (j = 1;:::;n) as a processing time p j and a due date d j by wic it sould ideally complete. Jobs can be processed consecutively in batces. At te start of te scedule and prior to eac batc, a set-up time s is 5

6 incurred, wic motivates te formation of longer batces so as to reduce te completion time of later jobs. However, batc availability applies, wic means tat all te jobs tat belong to te same batc complete only wen te last job in te batc completes. As a consequence, extending a batc by including additional jobs increases te completion time of te jobs previously in te batc. Te above problem setting is introduced in [12]. For te sum of completion times objective, an ecient algoritm is given by Coman et al. [7]: te batcing step is performed in linear time to give an overall time requirement ofo(n log n). An extension of tis algoritm for a sligtly more general cost function is proposed by Albers and Brucker [3] (see also [5]). It is wort pointing out tat te approac in [7, 3], like ours, relies on te notion of a queue. However, in te problem examined ere, te presence of a maximum operation witin te dynamic programming recursion is an additional complication tat does not arise in te sum of completion times variant. (Tis is also true for te problems addressed in later sections.) It is sown in [15] tat tere is an optimal scedule in wic jobs complete according to te earliest due date (EDD) rule. Tus, te jobs can be re-indexed according to tis rule in O(n log n) time and te problem reduces to one of batcing tat can be solved using a backward dynamic program wit batc insertion. Let G k denote te minimum overall lateness of a scedule containing jobs k; k + 1;:::;n wen starting at time 0. Te initialization is G n+1 =,1 and te recursion for k = n; n, 1;:::;1is G k = min f maxf(s + a k, a l )+G l ; (s + a k, a l ), d k gg; (3) k<ln+1 P n were a k = p for k = 1;:::;n. Here l denotes te rst job in te second batc of te scedule. Since tis batc starts at time s + a k, a l, te minimum overall lateness from tis batc onward is given by te rst term between brackets, wile te lateness of te rst batc is given by te oter term (since job k as te smallest due date). As pointed out in [15], a straigtforward implementation of te above algoritm requires O(n 2 ) time. However, we now sow tat te dynamic programming part can be implemented in linear time. From (3), or common sense reasoning, it follows tat G l+1 G l for every l n, 1. Hence, if G l+1,d k for some k 2 f1;:::;ng, ten also G l,d k. We now dene q k as te largest job index l in fk +1;:::;ng suc tat G l,d k ; if no suc index exists, we dene q k = k. (Note tat, because of te EDD order, q k+1 q k olds for every k n, 1.) From te above observations, it follows tat for all indices l 2 I 1 = k 6

7 fk +1;:::;q k g te maximum in (3) is given by te rst term, wereas for l 2 I 2 k = fq k +1;:::;n+1g, te maximum is given by te second term. Now (3) can be rewritten as G k = minf min fs + a k, a l + G l g; k<lqk min fs + a k, a l, d k gg: qk<ln+1 Note tat, for tis problem, eac ofi 1 and k I2 k is contiguous. Furter, te second minimum is always attained for l = q k +1: owing to te batc availability assumption and te EDD indexing of te jobs, te overall lateness of a batc is always determined by te rst job in te batc. Consequently, te remaining task is to compute s + a k + min f,a l + G l g (4) k<lqk eciently. However, since tis as to be done for every value of k, we actually need to solve an instance of problem (P) wit u k = q k and f l =,a l + G l. Hence, it takes overall O(n) time to calculate te minima given by (4). Since te parameters a l, l =1; 2;:::;;n, and, because of monotonicity, te values q k ; k =1; 2;:::;n, can be computed in O(n) time, we ave now sown tat te time requirement of our algoritm to solve te batcing problem is linear. Hence, because of te sorting step, te overall time requirement is O(n log n). Tis constitutes an improvement over te algoritm in [15]. 4 Sceduling jobs on a batcing macine Te problem we are addressing in tis section may be stated formally as follows. Tere are n jobs to be processed on a single batcing macine. Tis macine is capable of processing up to b jobs simultaneously in batces. Eac job j (j =1;:::;n) as a processing time p j and a due date d j by wic it sould ideally complete. Wenever a batc is formed, its completion time is equal to te largest processing time of any job in te batc. Te model is analyzed extensively in a recent paper by Brucker et al. [6]. Tey distinguis between te unbounded case were b n and te bounded case wereby b<n. For te unbounded problem of minimizing te maximum lateness, it is sown in [6] tat tere is an SPT-batc optimal scedule. Tus, te jobs can be re-indexed according to tis rule in O(n log n) time and te problem reduces to one of batcing tat can be solved using te following backward dynamic program wit batc insertion of Brucker et al. [6]. Let G k denote te minimum overall lateness of a scedule containing 7

8 jobs k; k+1;:::;nwen starting at time 0. Te initialization is G n+1 =,1 and te recursion for k = n; n, 1;:::;1is G k = min k<ln+1 fmaxfp l,1 + G l ; p l,1 + max kjl,1 f,d j ggg; (5) were l sould again be interpreted as te rst job of te second batc, wic starts wen te rst batc completes. By denition, tis appens wen te longest job (l, 1) of te rst batc completes. A standard implementation of te above algoritm, as proposed in [6], requires O(n 2 ) time. We now sow tat te dynamic programming part can be implemented in linear time, tus yielding an overall time requirement of O(n log n). Our approac is somewat similar to te one in te previous section. Again it can easily be veried tat G l+1 G l for every l n, 1. Hence, if G l+1 > max k<jl f,d j g for some k 2f1;:::;ng, ten G l G l+1 > max f,d j g max f,d jg: k<jl k<jl,1 It follows tat, if I 1 and k I2 are dened as in Section 2 (tat is: k I1 = k fl 2 fk +1;:::;ngjG l max k<jl,1 f,d j gg and I 2 = k I1 k \fk +1;:::;n+1g), ten, I 1 = k fk +1;:::;q kg and I 2 = k fq k +1;:::;n+1g, were q k is te largest index wit te required property. For convenience we dene q k = k if te inequality is not satised by any job in fk +1;k+2;:::;ng. Note tat q k is non-decreasing in k. Recursion formula (5) can now be rewritten as G k = minf min fp l,1 + G l g; k<lqk min fp l,1 + max f,d jggg: qk<ln+1 kjl,1 Te rst minimization problem between brackets can again be viewed as an instance of problem (P) wit u k = q k and f l = p l,1 + G l. Wit respect to te second minimization problem, we observe tat, for a xed arbitrary k, te minimum is attained for l as small as possible, i.e. l = q k +1, since tis minimizes bot te term p l,1, because of te SPT order, as well as te range over wic te maximum is computed. Hence, we are left wit calculating p + max q k f,d j g = p + q k maxf,d k; kjqk Tis boils down to solving te problem min fd j g; k<jqk 8 max f,d j gg: k<jqk

9 wic is an instance of (P) wit u k = q k and f j = d j. From tese observations and te fact tat, because of monotonicity, te values q k ; k = 1; 2;:::;n, can be computed in O(n) time, it follows tat te time requirement of our algoritm to solve te batcing problem is linear. Hence, taking into account te SPT-sorting step, te overall time requirement is again O(n log n). Tis constitutes an improvement over te algoritm in [6]. Finally, we note tat Brucker et al. [6] use teir algoritm for minimizing te maximum lateness as a subroutine in a polynomial procedure for minimizing te maximum cost. Terefore, te O(log n) improvement obtained ere applies to tat procedure too. 5 Sceduling customized two-operation jobs Te problem we are addressing in tis section may be stated formally as follows. Tere are n jobs wic ave to be sceduled on a single macine. Eac job j (j = 1; 2;:::;n) as two operations, namely a standard operation followed { not necessarily immediately { by aspecic operation. Tese operations ave processing times p (1) j and j, respectively. A set-up time is required before te rst standard operation and wenever tere is a switc in production from specic to standard operations; two standard operations may be processed consecutively to form a batc witout a set-up in between. Wit respect to te way in wic standard operations are released (become available) after processing, two scemes are possible: batc availability, de- ned in Section 3, and te alternative item availability wereby an operation becomes available immediately after it as been processed. We only analyze te batc availability variant explicitly and give comments as to ow te result can be extended to te item availability case. Te model is introduced in [4] (for batc availability) and ten analyzed for due-date related criteria in [10]. We note tat te problem discussed in [4] for te sum of completion times objective was sown to be equivalent to te, seemingly simpler, problem studied in [7]. In particular, it was sown tat te specic (unique) operations can essentially be removed from te problem. If tis were also te case for te maximum lateness variants of tese problems, ten te results of Section 3 could be used directly to solve te problem discussed in tis section. Before we proceed wit our analysis, it is wortwile to sow tat tis is not te case. Consider te instance of te two-operation variant in wic te set up time is c (c > 0) and tere are tree jobs wit due dates and operation processing times as sown in Table 1. 9

10 Table 1: Job data 1 Job i p (1) i i 1 1 c +2 d j c +1 2c +3 2c +3 It can be easily veried tat te problem of Section 3 obtained by omitting te specic operations, as as te unique optimal solution job 1 in te rst batc and jobs 2 and 3 in te second batc. Te value of tis solution is L max = 0. However, inserting te specic operations into tis scedule (immediately after te corresponding batc) yields a scedule for te two-component problem wit lateness equal to c +4. It is easy to see tat sceduling all te standard operations in one batc, followed by all te specic operations in EDD order, yields a scedule wit lateness of 4. Tus, our example suggests tat tere is no obvious way to translate optimal solutions to te problem in Section 3 into optimal solutions for te problem in tis section. Tis observation and te analysis below seem to lead to te conclusion tat te problem in tis section is genuinely more complex. Returning to te two-operation problem, it is sown in [10] tat tere is an optimal scedule in wic jobs complete according to te EDD rule. Tus, te jobs can be re-indexed according to tis rule in O(n log n) time and te problem reduces to one of batcing tat can be solved using a backward dynamic program wit batc insertion [10]. Let G k denote te minimum overall lateness of a scedule containing jobs k; k + 1;:::;n. Te initialization is G n+1 =,1 and te recursion for k = n; n, 1;:::;1is 8 > < G k = min fmax k<ln+1 > : +P s l,1 p(1) +P l,1 p(2) + G l; P P l,1 s + p(1) + max j kjl,1f p(2), d jg 9>= >; g: (6) Again, G k+1 G k for k =1; 2;:::;n, 1 olds. A standard implementation of te above algoritm requires O(n 2 ) time, if some preprocessing is used. We now sow tat te dynamic programming part can be implemented in O(n log n) time tus yielding an overall time requirement of O(n log n). For te maximum in (6) to be given by te rst term, te following needs 10

11 to old or equivalently G l, G l n =l max k<jl,1 f, l,1 =j+1 max f, kjl,1 n =j+1, d jg;, d jg: (7) Consider an arbitrary index k 2 f2; 3;:::;ng. Let te subset I1 k fk +1;k+2;:::;ng contain te indices for wic (7) olds. We rst explain owwe determine I k,1 1. Since te left-and-side value of (7) does not depend on k and max f, kjl,1 n =j+1, d jg max k,1jl,1 f, n =j+1, d jg it olds tat (I k,1 1 \fk +1;k+2;:::;ng) I1 k. Moreover, te elements of I1 k k,1 wic are not in I1 are exactly tose l 2 I1 k for wic G l, n =l <, n, d k,1: (8) Note tat te rigt-and-side of (8) is a constant for xed k. Hence, if te inequality is satised for one or more indices in I1 k, ten tese correspond P n to te smallest elements of te set fg l, =l p(2) be used to eciently determine I k,1 j l 2 I 1 k g. Tis fact can 1. In our implementation, we make use of a eap, wic we denote by H 1 Recall tat tis data structure as te following properties [2]: (i) te minimum of all values stored in te eap can be retrieved in constant time, (ii) adding a value to te eap takes O(log m) time, were m is te number of stored values, (iii) deleting a value from te eap takes O(log m) time. P n Suppose tat eap H 1 contains te values G l, =l p(2) for all l 2 I k 1. After G k as been calculated (ow tis is done P eciently will be sown n below), wewould like H 1 to contain te values G l, =l p(2) k,1 for all l 2 I 1 g. To acieve tis, we rst ceck weter te minimum value is less tan te 11

12 rigt-and-side of (8). If tis is te case, ten we delete te minimum from H 1 and we repeat te comparison wit te new minimum value. We keep deleting te current minimum value from H 1 until tis value becomes at least te as large as te rigt-and-side of (8) or until H 1 is empty. Ten we ceck weter G k, P n p(2) is at least as large as te rigt-and-side of (8). Only if tis is te case, do we add G k, P n p(2) to H 1. At tis point, for all l 2 I k,1 1. In parallel to updating P n H 1 contains te values G l, =l p(2) H 1,we can keep track of te indices tat correspond to its elements. Let us now turn to te issue of te ecient calculation of G k. From te denition of I1 k it follows tat we would like to calculate and s + min l2i k 2 s + min l2i k 1 l,1 f l,1 max f kjl,1 p (1) + l,1 were I k 2 = fk +1;k+2;:::;n+1gnI k 1. First consider (10). Suppose l; i 2 I k 2 max kjl,1 l,1 f i,1 max f kjl,1 i,1 max f kji,1 p (1) + j p (1) + j j p (1) + j p (1) + + G lg (9), d jg; (10) and l<i, ten, d jg, d jg, d jg: It follows tat te minimum in (10) is attained for te smallest element of I2 k, wic we denote by q k; we dene q k = k if I 2 = ;. Hence, (10) is equivalent to or qk,1 s, p (1) k,1, =1 qk,1 s + max f kjqk,1 + maxf k =1 p (1) + j, d jg j + d k;, min f, k<jqk,1 12 =1 + d jgg:

13 From te discussion about te updating process of eap H 1, it follows tat te values q k are non-decreasing in k. (Also note tat keeping track of te values q k, k = 1; 2;:::;n, requires overall O(n) time.) P Hence, te j minimization is an instance of (P) wit u k = q k,1 and f j =, =1 p(2) +d j. It follows tat (10) can be calculated for all values of k = 1; 2;:::; ntogeter in linear time. For te ecient calculation of (9), we use a eap H 2 wic contains te values P l,1 =1 p(1) +P l,1 =1 p(2) + G l for all l 2 I k 1 and possibly for some l 2 I k 2. Note tat tese values are independent of k. To calculate (9), we simply retrieve te minimum from te eap. If te minimum corresponds to an element ofi2 k,we delete tis value from H 2 and retrieve te new minimum. Tis is repeated until te minimum corresponds to an element ofi1 k or until H 2 is empty. In te latter case te value of (9) is 1, wile in te former case we get te value of (9) by adding s and subtracting P k,1 =1 p(1) +P k,1 =1 p(2). Te time complexity of te above algoritm depends on te number of additions to and deletions from te eaps. For every l = 1; 2;:::;n, te P l,1 =1 p(2) value G l, P n =l p(2) is added at most once to H 1 and te value P l,1 =1 p(1) + + G l is added at most once to H 2. (Tese additions actually occur at te same point in time.) Furtermore, deletion from H 1 and H 2 also occurs at most once for every index. Since te eaps never contain more tan n elements, it follows tat te total computational eort involving eap operations is O(n log n). P n p(1) Finally, we note tat partial sums suc as P l,1,p n p(1) can be replaced by =l p(1). Partial sums of te latter type can be calculated in linear time in a preprocessing step. We ave now arrived at te required result: our algoritm solves te batcing problem in O(n log n) time tus yielding an overall time requirement ofo(n log n) time. Tis constitutes an improvement over te algoritm in [10]. Wit respect to te item availability case, we note tat te problem can be solved using a double recursion dynamic program wit block insertion; suc a sceme is proposed in [9] and enables us to deploy te approac developed in tis section `twice' (in parallel, even) to reduce te overall complexity too(n log n). 13

14 6 Concluding Remarks We ave presented improved dynamic programming algoritms for a class of sceduling problems involving te maximum lateness criterion and an element of batcing. A question tat arises is weter insigts gained from tis study can elp to reduce te time requirement of algoritms for oter, more complicated, models involving te batcing of jobs tat belong to dierent families. Since, in tat context, te tasks of sequencing and batcing can only be separated witin eac family but not at te overall level, it is not obvious weter or ow our approac could be applied to tose problems. An interesting researc direction is tat of ascertaining weter tere exist maximization problems outside te domain of production sceduling tat are amenable to our approac. Acknowledgements Te autors wis to tank Cris Potts wo suggested tis researc topic. Financial support by te Tinbergen Institute is gratefully acknowledged. References [1] A Aggarwal and J K Park. Improved algoritms for economic lot size problems. Operations Researc, 41(3):549{571, [2] A V Ao, J E Hopcroft, and J D Ullman. Data Structures and Algoritms. Addison-Wesley, Reading, MA, [3] S Albers and P Brucker. Te complexity of one-macine batcing problems. Discrete Applied Matematics, 47:87{107, [4] K R Baker. Sceduling te production of components at a common facility. IIE Transactions, 20(1):32{35, [5] P Brucker. Sceduling Algoritms. Springer Verlag, Berlin, [6] P Brucker, A Gladky, H Hoogeveen, M Y Kovalyov, C N Potts, T Tautenan, and S van de Velde. Sceduling a batcing macine. Journal of Sceduling, 1:31{54, [7] E G Coman, M Yannakakis, M J Magazine, and C Santos. Batc sizing and job sequencing on a single macine. Annals of Operations Researc, 26:135{147,

15 [8] A Federgruen and M Tzur. A simple forward algoritm to solve general dynamic lot sizing models wit n periods in O(n log n) or O(n) time. Management Science, 37:909{925, [9] A E Gerodimos, C A Glass, and C N Potts. Sceduling customised jobs on a single macine under item availability. submitted to IIE Transactions in Operations Researc, [10] A E Gerodimos, C A Glass, and C N Potts. Sceduling te production of two-operation jobs on a single macine. to appear in a Feature Issue of European Journal of Operational Researc dedicated to te 15t EURO Summer Institute, ESI V, on Production Sceduling, St Vincent, Aosta Valley, Italy, September 12-26, 1997, [11] M Y Kovalyov and C N Potts. Sceduling wit batcing: A review. to appear in a Feature Issue of European Journal of Operational Researc dedicated to te 15t EURO Summer Institute, ESI V, on Production Sceduling, St Vincent, Aosta Valley, Italy, September 12-26, 1997, [12] C A Santos and M J Magazine. Batcing in single operation manufacturing systems. Operations Researc Letters, 4(3):99{103, [13] S van Hoesel, A Wagelmans, and B Moerman. Using geometric tecniques to improve dynamic programming algoritms for te economic lot-sizing problem and extensions. European Journal of Operational Researc, 75:312{331, [14] A Wagelmans, S van Hoesel, and A Kolen. Economic lot sizing: An O(n log n) algoritm tat runs in linear time in te Wagner-Witin case. Operations Researc, 40(Supp. 1):145{156, [15] S Webster and K R Baker. Sceduling groups of jobs on a single macine. Operations Researc, 43:692{703,

The EOQ Inventory Formula

The EOQ Inventory Formula Te EOQ Inventory Formula James M. Cargal Matematics Department Troy University Montgomery Campus A basic problem for businesses and manufacturers is, wen ordering supplies, to determine wat quantity of

More information

Verifying Numerical Convergence Rates

Verifying Numerical Convergence Rates 1 Order of accuracy Verifying Numerical Convergence Rates We consider a numerical approximation of an exact value u. Te approximation depends on a small parameter, suc as te grid size or time step, and

More information

Can a Lump-Sum Transfer Make Everyone Enjoy the Gains. from Free Trade?

Can a Lump-Sum Transfer Make Everyone Enjoy the Gains. from Free Trade? Can a Lump-Sum Transfer Make Everyone Enjoy te Gains from Free Trade? Yasukazu Icino Department of Economics, Konan University June 30, 2010 Abstract I examine lump-sum transfer rules to redistribute te

More information

How To Ensure That An Eac Edge Program Is Successful

How To Ensure That An Eac Edge Program Is Successful Introduction Te Economic Diversification and Growt Enterprises Act became effective on 1 January 1995. Te creation of tis Act was to encourage new businesses to start or expand in Newfoundland and Labrador.

More information

Computer Science and Engineering, UCSD October 7, 1999 Goldreic-Levin Teorem Autor: Bellare Te Goldreic-Levin Teorem 1 Te problem We æx a an integer n for te lengt of te strings involved. If a is an n-bit

More information

Unemployment insurance/severance payments and informality in developing countries

Unemployment insurance/severance payments and informality in developing countries Unemployment insurance/severance payments and informality in developing countries David Bardey y and Fernando Jaramillo z First version: September 2011. Tis version: November 2011. Abstract We analyze

More information

M(0) = 1 M(1) = 2 M(h) = M(h 1) + M(h 2) + 1 (h > 1)

M(0) = 1 M(1) = 2 M(h) = M(h 1) + M(h 2) + 1 (h > 1) Insertion and Deletion in VL Trees Submitted in Partial Fulfillment of te Requirements for Dr. Eric Kaltofen s 66621: nalysis of lgoritms by Robert McCloskey December 14, 1984 1 ackground ccording to Knut

More information

Geometric Stratification of Accounting Data

Geometric Stratification of Accounting Data Stratification of Accounting Data Patricia Gunning * Jane Mary Horgan ** William Yancey *** Abstract: We suggest a new procedure for defining te boundaries of te strata in igly skewed populations, usual

More information

2.23 Gambling Rehabilitation Services. Introduction

2.23 Gambling Rehabilitation Services. Introduction 2.23 Gambling Reabilitation Services Introduction Figure 1 Since 1995 provincial revenues from gambling activities ave increased over 56% from $69.2 million in 1995 to $108 million in 2004. Te majority

More information

2 Limits and Derivatives

2 Limits and Derivatives 2 Limits and Derivatives 2.7 Tangent Lines, Velocity, and Derivatives A tangent line to a circle is a line tat intersects te circle at exactly one point. We would like to take tis idea of tangent line

More information

Comparison between two approaches to overload control in a Real Server: local or hybrid solutions?

Comparison between two approaches to overload control in a Real Server: local or hybrid solutions? Comparison between two approaces to overload control in a Real Server: local or ybrid solutions? S. Montagna and M. Pignolo Researc and Development Italtel S.p.A. Settimo Milanese, ITALY Abstract Tis wor

More information

Derivatives Math 120 Calculus I D Joyce, Fall 2013

Derivatives Math 120 Calculus I D Joyce, Fall 2013 Derivatives Mat 20 Calculus I D Joyce, Fall 203 Since we ave a good understanding of its, we can develop derivatives very quickly. Recall tat we defined te derivative f x of a function f at x to be te

More information

College Planning Using Cash Value Life Insurance

College Planning Using Cash Value Life Insurance College Planning Using Cas Value Life Insurance CAUTION: Te advisor is urged to be extremely cautious of anoter college funding veicle wic provides a guaranteed return of premium immediately if funded

More information

Schedulability Analysis under Graph Routing in WirelessHART Networks

Schedulability Analysis under Graph Routing in WirelessHART Networks Scedulability Analysis under Grap Routing in WirelessHART Networks Abusayeed Saifulla, Dolvara Gunatilaka, Paras Tiwari, Mo Sa, Cenyang Lu, Bo Li Cengjie Wu, and Yixin Cen Department of Computer Science,

More information

An inquiry into the multiplier process in IS-LM model

An inquiry into the multiplier process in IS-LM model An inquiry into te multiplier process in IS-LM model Autor: Li ziran Address: Li ziran, Room 409, Building 38#, Peing University, Beijing 00.87,PRC. Pone: (86) 00-62763074 Internet Address: jefferson@water.pu.edu.cn

More information

Optimized Data Indexing Algorithms for OLAP Systems

Optimized Data Indexing Algorithms for OLAP Systems Database Systems Journal vol. I, no. 2/200 7 Optimized Data Indexing Algoritms for OLAP Systems Lucian BORNAZ Faculty of Cybernetics, Statistics and Economic Informatics Academy of Economic Studies, Bucarest

More information

Distances in random graphs with infinite mean degrees

Distances in random graphs with infinite mean degrees Distances in random graps wit infinite mean degrees Henri van den Esker, Remco van der Hofstad, Gerard Hoogiemstra and Dmitri Znamenski April 26, 2005 Abstract We study random graps wit an i.i.d. degree

More information

Area-Specific Recreation Use Estimation Using the National Visitor Use Monitoring Program Data

Area-Specific Recreation Use Estimation Using the National Visitor Use Monitoring Program Data United States Department of Agriculture Forest Service Pacific Nortwest Researc Station Researc Note PNW-RN-557 July 2007 Area-Specific Recreation Use Estimation Using te National Visitor Use Monitoring

More information

What is Advanced Corporate Finance? What is finance? What is Corporate Finance? Deciding how to optimally manage a firm s assets and liabilities.

What is Advanced Corporate Finance? What is finance? What is Corporate Finance? Deciding how to optimally manage a firm s assets and liabilities. Wat is? Spring 2008 Note: Slides are on te web Wat is finance? Deciding ow to optimally manage a firm s assets and liabilities. Managing te costs and benefits associated wit te timing of cas in- and outflows

More information

FINITE DIFFERENCE METHODS

FINITE DIFFERENCE METHODS FINITE DIFFERENCE METHODS LONG CHEN Te best known metods, finite difference, consists of replacing eac derivative by a difference quotient in te classic formulation. It is simple to code and economic to

More information

SAMPLE DESIGN FOR THE TERRORISM RISK INSURANCE PROGRAM SURVEY

SAMPLE DESIGN FOR THE TERRORISM RISK INSURANCE PROGRAM SURVEY ASA Section on Survey Researc Metods SAMPLE DESIG FOR TE TERRORISM RISK ISURACE PROGRAM SURVEY G. ussain Coudry, Westat; Mats yfjäll, Statisticon; and Marianne Winglee, Westat G. ussain Coudry, Westat,

More information

Lecture 10: What is a Function, definition, piecewise defined functions, difference quotient, domain of a function

Lecture 10: What is a Function, definition, piecewise defined functions, difference quotient, domain of a function Lecture 10: Wat is a Function, definition, piecewise defined functions, difference quotient, domain of a function A function arises wen one quantity depends on anoter. Many everyday relationsips between

More information

Note nine: Linear programming CSE 101. 1 Linear constraints and objective functions. 1.1 Introductory example. Copyright c Sanjoy Dasgupta 1

Note nine: Linear programming CSE 101. 1 Linear constraints and objective functions. 1.1 Introductory example. Copyright c Sanjoy Dasgupta 1 Copyrigt c Sanjoy Dasgupta Figure. (a) Te feasible region for a linear program wit two variables (see tet for details). (b) Contour lines of te objective function: for different values of (profit). Te

More information

Strategic trading in a dynamic noisy market. Dimitri Vayanos

Strategic trading in a dynamic noisy market. Dimitri Vayanos LSE Researc Online Article (refereed) Strategic trading in a dynamic noisy market Dimitri Vayanos LSE as developed LSE Researc Online so tat users may access researc output of te Scool. Copyrigt and Moral

More information

Math 113 HW #5 Solutions

Math 113 HW #5 Solutions Mat 3 HW #5 Solutions. Exercise.5.6. Suppose f is continuous on [, 5] and te only solutions of te equation f(x) = 6 are x = and x =. If f() = 8, explain wy f(3) > 6. Answer: Suppose we ad tat f(3) 6. Ten

More information

For Sale By Owner Program. We can help with our for sale by owner kit that includes:

For Sale By Owner Program. We can help with our for sale by owner kit that includes: Dawn Coen Broker/Owner For Sale By Owner Program If you want to sell your ome By Owner wy not:: For Sale Dawn Coen Broker/Owner YOUR NAME YOUR PHONE # Look as professional as possible Be totally prepared

More information

SAT Subject Math Level 1 Facts & Formulas

SAT Subject Math Level 1 Facts & Formulas Numbers, Sequences, Factors Integers:..., -3, -2, -1, 0, 1, 2, 3,... Reals: integers plus fractions, decimals, and irrationals ( 2, 3, π, etc.) Order Of Operations: Aritmetic Sequences: PEMDAS (Parenteses

More information

On Distributed Key Distribution Centers and Unconditionally Secure Proactive Verifiable Secret Sharing Schemes Based on General Access Structure

On Distributed Key Distribution Centers and Unconditionally Secure Proactive Verifiable Secret Sharing Schemes Based on General Access Structure On Distributed Key Distribution Centers and Unconditionally Secure Proactive Verifiable Secret Saring Scemes Based on General Access Structure (Corrected Version) Ventzislav Nikov 1, Svetla Nikova 2, Bart

More information

- 1 - Handout #22 May 23, 2012 Huffman Encoding and Data Compression. CS106B Spring 2012. Handout by Julie Zelenski with minor edits by Keith Schwarz

- 1 - Handout #22 May 23, 2012 Huffman Encoding and Data Compression. CS106B Spring 2012. Handout by Julie Zelenski with minor edits by Keith Schwarz CS106B Spring 01 Handout # May 3, 01 Huffman Encoding and Data Compression Handout by Julie Zelenski wit minor edits by Keit Scwarz In te early 1980s, personal computers ad ard disks tat were no larger

More information

Tangent Lines and Rates of Change

Tangent Lines and Rates of Change Tangent Lines and Rates of Cange 9-2-2005 Given a function y = f(x), ow do you find te slope of te tangent line to te grap at te point P(a, f(a))? (I m tinking of te tangent line as a line tat just skims

More information

SWITCH T F T F SELECT. (b) local schedule of two branches. (a) if-then-else construct A & B MUX. one iteration cycle

SWITCH T F T F SELECT. (b) local schedule of two branches. (a) if-then-else construct A & B MUX. one iteration cycle 768 IEEE RANSACIONS ON COMPUERS, VOL. 46, NO. 7, JULY 997 Compile-ime Sceduling of Dynamic Constructs in Dataæow Program Graps Soonoi Ha, Member, IEEE and Edward A. Lee, Fellow, IEEE Abstract Sceduling

More information

Research on the Anti-perspective Correction Algorithm of QR Barcode

Research on the Anti-perspective Correction Algorithm of QR Barcode Researc on te Anti-perspective Correction Algoritm of QR Barcode Jianua Li, Yi-Wen Wang, YiJun Wang,Yi Cen, Guoceng Wang Key Laboratory of Electronic Tin Films and Integrated Devices University of Electronic

More information

A system to monitor the quality of automated coding of textual answers to open questions

A system to monitor the quality of automated coding of textual answers to open questions Researc in Official Statistics Number 2/2001 A system to monitor te quality of automated coding of textual answers to open questions Stefania Maccia * and Marcello D Orazio ** Italian National Statistical

More information

ON LOCAL LIKELIHOOD DENSITY ESTIMATION WHEN THE BANDWIDTH IS LARGE

ON LOCAL LIKELIHOOD DENSITY ESTIMATION WHEN THE BANDWIDTH IS LARGE ON LOCAL LIKELIHOOD DENSITY ESTIMATION WHEN THE BANDWIDTH IS LARGE Byeong U. Park 1 and Young Kyung Lee 2 Department of Statistics, Seoul National University, Seoul, Korea Tae Yoon Kim 3 and Ceolyong Park

More information

Catalogue no. 12-001-XIE. Survey Methodology. December 2004

Catalogue no. 12-001-XIE. Survey Methodology. December 2004 Catalogue no. 1-001-XIE Survey Metodology December 004 How to obtain more information Specific inquiries about tis product and related statistics or services sould be directed to: Business Survey Metods

More information

Cyber Epidemic Models with Dependences

Cyber Epidemic Models with Dependences Cyber Epidemic Models wit Dependences Maocao Xu 1, Gaofeng Da 2 and Souuai Xu 3 1 Department of Matematics, Illinois State University mxu2@ilstu.edu 2 Institute for Cyber Security, University of Texas

More information

Strategic trading and welfare in a dynamic market. Dimitri Vayanos

Strategic trading and welfare in a dynamic market. Dimitri Vayanos LSE Researc Online Article (refereed) Strategic trading and welfare in a dynamic market Dimitri Vayanos LSE as developed LSE Researc Online so tat users may access researc output of te Scool. Copyrigt

More information

Free Shipping and Repeat Buying on the Internet: Theory and Evidence

Free Shipping and Repeat Buying on the Internet: Theory and Evidence Free Sipping and Repeat Buying on te Internet: eory and Evidence Yingui Yang, Skander Essegaier and David R. Bell 1 June 13, 2005 1 Graduate Scool of Management, University of California at Davis (yiyang@ucdavis.edu)

More information

CHAPTER 7. Di erentiation

CHAPTER 7. Di erentiation CHAPTER 7 Di erentiation 1. Te Derivative at a Point Definition 7.1. Let f be a function defined on a neigborood of x 0. f is di erentiable at x 0, if te following it exists: f 0 fx 0 + ) fx 0 ) x 0 )=.

More information

Section 3.3. Differentiation of Polynomials and Rational Functions. Difference Equations to Differential Equations

Section 3.3. Differentiation of Polynomials and Rational Functions. Difference Equations to Differential Equations Difference Equations to Differential Equations Section 3.3 Differentiation of Polynomials an Rational Functions In tis section we begin te task of iscovering rules for ifferentiating various classes of

More information

ACT Math Facts & Formulas

ACT Math Facts & Formulas Numbers, Sequences, Factors Integers:..., -3, -2, -1, 0, 1, 2, 3,... Rationals: fractions, tat is, anyting expressable as a ratio of integers Reals: integers plus rationals plus special numbers suc as

More information

Referendum-led Immigration Policy in the Welfare State

Referendum-led Immigration Policy in the Welfare State Referendum-led Immigration Policy in te Welfare State YUJI TAMURA Department of Economics, University of Warwick, UK First version: 12 December 2003 Updated: 16 Marc 2004 Abstract Preferences of eterogeneous

More information

1.6. Analyse Optimum Volume and Surface Area. Maximum Volume for a Given Surface Area. Example 1. Solution

1.6. Analyse Optimum Volume and Surface Area. Maximum Volume for a Given Surface Area. Example 1. Solution 1.6 Analyse Optimum Volume and Surface Area Estimation and oter informal metods of optimizing measures suc as surface area and volume often lead to reasonable solutions suc as te design of te tent in tis

More information

Chapter 11. Limits and an Introduction to Calculus. Selected Applications

Chapter 11. Limits and an Introduction to Calculus. Selected Applications Capter Limits and an Introduction to Calculus. Introduction to Limits. Tecniques for Evaluating Limits. Te Tangent Line Problem. Limits at Infinit and Limits of Sequences.5 Te Area Problem Selected Applications

More information

Factoring Synchronous Grammars By Sorting

Factoring Synchronous Grammars By Sorting Factoring Syncronous Grammars By Sorting Daniel Gildea Computer Science Dept. Uniersity of Rocester Rocester, NY Giorgio Satta Dept. of Information Eng g Uniersity of Padua I- Padua, Italy Hao Zang Computer

More information

Channel Allocation in Non-Cooperative Multi-Radio Multi-Channel Wireless Networks

Channel Allocation in Non-Cooperative Multi-Radio Multi-Channel Wireless Networks Cannel Allocation in Non-Cooperative Multi-Radio Multi-Cannel Wireless Networks Dejun Yang, Xi Fang, Guoliang Xue Arizona State University Abstract Wile tremendous efforts ave been made on cannel allocation

More information

Verification of Security Protocols with Lists: from Length One to Unbounded Length

Verification of Security Protocols with Lists: from Length One to Unbounded Length Verification of Security Protocols wit Lists: from Lengt One to Unbounded Lengt INRIA, Miriam Paiola and Bruno Blancet École Normale Supérieure, CNRS, Paris {paiola,blancet}@di.ens.fr Abstract. We present

More information

Staffing and routing in a two-tier call centre. Sameer Hasija*, Edieal J. Pinker and Robert A. Shumsky

Staffing and routing in a two-tier call centre. Sameer Hasija*, Edieal J. Pinker and Robert A. Shumsky 8 Int. J. Operational Researc, Vol. 1, Nos. 1/, 005 Staffing and routing in a two-tier call centre Sameer Hasija*, Edieal J. Pinker and Robert A. Sumsky Simon Scool, University of Rocester, Rocester 1467,

More information

Training Robust Support Vector Regression via D. C. Program

Training Robust Support Vector Regression via D. C. Program Journal of Information & Computational Science 7: 12 (2010) 2385 2394 Available at ttp://www.joics.com Training Robust Support Vector Regression via D. C. Program Kuaini Wang, Ping Zong, Yaoong Zao College

More information

Design and Analysis of a Fault-Tolerant Mechanism for a Server-Less Video-On-Demand System

Design and Analysis of a Fault-Tolerant Mechanism for a Server-Less Video-On-Demand System Design and Analysis of a Fault-olerant Mecanism for a Server-Less Video-On-Demand System Jack Y. B. Lee Department of Information Engineering e Cinese University of Hong Kong Satin, N.., Hong Kong Email:

More information

To motivate the notion of a variogram for a covariance stationary process, { Ys ( ): s R}

To motivate the notion of a variogram for a covariance stationary process, { Ys ( ): s R} 4. Variograms Te covariogram and its normalized form, te correlogram, are by far te most intuitive metods for summarizing te structure of spatial dependencies in a covariance stationary process. However,

More information

Instantaneous Rate of Change:

Instantaneous Rate of Change: Instantaneous Rate of Cange: Last section we discovered tat te average rate of cange in F(x) can also be interpreted as te slope of a scant line. Te average rate of cange involves te cange in F(x) over

More information

Simultaneous Location of Trauma Centers and Helicopters for Emergency Medical Service Planning

Simultaneous Location of Trauma Centers and Helicopters for Emergency Medical Service Planning Simultaneous Location of Trauma Centers and Helicopters for Emergency Medical Service Planning Soo-Haeng Co Hoon Jang Taesik Lee Jon Turner Tepper Scool of Business, Carnegie Mellon University, Pittsburg,

More information

Pre-trial Settlement with Imperfect Private Monitoring

Pre-trial Settlement with Imperfect Private Monitoring Pre-trial Settlement wit Imperfect Private Monitoring Mostafa Beskar University of New Hampsire Jee-Hyeong Park y Seoul National University July 2011 Incomplete, Do Not Circulate Abstract We model pretrial

More information

Pretrial Settlement with Imperfect Private Monitoring

Pretrial Settlement with Imperfect Private Monitoring Pretrial Settlement wit Imperfect Private Monitoring Mostafa Beskar Indiana University Jee-Hyeong Park y Seoul National University April, 2016 Extremely Preliminary; Please Do Not Circulate. Abstract We

More information

The modelling of business rules for dashboard reporting using mutual information

The modelling of business rules for dashboard reporting using mutual information 8 t World IMACS / MODSIM Congress, Cairns, Australia 3-7 July 2009 ttp://mssanz.org.au/modsim09 Te modelling of business rules for dasboard reporting using mutual information Gregory Calbert Command, Control,

More information

Working Capital 2013 UK plc s unproductive 69 billion

Working Capital 2013 UK plc s unproductive 69 billion 2013 Executive summary 2. Te level of excess working capital increased 3. UK sectors acieve a mixed performance 4. Size matters in te supply cain 6. Not all companies are overflowing wit cas 8. Excess

More information

Determine the perimeter of a triangle using algebra Find the area of a triangle using the formula

Determine the perimeter of a triangle using algebra Find the area of a triangle using the formula Student Name: Date: Contact Person Name: Pone Number: Lesson 0 Perimeter, Area, and Similarity of Triangles Objectives Determine te perimeter of a triangle using algebra Find te area of a triangle using

More information

OPTIMAL DISCONTINUOUS GALERKIN METHODS FOR THE ACOUSTIC WAVE EQUATION IN HIGHER DIMENSIONS

OPTIMAL DISCONTINUOUS GALERKIN METHODS FOR THE ACOUSTIC WAVE EQUATION IN HIGHER DIMENSIONS OPTIMAL DISCONTINUOUS GALERKIN METHODS FOR THE ACOUSTIC WAVE EQUATION IN HIGHER DIMENSIONS ERIC T. CHUNG AND BJÖRN ENGQUIST Abstract. In tis paper, we developed and analyzed a new class of discontinuous

More information

Multigrid computational methods are

Multigrid computational methods are M ULTIGRID C OMPUTING Wy Multigrid Metods Are So Efficient Originally introduced as a way to numerically solve elliptic boundary-value problems, multigrid metods, and teir various multiscale descendants,

More information

OPTIMAL FLEET SELECTION FOR EARTHMOVING OPERATIONS

OPTIMAL FLEET SELECTION FOR EARTHMOVING OPERATIONS New Developments in Structural Engineering and Construction Yazdani, S. and Sing, A. (eds.) ISEC-7, Honolulu, June 18-23, 2013 OPTIMAL FLEET SELECTION FOR EARTHMOVING OPERATIONS JIALI FU 1, ERIK JENELIUS

More information

Dynamically Scalable Architectures for E-Commerce

Dynamically Scalable Architectures for E-Commerce MKWI 2010 E-Commerce und E-Business 1289 Dynamically Scalable Arcitectures for E-Commerce A Strategy for Partial Integration of Cloud Resources in an E-Commerce System Georg Lackermair 1,2, Susanne Straringer

More information

Heterogeneous firms and trade costs: a reading of French access to European agrofood

Heterogeneous firms and trade costs: a reading of French access to European agrofood Heterogeneous firms and trade costs: a reading of Frenc access to European agrofood markets Cevassus-Lozza E., Latouce K. INRA, UR 34, F-44000 Nantes, France Abstract Tis article offers a new reading of

More information

Writing Mathematics Papers

Writing Mathematics Papers Writing Matematics Papers Tis essay is intended to elp your senior conference paper. It is a somewat astily produced amalgam of advice I ave given to students in my PDCs (Mat 4 and Mat 9), so it s not

More information

Analyzing the Effects of Insuring Health Risks:

Analyzing the Effects of Insuring Health Risks: Analyzing te Effects of Insuring Healt Risks: On te Trade-off between Sort Run Insurance Benefits vs. Long Run Incentive Costs Harold L. Cole University of Pennsylvania and NBER Soojin Kim University of

More information

Shell and Tube Heat Exchanger

Shell and Tube Heat Exchanger Sell and Tube Heat Excanger MECH595 Introduction to Heat Transfer Professor M. Zenouzi Prepared by: Andrew Demedeiros, Ryan Ferguson, Bradford Powers November 19, 2009 1 Abstract 2 Contents Discussion

More information

MULTY BINARY TURBO CODED WOFDM PERFORMANCE IN FLAT RAYLEIGH FADING CHANNELS

MULTY BINARY TURBO CODED WOFDM PERFORMANCE IN FLAT RAYLEIGH FADING CHANNELS Volume 49, Number 3, 28 MULTY BINARY TURBO CODED WOFDM PERFORMANCE IN FLAT RAYLEIGH FADING CHANNELS Marius OLTEAN Maria KOVACI Horia BALTA Andrei CAMPEANU Faculty of, Timisoara, Romania Bd. V. Parvan,

More information

2.12 Student Transportation. Introduction

2.12 Student Transportation. Introduction Introduction Figure 1 At 31 Marc 2003, tere were approximately 84,000 students enrolled in scools in te Province of Newfoundland and Labrador, of wic an estimated 57,000 were transported by scool buses.

More information

Multivariate time series analysis: Some essential notions

Multivariate time series analysis: Some essential notions Capter 2 Multivariate time series analysis: Some essential notions An overview of a modeling and learning framework for multivariate time series was presented in Capter 1. In tis capter, some notions on

More information

DEPARTMENT OF ECONOMICS HOUSEHOLD DEBT AND FINANCIAL ASSETS: EVIDENCE FROM GREAT BRITAIN, GERMANY AND THE UNITED STATES

DEPARTMENT OF ECONOMICS HOUSEHOLD DEBT AND FINANCIAL ASSETS: EVIDENCE FROM GREAT BRITAIN, GERMANY AND THE UNITED STATES DEPARTMENT OF ECONOMICS HOUSEHOLD DEBT AND FINANCIAL ASSETS: EVIDENCE FROM GREAT BRITAIN, GERMANY AND THE UNITED STATES Sara Brown, University of Leicester, UK Karl Taylor, University of Leicester, UK

More information

Government Debt and Optimal Monetary and Fiscal Policy

Government Debt and Optimal Monetary and Fiscal Policy Government Debt and Optimal Monetary and Fiscal Policy Klaus Adam Manneim University and CEPR - preliminary version - June 7, 21 Abstract How do di erent levels of government debt a ect te optimal conduct

More information

Chapter 10: Refrigeration Cycles

Chapter 10: Refrigeration Cycles Capter 10: efrigeration Cycles Te vapor compression refrigeration cycle is a common metod for transferring eat from a low temperature to a ig temperature. Te above figure sows te objectives of refrigerators

More information

100 Austrian Journal of Statistics, Vol. 32 (2003), No. 1&2, 99-129

100 Austrian Journal of Statistics, Vol. 32 (2003), No. 1&2, 99-129 AUSTRIAN JOURNAL OF STATISTICS Volume 3 003, Number 1&, 99 19 Adaptive Regression on te Real Line in Classes of Smoot Functions L.M. Artiles and B.Y. Levit Eurandom, Eindoven, te Neterlands Queen s University,

More information

Abstract. Introduction

Abstract. Introduction Fast solution of te Sallow Water Equations using GPU tecnology A Crossley, R Lamb, S Waller JBA Consulting, Sout Barn, Brougton Hall, Skipton, Nort Yorksire, BD23 3AE. amanda.crossley@baconsulting.co.uk

More information

Orchestrating Bulk Data Transfers across Geo-Distributed Datacenters

Orchestrating Bulk Data Transfers across Geo-Distributed Datacenters Tis article as been accepted for publication in a future issue of tis journal, but as not been fully edited Content may cange prior to final publication Citation information: DOI 101109/TCC20152389842,

More information

Guide to Cover Letters & Thank You Letters

Guide to Cover Letters & Thank You Letters Guide to Cover Letters & Tank You Letters 206 Strebel Student Center (315) 792-3087 Fax (315) 792-3370 TIPS FOR WRITING A PERFECT COVER LETTER Te resume never travels alone. Eac time you submit your resume

More information

Tis Problem and Retail Inventory Management

Tis Problem and Retail Inventory Management Optimizing Inventory Replenisment of Retail Fasion Products Marsall Fiser Kumar Rajaram Anant Raman Te Warton Scool, University of Pennsylvania, 3620 Locust Walk, 3207 SH-DH, Piladelpia, Pennsylvania 19104-6366

More information

Bonferroni-Based Size-Correction for Nonstandard Testing Problems

Bonferroni-Based Size-Correction for Nonstandard Testing Problems Bonferroni-Based Size-Correction for Nonstandard Testing Problems Adam McCloskey Brown University October 2011; Tis Version: October 2012 Abstract We develop powerful new size-correction procedures for

More information

Research on Risk Assessment of PFI Projects Based on Grid-fuzzy Borda Number

Research on Risk Assessment of PFI Projects Based on Grid-fuzzy Borda Number Researc on Risk Assessent of PFI Projects Based on Grid-fuzzy Borda Nuber LI Hailing 1, SHI Bensan 2 1. Scool of Arcitecture and Civil Engineering, Xiua University, Cina, 610039 2. Scool of Econoics and

More information

Keskustelualoitteita #65 Joensuun yliopisto, Taloustieteet. Market effiency in Finnish harness horse racing. Niko Suhonen

Keskustelualoitteita #65 Joensuun yliopisto, Taloustieteet. Market effiency in Finnish harness horse racing. Niko Suhonen Keskustelualoitteita #65 Joensuun yliopisto, Taloustieteet Market effiency in Finnis arness orse racing Niko Suonen ISBN 978-952-219-283-7 ISSN 1795-7885 no 65 Market Efficiency in Finnis Harness Horse

More information

Operation go-live! Mastering the people side of operational readiness

Operation go-live! Mastering the people side of operational readiness ! I 2 London 2012 te ultimate Up to 30% of te value of a capital programme can be destroyed due to operational readiness failures. 1 In te complex interplay between tecnology, infrastructure and process,

More information

A strong credit score can help you score a lower rate on a mortgage

A strong credit score can help you score a lower rate on a mortgage NET GAIN Scoring points for your financial future AS SEEN IN USA TODAY S MONEY SECTION, JULY 3, 2007 A strong credit score can elp you score a lower rate on a mortgage By Sandra Block Sales of existing

More information

1. Case description. Best practice description

1. Case description. Best practice description 1. Case description Best practice description Tis case sows ow a large multinational went troug a bottom up organisational cange to become a knowledge-based company. A small community on knowledge Management

More information

Math Test Sections. The College Board: Expanding College Opportunity

Math Test Sections. The College Board: Expanding College Opportunity Taking te SAT I: Reasoning Test Mat Test Sections Te materials in tese files are intended for individual use by students getting ready to take an SAT Program test; permission for any oter use must be sougt

More information

Pioneer Fund Story. Searching for Value Today and Tomorrow. Pioneer Funds Equities

Pioneer Fund Story. Searching for Value Today and Tomorrow. Pioneer Funds Equities Pioneer Fund Story Searcing for Value Today and Tomorrow Pioneer Funds Equities Pioneer Fund A Cornerstone of Financial Foundations Since 1928 Te fund s relatively cautious stance as kept it competitive

More information

SHAPE: A NEW BUSINESS ANALYTICS WEB PLATFORM FOR GETTING INSIGHTS ON ELECTRICAL LOAD PATTERNS

SHAPE: A NEW BUSINESS ANALYTICS WEB PLATFORM FOR GETTING INSIGHTS ON ELECTRICAL LOAD PATTERNS CIRED Worksop - Rome, 11-12 June 2014 SAPE: A NEW BUSINESS ANALYTICS WEB PLATFORM FOR GETTING INSIGTS ON ELECTRICAL LOAD PATTERNS Diego Labate Paolo Giubbini Gianfranco Cicco Mario Ettorre Enel Distribuzione-Italy

More information

Using Intelligent Agents to Discover Energy Saving Opportunities within Data Centers

Using Intelligent Agents to Discover Energy Saving Opportunities within Data Centers 1 Using Intelligent Agents to Discover Energy Saving Opportunities witin Data Centers Alexandre Mello Ferreira and Barbara Pernici Dipartimento di Elettronica, Informazione e Bioingegneria Politecnico

More information

TRADING AWAY WIDE BRANDS FOR CHEAP BRANDS. Swati Dhingra London School of Economics and CEP. Online Appendix

TRADING AWAY WIDE BRANDS FOR CHEAP BRANDS. Swati Dhingra London School of Economics and CEP. Online Appendix TRADING AWAY WIDE BRANDS FOR CHEAP BRANDS Swati Dingra London Scool of Economics and CEP Online Appendix APPENDIX A. THEORETICAL & EMPIRICAL RESULTS A.1. CES and Logit Preferences: Invariance of Innovation

More information

Predicting the behavior of interacting humans by fusing data from multiple sources

Predicting the behavior of interacting humans by fusing data from multiple sources Predicting te beavior of interacting umans by fusing data from multiple sources Erik J. Sclict 1, Ritcie Lee 2, David H. Wolpert 3,4, Mykel J. Kocenderfer 1, and Brendan Tracey 5 1 Lincoln Laboratory,

More information

SAT Math Must-Know Facts & Formulas

SAT Math Must-Know Facts & Formulas SAT Mat Must-Know Facts & Formuas Numbers, Sequences, Factors Integers:..., -3, -2, -1, 0, 1, 2, 3,... Rationas: fractions, tat is, anyting expressabe as a ratio of integers Reas: integers pus rationas

More information

Average and Instantaneous Rates of Change: The Derivative

Average and Instantaneous Rates of Change: The Derivative 9.3 verage and Instantaneous Rates of Cange: Te Derivative 609 OBJECTIVES 9.3 To define and find average rates of cange To define te derivative as a rate of cange To use te definition of derivative to

More information

Digital evolution Where next for the consumer facing business?

Digital evolution Where next for the consumer facing business? Were next for te consumer facing business? Cover 2 Digital tecnologies are powerful enablers and lie beind a combination of disruptive forces. Teir rapid continuous development demands a response from

More information

Theoretical calculation of the heat capacity

Theoretical calculation of the heat capacity eoretical calculation of te eat capacity Principle of equipartition of energy Heat capacity of ideal and real gases Heat capacity of solids: Dulong-Petit, Einstein, Debye models Heat capacity of metals

More information

CHAPTER 8: DIFFERENTIAL CALCULUS

CHAPTER 8: DIFFERENTIAL CALCULUS CHAPTER 8: DIFFERENTIAL CALCULUS 1. Rules of Differentiation As we ave seen, calculating erivatives from first principles can be laborious an ifficult even for some relatively simple functions. It is clearly

More information

schema binary search tree schema binary search trees data structures and algorithms 2015 09 21 lecture 7 AVL-trees material

schema binary search tree schema binary search trees data structures and algorithms 2015 09 21 lecture 7 AVL-trees material scema binary searc trees data structures and algoritms 05 0 lecture 7 VL-trees material scema binary searc tree binary tree: linked data structure wit nodes containing binary searc trees VL-trees material

More information

WORKING PAPER SERIES THE INFORMATIONAL CONTENT OF OVER-THE-COUNTER CURRENCY OPTIONS NO. 366 / JUNE 2004. by Peter Christoffersen and Stefano Mazzotta

WORKING PAPER SERIES THE INFORMATIONAL CONTENT OF OVER-THE-COUNTER CURRENCY OPTIONS NO. 366 / JUNE 2004. by Peter Christoffersen and Stefano Mazzotta WORKING PAPER SERIES NO. 366 / JUNE 24 THE INFORMATIONAL CONTENT OF OVER-THE-COUNTER CURRENCY OPTIONS by Peter Cristoffersen and Stefano Mazzotta WORKING PAPER SERIES NO. 366 / JUNE 24 THE INFORMATIONAL

More information

Global Sourcing of Complex Production Processes

Global Sourcing of Complex Production Processes Global Sourcing of Complex Production Processes December 2013 Cristian Scwarz Jens Suedekum Abstract We develop a teory of a firm in an incomplete contracts environment wic decides on te complexity, te

More information

The Trip Scheduling Problem

The Trip Scheduling Problem The Trip Scheduling Problem Claudia Archetti Department of Quantitative Methods, University of Brescia Contrada Santa Chiara 50, 25122 Brescia, Italy Martin Savelsbergh School of Industrial and Systems

More information

Large-scale Virtual Acoustics Simulation at Audio Rates Using Three Dimensional Finite Difference Time Domain and Multiple GPUs

Large-scale Virtual Acoustics Simulation at Audio Rates Using Three Dimensional Finite Difference Time Domain and Multiple GPUs Large-scale Virtual Acoustics Simulation at Audio Rates Using Tree Dimensional Finite Difference Time Domain and Multiple GPUs Craig J. Webb 1,2 and Alan Gray 2 1 Acoustics Group, University of Edinburg

More information

Torchmark Corporation 2001 Third Avenue South Birmingham, Alabama 35233 Contact: Joyce Lane 972-569-3627 NYSE Symbol: TMK

Torchmark Corporation 2001 Third Avenue South Birmingham, Alabama 35233 Contact: Joyce Lane 972-569-3627 NYSE Symbol: TMK News Release Torcmark Corporation 2001 Tird Avenue Sout Birmingam, Alabama 35233 Contact: Joyce Lane 972-569-3627 NYSE Symbol: TMK TORCHMARK CORPORATION REPORTS FOURTH QUARTER AND YEAR-END 2004 RESULTS

More information