Understanding Elementary Landscapes

Size: px
Start display at page:

Download "Understanding Elementary Landscapes"

Transcription

1 Understanding Elementary Landsapes L. Darrell Whitley Andrew M. Sutton Adele E. Howe Department of Computer Siene Colorado State University Fort Collins, CO 853 ABSTRACT The landsape formalism unites a finite andidate solution set to a neighborhood topology and an objetive funtion. This onstrut an be used to model the behavior of loal searh on ombinatorial optimization problems. A landsape is elementary when it possesses a unique property that results in a relative smoothness and deomposability to its struture. In this paper we explain elementary landsapes in terms of the expeted value of solution omponents whih are transformed in the proess of moving from an inumbent solution to a neighboring solution. We introdue new results about the properties of elementary landsapes and disuss the pratial impliations for searh algorithms. Categories and Subjet Desriptors I..8 [Artifiial Intelligene]: Problem Solving, Control Methods, and Searh General Terms Theory Keywords Combinatorial Optimization, Loal Searh. INTRODUCTION Grover [9] originally made the observation that the behavior of loal searh on some NP-Hard problems ould be modeled using a differene equation: a disrete analogue of the ontinuous wave equation that desribes wave propagation in physis. This disrete wave equation an be expressed as an eigendeomposition of the neighborhood transition matrix under a partiular loal searh operator for a ertain lass of problems. Stadler [] named this lass of problems elementary landsapes and energetially explored properties of these Permission to make digital or hard opies of all or part of this work for personal or lassroom use is granted without fee provided that opies are not made or distributed for profit or ommerial advantage and that opies bear this notie and the full itation on the first page. To opy otherwise, to republish, to post on servers or to redistribute to lists, requires prior speifi permission and/or a fee. GECCO 8, July 6, 8, Atlanta, Georgia, USA. Copyright 8 ACM /8/7...$5.. landsapes. Exept for several notable examples, little researh and exploration has been onduted for some time on this lass. There is also a pereption that elementary landsapes are in fat quite omplex, or at least that the tools needed to understand elementary landsapes are reondite. This paper has two goals. One goal is to explain and understand elementary landsapes from a simpler perspetive. In pratie, the wave equation disovered by Grover is a onsequene of the deomposability of omponents that make up a solution. In many ases, onstraints in the relationships among these omponents within the neighborhood of an inumbent solution fore Grover s equation to hold. The other goal of this paper is to show that this simplified view permits new insights and intuitions about elementary landsapes. We illustrate this by introduing several new proofs about properties of elementary landsapes. The remainder of the paper is organized as follows. In the next setion, we explain the relationship between objetive funtion omponents that hold on many well-studied problems that ause the wave equation to be obeyed. We introdue this relationship in terms of expeted value of the evaluation of solutions seleted uniformly at random from the neighborhood of a fixed point. We derive the wave equation for symmetri TSP using -opt. In Setion 3, we disuss some salability impliations of the wave equation and show that the expeted hange in value an always be bounded. In Setion 4 we prove some properties about plateaus and loal optima on elementary landsapes and disuss the impliations for searh algorithms. In Setion 5 we onlude the paper.. ELEMENTARY LANDSCAPES We introdue the wave equation in terms of the expeted value of the objetive funtion evaluation at a solution drawn randomly from the loal searh neighborhood. For a given instane to a ombinatorial problem, we have a set of all possible solutions whih we will refer to as the set of andidate solutions. The nature of the andidate solution set is dependent on the problem to solve. We define the objetive funtion f as a map f : R and without loss of generality assume we must find the element of that minimizes f. We define a neighborhood operator as a funtion N that maps elements of to elements of its power set N : P(). The neighborhood operator is determined by the heuristi searh method in question. We will only examine neighborhood operators that apply to searh proesses that keep a single andidate solution. Population based searhes

2 that allow reombination, i.e. sharing partial omponents of solutions, admit more omplex strutures [4]. In this paper we shall onern ourselves only with neighborhoods that are symmetri (i.e. y N(x) x N(y)) and regular (i.e. d = N(x) for all x and some onstant d). Barnes et al. [] have extended the notion of elementary landsapes to non-symmetri and non-regular neighborhoods. The landsape for a ombinatorial problem instane is defined by a triple (, N, f): its andidate solution set, the neighborhood operator whih imposes a onnetive struture on the andidate solution points, and the objetive funtion that assigns a value to eah point. This landsape formalism was originally introdued by Wright [6] in the ontext of evolutionary dynamis but an be extended to any funtion over a disrete domain with a orresponding neighborhood : the ontext in whih we are interested here. A landsape is elementary when the objetive funtion f is an eigenfuntion of the Laplaian of the graph indued by the neighborhood operator [9, ]. This property an be expressed more onretely as an equation relating the expeted value of the objetive funtion at a uniformly drawn random element from a andidate solution s set of neighbors. Throughout this paper, we will denote x as some fixed but arbitrary element of and y as a element of N(x) drawn uniformly at random. We will also denote as f the mean value of f over all solutions in. On an elementary landsape we have E[f(y)] = f(x) + k d ( f f(x)) () for some k whih is fixed for the entire landsape. Sine y is drawn uniformly at random, we also have E[f(y)] = f(z) () d z N(x) In other words, the expeted value of the objetive funtion evaluation of a neighbor y is always equal to the average value of the evaluation over all solutions z in the neighborhood.. Intraomponents and interomponents Several interesting onsequenes arise from Equation (). First, we investigate what relationships exist in pratie that allow this wave equation to hold. In most pratial elementary landsapes studied, the objetive funtion for a partiular andidate solution an be written as a linear ombination of a subset of a olletion of omponents. Examples of solution omponents are edge weights in graph problems suh as TSP or Min-Cut partitioning, or ollisions in onstraint satisfation problems suh as graph oloring. In suh problems, a andidate solution x speifies this subset for inlusion in the sum. Let C be a set of real valued omponents ( C is polynomial in problem size). Then there exists C x C suh that f(x) = C x We refer to the set C x as the intraomponents of a solution x, and the set C C x as the interomponents of x. When a loal searh algorithm moves from an inumbent solution x to a neighboring solution y N(x), an exhange of these omponents is made. In partiular, a subset of the intraomponents out C x is removed and a subset of the interomponents in C C x is added. In other words f(y) = f(x) + out in If we fix x arbitrary and let y be a uniform random move or mutation obtained by one appliation of the neighborhood operator ating on x, we an ompute an expeted value for the objetive funtion f(y) at y. " E[f(y)] = E f(x) # + out in " # " # = f(x) E + E out in We ompute the expeted value by uniformly sampling all the intraomponents for potential removal and all the interomponents for potential addition. A landsape thus satisfies Equation () when the following relationship holds for all x. " # " # E E = k d ( f f(x)) in out The existene of omponents that satisfy this relationship is a suffiient but not neessary ondition for a landsape to be elementary.. Case study: TSP under -opt A number of NP-hard optimization problems have been shown to satisfy Grover s wave equation. As with loal searh, the move operator is ritial. The following is an inexhaustive list of elementary landsapes.. The symmetri Traveling Salesman Problem under - exhange [9], -opt and 3-exhange, [5].. The antisymmetri Traveling Salesman Problem under -opt and -exhange [3] and the weakly-symmetri Traveling Salesman Problem [], and variants of the multiple Traveling Salesman Problem [6]. 3. The Min-Cut Graph Partitioning problem with a simple exhange of two verties aross the ut [9]. 4. Graph Coloring with the neighborhood being a hange in olor at any vertex in the graph [9]. 5. Weight Partitioning over N objets. Eah objet is assigned a sign S i (, ) with the neighborhood being a hange in sign [9]. We will derive the expeted value wave equation for the TSP under -opt and examine some of the onsequenes. Suppose G(V, E) is a omplete weighted undireted graph on n verties (ities). Every vertex pair v i, v j V has an edge e i,j E. Let w i,j be the weight (or ost or distane) assoiated with edge e i,j. The solution spae thus is omprised of all valid Hamiltonian yles in G. In partiular a given x speifies a permutation on n points (x, x,..., x n ). Without loss of generality we fix the home ity at n.! n f(x) = w xi,x i+ + w xn,n + w n,x i=

3 (,,3,4,5) (,3,,4,5) Figure : A andidate tour (left) and one of its -opt neighbors (right) obtained by deleting edges (, ) and (3, 4) and adding edges (, 3) and (, 4). The orresponding permutation representation is shown below eah graph. This means that the evaluation funtion is deomposable into the osts assoiated with every possible edge. The omponent set C is exatly the set of real-valued edge weights w i,j. The intraomponents of a solution x are those edge weights used in the alulation of f(x); the interomponents are the edge weights not in the tour speified by x. In Figure a 6 ity TSP is shown. The tour x = ( ) is shown on the left and the tour y = ( ) is shown on the right. The edges {e,, e,3, e 3,4, e 4,5, e 5,6, e 6, } are the intraomponents of x. All possible edges that are not intraomponents of x are by definition interomponents of x. These are the lighter interior dashed lines in the figure. To ompute f, the average over all possible solutions, we also need to know the probability of eah edge ourring in any partiular solution. In this ase, that probability is uniform. Sine a tour length is n and there are n(n )/ possible edges it follows that f = n w i,j n(n )/ and by simple algebra f = n w i,j Now, given an inumbent solution x we need to ompute the expeted ost over all of the neighbors of x. The deletion of intraomponents of x and the addition of interomponents of x in effet onnet x to all of its neighborhood. To alulate the expeted value of a neighbor of x we examine the subset of intraomponents that must be removed ( out ) and the subset of interomponents that must be added ( in ). All intraomponents of x are uniformly removed when onstruting the set of neighbors of x; all of the interomponents of x are then uniformly added in when onstruting the set of neighbors of x. Under -opt, exatly two edges hange in eah neighbor. The onstrution of eah neighbor of x therefore requires deleting two edges from x. Thus, omponents (edges) are deleted with probability /n. Note that the sum of all the intraomponents is simply the tour length whih is given by f(x). Then the expeted value of the sum of intraomponents removed is E " out # = n f(x) The entire ost matrix has n(n )/ omponents and x has n omponents. This means that the number of interomponents is given by (n(n )/) n = n(n 3)/ Furthermore, the sum of all the interomponents is simply the sum of all the edges in the graph G minus the sum of all the intraomponents f(x) w i,j f(x) Sine two interomponents must be added, we have the expeted value of the sum of interomponents added " # E w i,j f(x) A n(n 3)/ in So, fixing the inumbent solution at an arbitrary x, the expeted value of a randomly seleted neighbor y N(x) an be written as " # " # E[f(y)] = f(x) E + E (3) out in = f(x) n f(x) + n(n w i,j f(x) A Beause the probabilities are uniform we an look at the onstrution of eah neighbor as an independent random event. Thus, two edges are deleted from x and two edges are inserted to reate a neighbor y. In reality, the edges that are deleted determine the edges that are inserted, but this an be ignored by looking at the neighborhood as an aggregate. Now we derive Equation (). Note that w i,j = n f and therefore rewriting Equation (3): E[f(y)] = f(x) n f(x) w i,j f(x) A n(n 3)/ = f(x) «n f(x) + n f f(x) n(n 3)/ = f(x) n f(x) + n n(n 3)/ f n(n 3)/ f(x) = f(x) (n 3)/ + n(n 3)/ f(x) + n n(n 3)/ f = f(x) n n(n 3)/ f(x) + n n(n 3)/ f = f(x) + n n(n 3)/ ( f f(x)) = f(x) + k d ( f f(x))

4 Thus we have Equation () with k = n and d = n(n 3)/. Here d is, of ourse, by definition the neighborhood size for lassi -opt. Note that when f(x) < f, the seond term is always positive and E[f(y)] is always greater than f(x). On the other hand, when f(x) > f the seond term beomes negative and the expeted value of a random neighbor is less than f(x). 3. SCALABILITY Sine we an exatly ompute E[f(y)] for a randomly seleted neighbor y of x we an also ask a fundamental question about salability. How does the differene between f(x) and E[f(y)] sale with problem size? We an prove using simple algebra that the differene sales in a linear fashion. This is intuitive: for large problems, f(x) and E[f(y)] are loser to eah other relative to f and the hange dereases linearly as a funtion of problem size. In any one problem, the differene between f(x) and E[f(y)] grows smaller as we approah f and inreases as we move away from f. To understand this better, assume that a TSP instane with n verties is normalized by f/n. In effet, this normalization is suh that the average edge length is. Thus, the normalized average solution is = n. This also lets us f f/n ompute bounds on f(x) and E[f(y)] relative to a normalized edge length of. Assuming we are looking for the best (minimal) solutions, onsider the ase where f(x) < E[f(y)] < f To better understand the differene E[f(y)] f(x) we will use a normalization of the ost matrix suh that f = n = P n w i,j n(n )/ w i,j n(n )/ = Or more onisely, f = n w i,j = We an then ompute the differene between E[f(y)] f(x) and obtain the following bound. E[f(y)] f(x) = f(x) + n n(n 3)/ ( f f(x)) f(x) n = (n f(x)) n(n 3)/ n = n(n 3)/ n n n(n 3)/ f(x) = n (n 3)/ n f(x) (n 3)/ n «n = f(x) «n 3 n As f(x) approahes zero relative to f = n the quantity E[f(y)] f(x) is bounded by (whih for large n n n 3 is approximately.); there are of ourse real limits on how small f(x) an be. Around f(x) = n/, the normalized quantity E[f(y)] f(x) is approximately.. As f(x) approahes the value f = n the differene between E[f(y)] f(x) approahes. Tables and report numerial alulations of f(x) and E[f(y)] and their differenes varying both f(x) and n aording to Equation (). n f(x) E[f(y)] E[f(y)] f(x) Table : Calulations for E[f(y)] and f(x) < n varying f(x). n f(x) =.3 f E[f(y)] E[f(y)] f(x) Table : Calulations for E[f(y)] and f(x) < n varying n. To illustrate the effet using real data, we sampled solutions from symmetri instanes obtained from the TSPLIB library maintained by Gerhard Reinelt at Heidelberg University. On eah instane we omputed a normalization fator q as follows. q = n(n ) P w i,j We define the normalized objetive funtion as the weighted tour length sum multiplied by the normalization fator q. Clearly, the mean value of the normalized instanes is n. On eah normalized instane we sampled points below f and alulated the objetive funtion value of the sampled point, the theoretial expeted value as given by Equation () and exatly one uniform random sample of the neighborhood of eah sampled point. We report the satter plot of the theoretial predition vs. the atual sampled neighbor value for five seleted instanes in Figure. Eah seleted instane has a different size n. In Figure 3 we report the expeted differene vs. the sampled differene on these five instanes. Figure 4 shows this differene plot for every (normalized) symmetri TSP instane in the TSPLIB with points sampled per instane. The expeted value of solution differene is bounded below by zero and above by (in the limit as n ). This is marked on the plots by dotted lines. In these experiments, we are observing a sampling proess from a distribution that follows the theoretial expeted value given by Equation (). The plots show us the variane in the random variables we are sampling. 4. DISCUSSION There are a number of interesting observations about this lass of landsapes that impat loal searh. In our TSP ase study, we saw that < k = (n ) <. Does this d n(n )/ software/tsplib95/

5 ...5 E[f(y)] f(x) 8.5. f(y) 4.5 pr7.tsp pr4.tsp pr36.tsp pr44.tsp pr5.tsp Figure : Theoretial predition of neighbor value vs. sampled neighbor value for sampled sub-mean points on five (normalized) instanes in TSPLIB. 4 Figure 4: Expeted differene vs. sampled differene of sub-mean points and neighbors on all normalized instanes in TSPLIB. Dotted lines represent bounds on expeted value. Expeted value is bounded above by and below by..5. hold in general for other problem lasses? Barnes et al. [] define two families of elementary landsapes with respet to onstraints on the possible eigenvalues of the graph Laplaian. Smooth elementary landsapes obey the above onstraint suh that the value kd lies between and. On the other hand, on rugged elementary landsapes the value of k are not onstrained to the unit interval, and some rather d surprising results are a onsequene. We are unaware of any well-studied neighborhood operator and problem lass in the NP-hard set that orresponds to a rugged landsape. Thus our results apply only to smooth landsapes.. 4. Plateaus and loal optima The following observations were made by Codenotti and Margara [5]..5 E[f(y)] f(x) f(y) f(x) E[f(y)]. If f (x) < f then f (x) < E[f (y)] < f. If f (x) = E[f (y)] then f (x) = f = f (y) If f (x) > f then f (x) > E[f (y)] > f 4 4 f(y) f(x) Figure 3: Expeted differene vs. sampled differene of sub-mean points and neighbors on five normalized instanes. Dotted lines represent bounds on expeted value. Expeted value is bounded above by and below by. These results undersore Grover s [9] observation that all loal minima lie below the average funtion value of the searh spae. Furthermore, the results state that ertain types of plateaus annot exist on elementary landsapes. A plateau is a set P of andidate solutions in suh that for all a, b P, f (a) = f (b) and there is a path (a = x, x,..., xk = b) suh that xi+ N (xi ). Plateaus (also known as neutral networks) are strutural features that arise in many ombinatorial problems [8,,, 3]. Plateaus pose an interesting hallenge to loal searh sine they prelude gradient information about improving movement.

6 As Codenotti and Margara [5] originally pointed out, on an elementary landsape, if all neighbors of a andidate solution share the evaluation of that solution, then we say the landsape is flat: every andidate solution belongs to the same plateau (ondition above). However, the wave equation imposes some onstraints on plateaus in non-degenerate ases as well. Consider a solution x that belongs to a plateau P. Then every solution on P will have the same neighborhood expeted value. This is easy to see sine all solutions in P have an objetive funtion evaluation equal to f(x) and obey Equation (). Lemma. For a plateau P on a (non-flat) elementary landsape, if x P has only equal and disimproving neighbors, then there annot exist a solution z P with only equal and improving neighbors. Proof. Let x, z P for some plateau P. Suppose for ontradition that x has only (both) equal and disimproving neighbors and z has only (both) equal and improving neighbors. Let y x and y z be neighbors drawn uniformly at random from the neighborhood of x and z respetively. Sine f(x) = f(z) (by definition of plateau), we must have E[f(y x)] = E[f(y z)] sine Equation () holds. If we assume minimization, the average value of the neighbors of x must be stritly greater than than the average value of the neighbors of z whih ontradits the expeted value of a uniform random seletion is equal for both neighborhoods. Note that Lemma does not prevent a solution on the same plateau as x from having both improving and disimproving neighbors. However, in this ase, the evaluation of these neighbors must have the same expeted value as those in the neighborhood of x. We define a loal minimum as a solution x min suh that f(y) f(x min ) for all y N(x min ). A loal maximum is defined analogously. It is important to point out that this definition is distint from other definitions of loal extrema in landsapes that ontain plateaus (e.g. Frank et al. [8]). Grover [9] showed that, on elementary landsapes, if x min is a loal minimum and x max is a loal maximum, then f(x min ) f f(x max ). We assume that, for all x, all f(x) >. If this does not hold, the values of the objetive funtion an be shifted by a onstant value without violating Equation (). Let x min be a loal minimum. If we sample y N(x min ) uniformly at random, we an express the expeted value of y in terms of an average over the elements of N(x min) E[f(y)] = d (S eq + S gr ) (4) where S eq is the sum of the value of equal or neutral moves: those y N(x min) suh that f(y) = f(x min). S gr is the sum of the value of the neighbors of x min that are stritly greater in objetive evaluation: those y N(x min ) suh that f(y) > f(x). Lemma. Let a and b be two solutions on a plateau P with no improving neighbors. Let n eq (a) and n eq (b) denote the number of equal neighbors of a and b respetively. Without loss of generality, suppose n eq (a) n eq (b). Then, assuming minimization, the sum of all disimproving moves in the neighborhood of b is greater than or equal to the sum of all disimproving moves in the neighborhood of a. Proof. We first derive an expression for the number of equal moves in an arbitrary solution x min. Note that at x min, S eq = n eq(x min)f(x min). By Equations () and (4) we have d (Seq + Sgr) = f(xmin) + k d ( f f(x min)) S eq + S gr = df(x min ) + k( f f(x min )) n eq(x min)f(x min) + S gr = df(x min) + k( f f(x min)) n eq (x min ) = d + k( f f(x min )) f(x min ) n eq(a) n eq(b) = " S gr f(x min ) Now onsider the differene of neutral moves among a and b.» d + k( f f(a)) Sa gr f(a) f(a) d + k( f f(b)) f(b) = Sb gr S a gr f(a) Sb gr f(b) Where S a gr and S b gr denote the sum over all neighbors with stritly greater objetive evaluation for a and b respetively. Sine we assumed that f(x) for all x is positive and that n eq(a) n eq(b) is non-negative, we have and this proves the result. S b gr S a gr A similar result holds for all loal maxima on plateaus. 4. Impliations for searh An interesting onsequene of the expeted value version of the wave equation is that a loal searh algorithm on an elementary landsape an always ompute the expeted value of a random solution in its neighborhood without expanding a single solution in this neighborhood. Furthermore, we an expand a partial neighborhood and predit the expeted value of the remaining neighborhood. Suppose M N(x) is a subset of the neighborhood of a point x. Then the expeted value of a point r uniformly drawn from the remaining neighbors in N(x) an be written as E[f(r)] f(z) f(z) A d M z N(x) z M = d M d f(x) + k d ( f f(x)) # «! f(z) z M by Equations () and (). Let the expeted improvement be D(r; x) = E[f(r)] f(x) = d M f(x) d f(x) + k «d ( f f(x)) z M f(z) This is the expeted differene in value if we move (or mutate) at uniform random to an element in the remaining neighbor set N(x) M. Now suppose x and x are two solutions in. Furthermore, suppose M and M are two partial expansions!

7 (.977)n (.894)n x f(x) = (.895)n (.835)n (.8965)n (.8)n Expeted value over entire neighborhood Average value of partial neighborhood x Expeted value of remaining neighborhood f(x) = (.884)n (.96)n n = 7 Figure 5: A stylized sketh of partial and whole neighborhood relationships for two solutions x and x. The average evaluation of the partial neighborhood of x is worse than x ; the expeted evaluation of remaining neighbors of x are better than those of x. Numerial data were generated using two random solutions from (normalized) 7-ity TSP gr7.tsp instane. of the neighborhoods of x and x. If r and r are randomly drawn elements from the remaining neighborhoods N(x ) M and N(x ) M, then we an ompute the expeted values of r and r above and the expeted improvement D(r ; x ) and D(r ; x ) for eah. It is learly more promising to ontinue expanding the neighborhood orresponding to the better of the two expeted improvements (i.e. smallest, if we are minimizing): this is more likely to yield a better hange in value. This idea is illustrated in Figure 5 where the partial neighborhood that results in an average value worse than the expeted value of the entire neighborhood yields a better expeted value over the remaining neighborhood. On an elementary landsape, neighborhoods an be onsidered rather loalized. From the omponent point of view, neighbors are very similar in struture to the urrent inumbent solution. Neighbors also have similar objetive funtion values (on average). The neighborhood does not support any mehanism that allows sampling in more distant parts of the searh spae. This makes loal searh on these landsapes fundamentally myopi. It should be pointed out this is not true of all forms of loal searh. The neighborhoods used by Gray- and binary-oded representation of parameter optimization problems do a better job of systematially globally sampling in distant parts of the searh spae. These neighbors are used by many forms of geneti algorithms. Pattern Searh is also better at systematially globally sampling in distane parts of the searh spae. Stadler [3] showed that a landsape (with a symmetri neighborhood operator) is elementary if and only the time series generated by a random walk on the landsape using transitions defined by the neighborhood operator is an AR() proess: an observation that was later generalized by Dimova et al. [7]. This observation, along with Grover s results about loal extrema lying above or below the mean solution value, imply that elementary landsapes desribe a lass of relatively smooth and strutured problems. When ompared to other onventional ombinatorial problems, the TSP will be omparatively well-behaved. As Equation () predits, andidate solutions in the TSP will have a onstant relationship with the average neighborhood value (with respet to the mean). This is not neessarily a pervasive feature in ommonly studied ombinatorial problems. Consider the mean-entered ratio between the evaluation of an arbitrary solution x and its average neighborhood value. f(x) R(x) = f (/d) P y N(x) f(y) f Suppose x lies on an elementary landsape. Equations () and () give us R elem (x) = f(x) f f(x) + k d ( f f(x)) f = d d k Thus the ratio is onstant for landsapes that obey Equation (). To ontrast this relationship empirially with other ombinatorial problems, we seleted an instane of the permutation flowshop sheduling problem (FSP) under the shift neighborhood [5], and the asymmetri (ATSP) under the exhange neighborhood. On eah landsape, we generated random solutions and alulated the value of R(x), Equation (5), for eah solution x. The values are plotted in Figure 6 for ar3.fsp: a 5 flowshop problem instane originally published by Carlier [4] and ontained in the online OR-LIBRARY. the pr5.tsp and ali535.tsp (symmetri) TSP instanes and the ft53.atsp ATSP instane from TSPLIB. The ratio is onstant for the TSP problems, but varies dramatially for the ATSP and FSP problems. We an therefore assume that searh algorithms that perform ompetitively on TSP are likely to be exploiting the partial deomposability of the landsape. On the one hand, this implies that suh an algorithm may easily be adaptable to other well known elementary problems. On the other hand, searh algorithms that are benhmarked on elementary problem lasses may not generalize well to omposite, non-elementary landsapes. 5. CONCLUSION The elementary property of ertain landsapes introdues several interesting onstraints on the behavior of loal searh algorithms. Landsapes with this property tend to be relatively smooth when ontrasted to other ombinatorial optimization problems with well-studied loal move operators. In this paper we have explained the elementary property in terms of neighborhood sampling and observed some of its onsequenes on real world instanes. The onstraints imposed by the wave equation preludes the existene of ertain plateau strutures, and fores ertain relationships between loal optima with the same evaluation. The ele- (5)

8 R(x) pr5.tsp ali535.tsp ft53.atsp ar3.fsp samples Figure 6: Ratio R(x) of mean-entered objetive and mean-entered average of neighborhood objetive for random solutions eah on two elementary TSP instanes, an ATSP instane, and a flowshop sheduling instane. mentary property also allows us to make preditions about the value of partial or full neighborhoods during searh. The Traveling Salesman Problem is widely used as a benhmark to testing new heuristi searh algorithms. But, there are many properties of TSP that make it unlike many other ombinatorial optimization problems. The wave equation and the assoiated haraterization by onstituent solution omponents presented in this paper make it lear that the TSP is in some sense partially deomposable. This allows for the partial update of the ost funtion. It also means that near optimal solutions an be found by methods that exploit the partial deomposability of the problem. Any method that heuristially exploits information about the individual omponents of the ost matrix may be a risk of over speialization. The results may not generalize well beyond the TSP, or at least beyond the family of elementary landsapes. 6. ACKNOWLEDGMENTS This researh was sponsored by the Air Fore Offie of Sientifi Researh, Air Fore Materiel Command, USAF, under grant number FA The U.S. Government is authorized to reprodue and distribute reprints for Governmental purposes notwithstanding any opyright notation thereon. [3] L. Barnett. Netrawling optimal evolutionary searh with neutral networks. In Proeedings of the Congress of Evolutionary Computation (CEC), pages 3 37, Seoul, Korea, May. [4] J. Carlier. Ordonnanements a ontraintes disjontives. R.A.I.R.O. Reherhe operationelle/operations Researh, :333 35, 978. [5] B. Codenotti and L. Margara. Loal properties of some NP-omplete problems. Tehnial Report TR 9-, International Computer Siene Institute, Berkeley, CA, 99. [6] B. Colletti and J. W. Barnes. Linearity in the traveling salesman problem. Applied Mathematis Letters, 3(3):7 3, April. [7] B. Dimova, J. Wesley Barnes, and E. Popova. Arbitrary elementary landsapes & ar() proesses. Appl. Math. Lett., 8(3):87 9, 5. [8] J. Frank, P. Cheeseman, and J. Stutz. When gravity fails: Loal searh topology. Journal of Artifiial Intelligene Researh, 7:49 8, 997. [9] L. K. Grover. Loal searh and the loal struture of NP-omplete problems. Operations Researh Letters, :35 43, 99. [] C. M. Reidys and P. F. Stadler. Neutrality in fitness landsapes. Applied Mathematis and Computation, 7:3 35,. [] A. Solomon, J. W. Barnes, S. P. Dokov, and R. Aevedo. Weakly symmetri graphs, elementary landsapes, and the tsp. Appl. Math. Lett., 6(3):4 47, 3. [] P. F. Stadler. Toward a theory of landsapes. In R. Lopéz-Peña, R. Capovilla, R. Garía-Pelayo, H. Waelbroek, and F. Zertruhe, editors, Complex Systems and Binary Networks, pages Springer Verlag, 995. [3] P. F. Stadler. Landsapes and their orrelation funtions. Journal of Mathematial Chemistry, : 45, 996. [4] P. F. Stadler and G. P. Wagner. Algebrai theory of reombination spaes. Evolutionary Computation, 5(3):4 75, 997. [5] É. Taillard. Some effiient heuristi methods for the flow shop sequening problem. European Journal of Operations Researh, 47:65 74, 99. [6] S. Wright. The roles of mutation, inbreeding, rossbreeding, and seletion in evolution. In Proeedings of the Sixth Congress of Genetis, volume, REFERENCES [] L. Barbulesu, A. E. Howe, L. D. Whitley, and M. Roberts. Understanding algorithm performane on an oversubsribed sheduling appliation. Journal of Artifiial Intelligene Researh, 7:577 65, De 6. [] J. W. Barnes, B. Dimova, and S. P. Dokov. The theory of elementary landsapes. Applied Mathematis Letters, 6(3): , April 3.

Maximum Entropy and Exponential Families

Maximum Entropy and Exponential Families Maximum Entropy and Exponential Families April 9, 209 Abstrat The goal of this note is to derive the exponential form of probability distribution from more basi onsiderations, in partiular Entropy. It

More information

Millennium Relativity Acceleration Composition. The Relativistic Relationship between Acceleration and Uniform Motion

Millennium Relativity Acceleration Composition. The Relativistic Relationship between Acceleration and Uniform Motion Millennium Relativity Aeleration Composition he Relativisti Relationship between Aeleration and niform Motion Copyright 003 Joseph A. Rybzyk Abstrat he relativisti priniples developed throughout the six

More information

The Hanging Chain. John McCuan. January 19, 2006

The Hanging Chain. John McCuan. January 19, 2006 The Hanging Chain John MCuan January 19, 2006 1 Introdution We onsider a hain of length L attahed to two points (a, u a and (b, u b in the plane. It is assumed that the hain hangs in the plane under a

More information

Nonreversibility of Multiple Unicast Networks

Nonreversibility of Multiple Unicast Networks Nonreversibility of Multiple Uniast Networks Randall Dougherty and Kenneth Zeger September 27, 2005 Abstrat We prove that for any finite direted ayli network, there exists a orresponding multiple uniast

More information

Complexity of Regularization RBF Networks

Complexity of Regularization RBF Networks Complexity of Regularization RBF Networks Mark A Kon Department of Mathematis and Statistis Boston University Boston, MA 02215 mkon@buedu Leszek Plaskota Institute of Applied Mathematis University of Warsaw

More information

Lightpath routing for maximum reliability in optical mesh networks

Lightpath routing for maximum reliability in optical mesh networks Vol. 7, No. 5 / May 2008 / JOURNAL OF OPTICAL NETWORKING 449 Lightpath routing for maximum reliability in optial mesh networks Shengli Yuan, 1, * Saket Varma, 2 and Jason P. Jue 2 1 Department of Computer

More information

Where as discussed previously we interpret solutions to this partial differential equation in the weak sense: b

Where as discussed previously we interpret solutions to this partial differential equation in the weak sense: b Consider the pure initial value problem for a homogeneous system of onservation laws with no soure terms in one spae dimension: Where as disussed previously we interpret solutions to this partial differential

More information

Sensitivity Analysis in Markov Networks

Sensitivity Analysis in Markov Networks Sensitivity Analysis in Markov Networks Hei Chan and Adnan Darwihe Computer Siene Department University of California, Los Angeles Los Angeles, CA 90095 {hei,darwihe}@s.ula.edu Abstrat This paper explores

More information

A NETWORK SIMPLEX ALGORITHM FOR THE MINIMUM COST-BENEFIT NETWORK FLOW PROBLEM

A NETWORK SIMPLEX ALGORITHM FOR THE MINIMUM COST-BENEFIT NETWORK FLOW PROBLEM NETWORK SIMPLEX LGORITHM FOR THE MINIMUM COST-BENEFIT NETWORK FLOW PROBLEM Cen Çalışan, Utah Valley University, 800 W. University Parway, Orem, UT 84058, 801-863-6487, en.alisan@uvu.edu BSTRCT The minimum

More information

A Characterization of Wavelet Convergence in Sobolev Spaces

A Characterization of Wavelet Convergence in Sobolev Spaces A Charaterization of Wavelet Convergene in Sobolev Spaes Mark A. Kon 1 oston University Louise Arakelian Raphael Howard University Dediated to Prof. Robert Carroll on the oasion of his 70th birthday. Abstrat

More information

Packing Plane Spanning Trees into a Point Set

Packing Plane Spanning Trees into a Point Set Paking Plane Spanning Trees into a Point Set Ahmad Biniaz Alfredo Garía Abstrat Let P be a set of n points in the plane in general position. We show that at least n/3 plane spanning trees an be paked into

More information

Control Theory association of mathematics and engineering

Control Theory association of mathematics and engineering Control Theory assoiation of mathematis and engineering Wojieh Mitkowski Krzysztof Oprzedkiewiz Department of Automatis AGH Univ. of Siene & Tehnology, Craow, Poland, Abstrat In this paper a methodology

More information

Relativistic Dynamics

Relativistic Dynamics Chapter 7 Relativisti Dynamis 7.1 General Priniples of Dynamis 7.2 Relativisti Ation As stated in Setion A.2, all of dynamis is derived from the priniple of least ation. Thus it is our hore to find a suitable

More information

Average Rate Speed Scaling

Average Rate Speed Scaling Average Rate Speed Saling Nikhil Bansal David P. Bunde Ho-Leung Chan Kirk Pruhs May 2, 2008 Abstrat Speed saling is a power management tehnique that involves dynamially hanging the speed of a proessor.

More information

23.1 Tuning controllers, in the large view Quoting from Section 16.7:

23.1 Tuning controllers, in the large view Quoting from Section 16.7: Lesson 23. Tuning a real ontroller - modeling, proess identifiation, fine tuning 23.0 Context We have learned to view proesses as dynami systems, taking are to identify their input, intermediate, and output

More information

On Component Order Edge Reliability and the Existence of Uniformly Most Reliable Unicycles

On Component Order Edge Reliability and the Existence of Uniformly Most Reliable Unicycles Daniel Gross, Lakshmi Iswara, L. William Kazmierzak, Kristi Luttrell, John T. Saoman, Charles Suffel On Component Order Edge Reliability and the Existene of Uniformly Most Reliable Uniyles DANIEL GROSS

More information

Physical Laws, Absolutes, Relative Absolutes and Relativistic Time Phenomena

Physical Laws, Absolutes, Relative Absolutes and Relativistic Time Phenomena Page 1 of 10 Physial Laws, Absolutes, Relative Absolutes and Relativisti Time Phenomena Antonio Ruggeri modexp@iafria.om Sine in the field of knowledge we deal with absolutes, there are absolute laws that

More information

Methods of evaluating tests

Methods of evaluating tests Methods of evaluating tests Let X,, 1 Xn be i.i.d. Bernoulli( p ). Then 5 j= 1 j ( 5, ) T = X Binomial p. We test 1 H : p vs. 1 1 H : p>. We saw that a LRT is 1 if t k* φ ( x ) =. otherwise (t is the observed

More information

CMSC 451: Lecture 9 Greedy Approximation: Set Cover Thursday, Sep 28, 2017

CMSC 451: Lecture 9 Greedy Approximation: Set Cover Thursday, Sep 28, 2017 CMSC 451: Leture 9 Greedy Approximation: Set Cover Thursday, Sep 28, 2017 Reading: Chapt 11 of KT and Set 54 of DPV Set Cover: An important lass of optimization problems involves overing a ertain domain,

More information

3 Tidal systems modelling: ASMITA model

3 Tidal systems modelling: ASMITA model 3 Tidal systems modelling: ASMITA model 3.1 Introdution For many pratial appliations, simulation and predition of oastal behaviour (morphologial development of shorefae, beahes and dunes) at a ertain level

More information

Hankel Optimal Model Order Reduction 1

Hankel Optimal Model Order Reduction 1 Massahusetts Institute of Tehnology Department of Eletrial Engineering and Computer Siene 6.245: MULTIVARIABLE CONTROL SYSTEMS by A. Megretski Hankel Optimal Model Order Redution 1 This leture overs both

More information

Ordered fields and the ultrafilter theorem

Ordered fields and the ultrafilter theorem F U N D A M E N T A MATHEMATICAE 59 (999) Ordered fields and the ultrafilter theorem by R. B e r r (Dortmund), F. D e l o n (Paris) and J. S h m i d (Dortmund) Abstrat. We prove that on the basis of ZF

More information

The Effectiveness of the Linear Hull Effect

The Effectiveness of the Linear Hull Effect The Effetiveness of the Linear Hull Effet S. Murphy Tehnial Report RHUL MA 009 9 6 Otober 009 Department of Mathematis Royal Holloway, University of London Egham, Surrey TW0 0EX, England http://www.rhul.a.uk/mathematis/tehreports

More information

A Queueing Model for Call Blending in Call Centers

A Queueing Model for Call Blending in Call Centers A Queueing Model for Call Blending in Call Centers Sandjai Bhulai and Ger Koole Vrije Universiteit Amsterdam Faulty of Sienes De Boelelaan 1081a 1081 HV Amsterdam The Netherlands E-mail: {sbhulai, koole}@s.vu.nl

More information

18.05 Problem Set 6, Spring 2014 Solutions

18.05 Problem Set 6, Spring 2014 Solutions 8.5 Problem Set 6, Spring 4 Solutions Problem. pts.) a) Throughout this problem we will let x be the data of 4 heads out of 5 tosses. We have 4/5 =.56. Computing the likelihoods: 5 5 px H )=.5) 5 px H

More information

The Laws of Acceleration

The Laws of Acceleration The Laws of Aeleration The Relationships between Time, Veloity, and Rate of Aeleration Copyright 2001 Joseph A. Rybzyk Abstrat Presented is a theory in fundamental theoretial physis that establishes the

More information

The Concept of Mass as Interfering Photons, and the Originating Mechanism of Gravitation D.T. Froedge

The Concept of Mass as Interfering Photons, and the Originating Mechanism of Gravitation D.T. Froedge The Conept of Mass as Interfering Photons, and the Originating Mehanism of Gravitation D.T. Froedge V04 Formerly Auburn University Phys-dtfroedge@glasgow-ky.om Abstrat For most purposes in physis the onept

More information

Product Policy in Markets with Word-of-Mouth Communication. Technical Appendix

Product Policy in Markets with Word-of-Mouth Communication. Technical Appendix rodut oliy in Markets with Word-of-Mouth Communiation Tehnial Appendix August 05 Miro-Model for Inreasing Awareness In the paper, we make the assumption that awareness is inreasing in ustomer type. I.e.,

More information

Math 151 Introduction to Eigenvectors

Math 151 Introduction to Eigenvectors Math 151 Introdution to Eigenvetors The motivating example we used to desrie matrixes was landsape hange and vegetation suession. We hose the simple example of Bare Soil (B), eing replaed y Grasses (G)

More information

Optimization of Statistical Decisions for Age Replacement Problems via a New Pivotal Quantity Averaging Approach

Optimization of Statistical Decisions for Age Replacement Problems via a New Pivotal Quantity Averaging Approach Amerian Journal of heoretial and Applied tatistis 6; 5(-): -8 Published online January 7, 6 (http://www.sienepublishinggroup.om/j/ajtas) doi:.648/j.ajtas.s.65.4 IN: 36-8999 (Print); IN: 36-96 (Online)

More information

Estimating the probability law of the codelength as a function of the approximation error in image compression

Estimating the probability law of the codelength as a function of the approximation error in image compression Estimating the probability law of the odelength as a funtion of the approximation error in image ompression François Malgouyres Marh 7, 2007 Abstrat After some reolletions on ompression of images using

More information

Relative Maxima and Minima sections 4.3

Relative Maxima and Minima sections 4.3 Relative Maxima and Minima setions 4.3 Definition. By a ritial point of a funtion f we mean a point x 0 in the domain at whih either the derivative is zero or it does not exists. So, geometrially, one

More information

Analysis of discretization in the direct simulation Monte Carlo

Analysis of discretization in the direct simulation Monte Carlo PHYSICS OF FLUIDS VOLUME 1, UMBER 1 OCTOBER Analysis of disretization in the diret simulation Monte Carlo iolas G. Hadjionstantinou a) Department of Mehanial Engineering, Massahusetts Institute of Tehnology,

More information

LECTURE NOTES FOR , FALL 2004

LECTURE NOTES FOR , FALL 2004 LECTURE NOTES FOR 18.155, FALL 2004 83 12. Cone support and wavefront set In disussing the singular support of a tempered distibution above, notie that singsupp(u) = only implies that u C (R n ), not as

More information

7 Max-Flow Problems. Business Computing and Operations Research 608

7 Max-Flow Problems. Business Computing and Operations Research 608 7 Max-Flow Problems Business Computing and Operations Researh 68 7. Max-Flow Problems In what follows, we onsider a somewhat modified problem onstellation Instead of osts of transmission, vetor now indiates

More information

Tight bounds for selfish and greedy load balancing

Tight bounds for selfish and greedy load balancing Tight bounds for selfish and greedy load balaning Ioannis Caragiannis Mihele Flammini Christos Kaklamanis Panagiotis Kanellopoulos Lua Mosardelli Deember, 009 Abstrat We study the load balaning problem

More information

Probabilistic Graphical Models

Probabilistic Graphical Models Probabilisti Graphial Models David Sontag New York University Leture 12, April 19, 2012 Aknowledgement: Partially based on slides by Eri Xing at CMU and Andrew MCallum at UMass Amherst David Sontag (NYU)

More information

A Unified View on Multi-class Support Vector Classification Supplement

A Unified View on Multi-class Support Vector Classification Supplement Journal of Mahine Learning Researh??) Submitted 7/15; Published?/?? A Unified View on Multi-lass Support Vetor Classifiation Supplement Ürün Doğan Mirosoft Researh Tobias Glasmahers Institut für Neuroinformatik

More information

22.54 Neutron Interactions and Applications (Spring 2004) Chapter 6 (2/24/04) Energy Transfer Kernel F(E E')

22.54 Neutron Interactions and Applications (Spring 2004) Chapter 6 (2/24/04) Energy Transfer Kernel F(E E') 22.54 Neutron Interations and Appliations (Spring 2004) Chapter 6 (2/24/04) Energy Transfer Kernel F(E E') Referenes -- J. R. Lamarsh, Introdution to Nulear Reator Theory (Addison-Wesley, Reading, 1966),

More information

Simplification of Network Dynamics in Large Systems

Simplification of Network Dynamics in Large Systems Simplifiation of Network Dynamis in Large Systems Xiaojun Lin and Ness B. Shroff Shool of Eletrial and Computer Engineering Purdue University, West Lafayette, IN 47906, U.S.A. Email: {linx, shroff}@en.purdue.edu

More information

Wave Propagation through Random Media

Wave Propagation through Random Media Chapter 3. Wave Propagation through Random Media 3. Charateristis of Wave Behavior Sound propagation through random media is the entral part of this investigation. This hapter presents a frame of referene

More information

Computer Science 786S - Statistical Methods in Natural Language Processing and Data Analysis Page 1

Computer Science 786S - Statistical Methods in Natural Language Processing and Data Analysis Page 1 Computer Siene 786S - Statistial Methods in Natural Language Proessing and Data Analysis Page 1 Hypothesis Testing A statistial hypothesis is a statement about the nature of the distribution of a random

More information

max min z i i=1 x j k s.t. j=1 x j j:i T j

max min z i i=1 x j k s.t. j=1 x j j:i T j AM 221: Advaned Optimization Spring 2016 Prof. Yaron Singer Leture 22 April 18th 1 Overview In this leture, we will study the pipage rounding tehnique whih is a deterministi rounding proedure that an be

More information

Singular Event Detection

Singular Event Detection Singular Event Detetion Rafael S. Garía Eletrial Engineering University of Puerto Rio at Mayagüez Rafael.Garia@ee.uprm.edu Faulty Mentor: S. Shankar Sastry Researh Supervisor: Jonathan Sprinkle Graduate

More information

A Functional Representation of Fuzzy Preferences

A Functional Representation of Fuzzy Preferences Theoretial Eonomis Letters, 017, 7, 13- http://wwwsirporg/journal/tel ISSN Online: 16-086 ISSN Print: 16-078 A Funtional Representation of Fuzzy Preferenes Susheng Wang Department of Eonomis, Hong Kong

More information

Stochastic Combinatorial Optimization with Risk Evdokia Nikolova

Stochastic Combinatorial Optimization with Risk Evdokia Nikolova Computer Siene and Artifiial Intelligene Laboratory Tehnial Report MIT-CSAIL-TR-2008-055 September 13, 2008 Stohasti Combinatorial Optimization with Risk Evdokia Nikolova massahusetts institute of tehnology,

More information

On the Quantum Theory of Radiation.

On the Quantum Theory of Radiation. Physikalishe Zeitshrift, Band 18, Seite 121-128 1917) On the Quantum Theory of Radiation. Albert Einstein The formal similarity between the hromati distribution urve for thermal radiation and the Maxwell

More information

DIGITAL DISTANCE RELAYING SCHEME FOR PARALLEL TRANSMISSION LINES DURING INTER-CIRCUIT FAULTS

DIGITAL DISTANCE RELAYING SCHEME FOR PARALLEL TRANSMISSION LINES DURING INTER-CIRCUIT FAULTS CHAPTER 4 DIGITAL DISTANCE RELAYING SCHEME FOR PARALLEL TRANSMISSION LINES DURING INTER-CIRCUIT FAULTS 4.1 INTRODUCTION Around the world, environmental and ost onsiousness are foring utilities to install

More information

Reliability Guaranteed Energy-Aware Frame-Based Task Set Execution Strategy for Hard Real-Time Systems

Reliability Guaranteed Energy-Aware Frame-Based Task Set Execution Strategy for Hard Real-Time Systems Reliability Guaranteed Energy-Aware Frame-Based ask Set Exeution Strategy for Hard Real-ime Systems Zheng Li a, Li Wang a, Shuhui Li a, Shangping Ren a, Gang Quan b a Illinois Institute of ehnology, Chiago,

More information

Wavetech, LLC. Ultrafast Pulses and GVD. John O Hara Created: Dec. 6, 2013

Wavetech, LLC. Ultrafast Pulses and GVD. John O Hara Created: Dec. 6, 2013 Ultrafast Pulses and GVD John O Hara Created: De. 6, 3 Introdution This doument overs the basi onepts of group veloity dispersion (GVD) and ultrafast pulse propagation in an optial fiber. Neessarily, it

More information

Likelihood-confidence intervals for quantiles in Extreme Value Distributions

Likelihood-confidence intervals for quantiles in Extreme Value Distributions Likelihood-onfidene intervals for quantiles in Extreme Value Distributions A. Bolívar, E. Díaz-Franés, J. Ortega, and E. Vilhis. Centro de Investigaión en Matemátias; A.P. 42, Guanajuato, Gto. 36; Méxio

More information

arxiv:cond-mat/ v1 [cond-mat.stat-mech] 16 Aug 2004

arxiv:cond-mat/ v1 [cond-mat.stat-mech] 16 Aug 2004 Computational omplexity and fundamental limitations to fermioni quantum Monte Carlo simulations arxiv:ond-mat/0408370v1 [ond-mat.stat-meh] 16 Aug 2004 Matthias Troyer, 1 Uwe-Jens Wiese 2 1 Theoretishe

More information

EE 321 Project Spring 2018

EE 321 Project Spring 2018 EE 21 Projet Spring 2018 This ourse projet is intended to be an individual effort projet. The student is required to omplete the work individually, without help from anyone else. (The student may, however,

More information

Metric of Universe The Causes of Red Shift.

Metric of Universe The Causes of Red Shift. Metri of Universe The Causes of Red Shift. ELKIN IGOR. ielkin@yande.ru Annotation Poinare and Einstein supposed that it is pratially impossible to determine one-way speed of light, that s why speed of

More information

Measuring & Inducing Neural Activity Using Extracellular Fields I: Inverse systems approach

Measuring & Inducing Neural Activity Using Extracellular Fields I: Inverse systems approach Measuring & Induing Neural Ativity Using Extraellular Fields I: Inverse systems approah Keith Dillon Department of Eletrial and Computer Engineering University of California San Diego 9500 Gilman Dr. La

More information

UPPER-TRUNCATED POWER LAW DISTRIBUTIONS

UPPER-TRUNCATED POWER LAW DISTRIBUTIONS Fratals, Vol. 9, No. (00) 09 World Sientifi Publishing Company UPPER-TRUNCATED POWER LAW DISTRIBUTIONS STEPHEN M. BURROUGHS and SARAH F. TEBBENS College of Marine Siene, University of South Florida, St.

More information

Convergence of reinforcement learning with general function approximators

Convergence of reinforcement learning with general function approximators Convergene of reinforement learning with general funtion approximators assilis A. Papavassiliou and Stuart Russell Computer Siene Division, U. of California, Berkeley, CA 94720-1776 fvassilis,russellg@s.berkeley.edu

More information

15.12 Applications of Suffix Trees

15.12 Applications of Suffix Trees 248 Algorithms in Bioinformatis II, SoSe 07, ZBIT, D. Huson, May 14, 2007 15.12 Appliations of Suffix Trees 1. Searhing for exat patterns 2. Minimal unique substrings 3. Maximum unique mathes 4. Maximum

More information

Searching All Approximate Covers and Their Distance using Finite Automata

Searching All Approximate Covers and Their Distance using Finite Automata Searhing All Approximate Covers and Their Distane using Finite Automata Ondřej Guth, Bořivoj Melihar, and Miroslav Balík České vysoké učení tehniké v Praze, Praha, CZ, {gutho1,melihar,alikm}@fel.vut.z

More information

Modeling Probabilistic Measurement Correlations for Problem Determination in Large-Scale Distributed Systems

Modeling Probabilistic Measurement Correlations for Problem Determination in Large-Scale Distributed Systems 009 9th IEEE International Conferene on Distributed Computing Systems Modeling Probabilisti Measurement Correlations for Problem Determination in Large-Sale Distributed Systems Jing Gao Guofei Jiang Haifeng

More information

Directional Coupler. 4-port Network

Directional Coupler. 4-port Network Diretional Coupler 4-port Network 3 4 A diretional oupler is a 4-port network exhibiting: All ports mathed on the referene load (i.e. S =S =S 33 =S 44 =0) Two pair of ports unoupled (i.e. the orresponding

More information

Tests of fit for symmetric variance gamma distributions

Tests of fit for symmetric variance gamma distributions Tests of fit for symmetri variane gamma distributions Fragiadakis Kostas UADPhilEon, National and Kapodistrian University of Athens, 4 Euripidou Street, 05 59 Athens, Greee. Keywords: Variane Gamma Distribution,

More information

Model-based mixture discriminant analysis an experimental study

Model-based mixture discriminant analysis an experimental study Model-based mixture disriminant analysis an experimental study Zohar Halbe and Mayer Aladjem Department of Eletrial and Computer Engineering, Ben-Gurion University of the Negev P.O.Box 653, Beer-Sheva,

More information

Lecture 7: Sampling/Projections for Least-squares Approximation, Cont. 7 Sampling/Projections for Least-squares Approximation, Cont.

Lecture 7: Sampling/Projections for Least-squares Approximation, Cont. 7 Sampling/Projections for Least-squares Approximation, Cont. Stat60/CS94: Randomized Algorithms for Matries and Data Leture 7-09/5/013 Leture 7: Sampling/Projetions for Least-squares Approximation, Cont. Leturer: Mihael Mahoney Sribe: Mihael Mahoney Warning: these

More information

Einstein s Three Mistakes in Special Relativity Revealed. Copyright Joseph A. Rybczyk

Einstein s Three Mistakes in Special Relativity Revealed. Copyright Joseph A. Rybczyk Einstein s Three Mistakes in Speial Relativity Revealed Copyright Joseph A. Rybzyk Abstrat When the evidene supported priniples of eletromagneti propagation are properly applied, the derived theory is

More information

Assessing the Performance of a BCI: A Task-Oriented Approach

Assessing the Performance of a BCI: A Task-Oriented Approach Assessing the Performane of a BCI: A Task-Oriented Approah B. Dal Seno, L. Mainardi 2, M. Matteui Department of Eletronis and Information, IIT-Unit, Politenio di Milano, Italy 2 Department of Bioengineering,

More information

Danielle Maddix AA238 Final Project December 9, 2016

Danielle Maddix AA238 Final Project December 9, 2016 Struture and Parameter Learning in Bayesian Networks with Appliations to Prediting Breast Caner Tumor Malignany in a Lower Dimension Feature Spae Danielle Maddix AA238 Final Projet Deember 9, 2016 Abstrat

More information

arxiv:math/ v4 [math.ca] 29 Jul 2006

arxiv:math/ v4 [math.ca] 29 Jul 2006 arxiv:math/0109v4 [math.ca] 9 Jul 006 Contiguous relations of hypergeometri series Raimundas Vidūnas University of Amsterdam Abstrat The 15 Gauss ontiguous relations for F 1 hypergeometri series imply

More information

The Unified Geometrical Theory of Fields and Particles

The Unified Geometrical Theory of Fields and Particles Applied Mathematis, 014, 5, 347-351 Published Online February 014 (http://www.sirp.org/journal/am) http://dx.doi.org/10.436/am.014.53036 The Unified Geometrial Theory of Fields and Partiles Amagh Nduka

More information

c-perfect Hashing Schemes for Binary Trees, with Applications to Parallel Memories

c-perfect Hashing Schemes for Binary Trees, with Applications to Parallel Memories -Perfet Hashing Shemes for Binary Trees, with Appliations to Parallel Memories (Extended Abstrat Gennaro Cordaso 1, Alberto Negro 1, Vittorio Sarano 1, and Arnold L.Rosenberg 2 1 Dipartimento di Informatia

More information

Sufficient Conditions for a Flexible Manufacturing System to be Deadlocked

Sufficient Conditions for a Flexible Manufacturing System to be Deadlocked Paper 0, INT 0 Suffiient Conditions for a Flexile Manufaturing System to e Deadloked Paul E Deering, PhD Department of Engineering Tehnology and Management Ohio University deering@ohioedu Astrat In reent

More information

On Industry Structure and Firm Conduct in Long Run Equilibrium

On Industry Structure and Firm Conduct in Long Run Equilibrium www.siedu.a/jms Journal of Management and Strategy Vol., No. ; Deember On Industry Struture and Firm Condut in Long Run Equilibrium Prof. Jean-Paul Chavas Department of Agriultural and Applied Eonomis

More information

Supplementary Materials

Supplementary Materials Supplementary Materials Neural population partitioning and a onurrent brain-mahine interfae for sequential motor funtion Maryam M. Shanehi, Rollin C. Hu, Marissa Powers, Gregory W. Wornell, Emery N. Brown

More information

Chapter 8 Hypothesis Testing

Chapter 8 Hypothesis Testing Leture 5 for BST 63: Statistial Theory II Kui Zhang, Spring Chapter 8 Hypothesis Testing Setion 8 Introdution Definition 8 A hypothesis is a statement about a population parameter Definition 8 The two

More information

Normative and descriptive approaches to multiattribute decision making

Normative and descriptive approaches to multiattribute decision making De. 009, Volume 8, No. (Serial No.78) China-USA Business Review, ISSN 57-54, USA Normative and desriptive approahes to multiattribute deision making Milan Terek (Department of Statistis, University of

More information

Advanced Computational Fluid Dynamics AA215A Lecture 4

Advanced Computational Fluid Dynamics AA215A Lecture 4 Advaned Computational Fluid Dynamis AA5A Leture 4 Antony Jameson Winter Quarter,, Stanford, CA Abstrat Leture 4 overs analysis of the equations of gas dynamis Contents Analysis of the equations of gas

More information

A simple expression for radial distribution functions of pure fluids and mixtures

A simple expression for radial distribution functions of pure fluids and mixtures A simple expression for radial distribution funtions of pure fluids and mixtures Enrio Matteoli a) Istituto di Chimia Quantistia ed Energetia Moleolare, CNR, Via Risorgimento, 35, 56126 Pisa, Italy G.

More information

Advances in Radio Science

Advances in Radio Science Advanes in adio Siene 2003) 1: 99 104 Copernius GmbH 2003 Advanes in adio Siene A hybrid method ombining the FDTD and a time domain boundary-integral equation marhing-on-in-time algorithm A Beker and V

More information

Properties of Quarks

Properties of Quarks PHY04 Partile Physis 9 Dr C N Booth Properties of Quarks In the earlier part of this ourse, we have disussed three families of leptons but prinipally onentrated on one doublet of quarks, the u and d. We

More information

LOAD-RATIO DEPENDENCE ON FATIGUE LIFE OF COMPOSITES

LOAD-RATIO DEPENDENCE ON FATIGUE LIFE OF COMPOSITES LOAD-RATIO DEPENDENCE ON FATIGUE LIFE OF COMPOSITES Joakim Shön 1 and Anders F. Blom 1, 1 Strutures Department, The Aeronautial Researh Institute of Sweden Box 1101, SE-161 11 Bromma, Sweden Department

More information

SURFACE WAVES OF NON-RAYLEIGH TYPE

SURFACE WAVES OF NON-RAYLEIGH TYPE SURFACE WAVES OF NON-RAYLEIGH TYPE by SERGEY V. KUZNETSOV Institute for Problems in Mehanis Prosp. Vernadskogo, 0, Mosow, 75 Russia e-mail: sv@kuznetsov.msk.ru Abstrat. Existene of surfae waves of non-rayleigh

More information

MBS TECHNICAL REPORT 17-02

MBS TECHNICAL REPORT 17-02 MBS TECHNICAL REPORT 7-02 On a meaningful axiomati derivation of some relativisti equations Jean-Claude Falmagne University of California, Irvine Abstrat The mathematial expression of a sientifi or geometri

More information

Chapter 9. The excitation process

Chapter 9. The excitation process Chapter 9 The exitation proess qualitative explanation of the formation of negative ion states Ne and He in He-Ne ollisions an be given by using a state orrelation diagram. state orrelation diagram is

More information

Subject: Introduction to Component Matching and Off-Design Operation % % ( (1) R T % (

Subject: Introduction to Component Matching and Off-Design Operation % % ( (1) R T % ( 16.50 Leture 0 Subjet: Introdution to Component Mathing and Off-Design Operation At this point it is well to reflet on whih of the many parameters we have introdued (like M, τ, τ t, ϑ t, f, et.) are free

More information

Robust Recovery of Signals From a Structured Union of Subspaces

Robust Recovery of Signals From a Structured Union of Subspaces Robust Reovery of Signals From a Strutured Union of Subspaes 1 Yonina C. Eldar, Senior Member, IEEE and Moshe Mishali, Student Member, IEEE arxiv:87.4581v2 [nlin.cg] 3 Mar 29 Abstrat Traditional sampling

More information

Optimization of replica exchange molecular dynamics by fast mimicking

Optimization of replica exchange molecular dynamics by fast mimicking THE JOURNAL OF CHEMICAL PHYSICS 127, 204104 2007 Optimization of replia exhange moleular dynamis by fast mimiking Jozef Hritz and Chris Oostenbrink a Leiden Amsterdam Center for Drug Researh (LACDR), Division

More information

Lecture 3 - Lorentz Transformations

Lecture 3 - Lorentz Transformations Leture - Lorentz Transformations A Puzzle... Example A ruler is positioned perpendiular to a wall. A stik of length L flies by at speed v. It travels in front of the ruler, so that it obsures part of the

More information

Chapter 2 Linear Elastic Fracture Mechanics

Chapter 2 Linear Elastic Fracture Mechanics Chapter 2 Linear Elasti Frature Mehanis 2.1 Introdution Beginning with the fabriation of stone-age axes, instint and experiene about the strength of various materials (as well as appearane, ost, availability

More information

Discrete Bessel functions and partial difference equations

Discrete Bessel functions and partial difference equations Disrete Bessel funtions and partial differene equations Antonín Slavík Charles University, Faulty of Mathematis and Physis, Sokolovská 83, 186 75 Praha 8, Czeh Republi E-mail: slavik@karlin.mff.uni.z Abstrat

More information

Heat exchangers: Heat exchanger types:

Heat exchangers: Heat exchanger types: Heat exhangers: he proess of heat exhange between two fluids that are at different temperatures and separated by a solid wall ours in many engineering appliations. he devie used to implement this exhange

More information

Parallel disrete-event simulation is an attempt to speed-up the simulation proess through the use of multiple proessors. In some sense parallel disret

Parallel disrete-event simulation is an attempt to speed-up the simulation proess through the use of multiple proessors. In some sense parallel disret Exploiting intra-objet dependenies in parallel simulation Franeso Quaglia a;1 Roberto Baldoni a;2 a Dipartimento di Informatia e Sistemistia Universita \La Sapienza" Via Salaria 113, 198 Roma, Italy Abstrat

More information

SOA/CAS MAY 2003 COURSE 1 EXAM SOLUTIONS

SOA/CAS MAY 2003 COURSE 1 EXAM SOLUTIONS SOA/CAS MAY 2003 COURSE 1 EXAM SOLUTIONS Prepared by S. Broverman e-mail 2brove@rogers.om website http://members.rogers.om/2brove 1. We identify the following events:. - wathed gymnastis, ) - wathed baseball,

More information

Some Properties on Nano Topology Induced by Graphs

Some Properties on Nano Topology Induced by Graphs AASCIT Journal of anosiene 2017; 3(4): 19-23 http://wwwaasitorg/journal/nanosiene ISS: 2381-1234 (Print); ISS: 2381-1242 (Online) Some Properties on ano Topology Indued by Graphs Arafa asef 1 Abd El Fattah

More information

The ESO method revisited

The ESO method revisited Noname manusript No. (will be inserted by the editor) The ESO method revisited Kazem Ghabraie the date of reeipt and aeptane should be inserted later Abstrat This paper examines the evolutionary strutural

More information

Sensor management for PRF selection in the track-before-detect context

Sensor management for PRF selection in the track-before-detect context Sensor management for PRF seletion in the tra-before-detet ontext Fotios Katsilieris, Yvo Boers, and Hans Driessen Thales Nederland B.V. Haasbergerstraat 49, 7554 PA Hengelo, the Netherlands Email: {Fotios.Katsilieris,

More information

Generalized Dimensional Analysis

Generalized Dimensional Analysis #HUTP-92/A036 7/92 Generalized Dimensional Analysis arxiv:hep-ph/9207278v1 31 Jul 1992 Howard Georgi Lyman Laboratory of Physis Harvard University Cambridge, MA 02138 Abstrat I desribe a version of so-alled

More information

Fig Review of Granta-gravel

Fig Review of Granta-gravel 0 Conlusion 0. Sope We have introdued the new ritial state onept among older onepts of lassial soil mehanis, but it would be wrong to leave any impression at the end of this book that the new onept merely

More information

What are the locations of excess energy in open channels?

What are the locations of excess energy in open channels? Leture 26 Energy Dissipation Strutures I. Introdution Exess energy should usually be dissipated in suh a way as to avoid erosion in unlined open hannels In this ontext, exess energy means exess water veloity

More information

arxiv: v2 [math.pr] 9 Dec 2016

arxiv: v2 [math.pr] 9 Dec 2016 Omnithermal Perfet Simulation for Multi-server Queues Stephen B. Connor 3th Deember 206 arxiv:60.0602v2 [math.pr] 9 De 206 Abstrat A number of perfet simulation algorithms for multi-server First Come First

More information

Q2. [40 points] Bishop-Hill Model: Calculation of Taylor Factors for Multiple Slip

Q2. [40 points] Bishop-Hill Model: Calculation of Taylor Factors for Multiple Slip 27-750, A.D. Rollett Due: 20 th Ot., 2011. Homework 5, Volume Frations, Single and Multiple Slip Crystal Plastiity Note the 2 extra redit questions (at the end). Q1. [40 points] Single Slip: Calulating

More information