Lecture 11: June 27. Distance Sensitivity Oracles. Succinct Graph Structures and Their Applications Spring Lecturer: Merav Parter

Size: px
Start display at page:

Download "Lecture 11: June 27. Distance Sensitivity Oracles. Succinct Graph Structures and Their Applications Spring Lecturer: Merav Parter"

Transcription

1 Sccinct Graph Strctres and Their Applications Spring 2018 Lectrer: Merav Parter Lectre 11: Jne 27 Distance Sensitivit Oracles A distance oracle scheme (Lectre 2) consists of two algorithms: a preprocessing algorithm, that given a graph G otpts a (small space) data strctre; and a qer algorithm that given a distance qer s, t, ses onl the data strctre (with no access to G) to report the distance between s and t in G. This setting has three compleit measres: the preprocessing time, the size of the data strctre and the qer time. In this class, we pt emphasis on the latter two measres and the tradeoff between them. In distance sensitivit oracles, the qer consists of three vertices: sorce s, sink t and a failed verte. The otpt of the qer algorithm is dist(s, t, G \ {}). There are two naive schemes. One etreme is to keep in the data strctre, all O(n 3 ) possible distances eplicitl, i.e., for an triplet s, t,, keep dist(s, t, G \ {}). This gives space O(n 3 log n) and constant qer time. On the other etreme, one can keep the entire graph G, and given a qer s, t,, appl Dijkstra in G. This gives an optimal space of O(m) bt qite nsatisfactor qer time of O(m). Toda, we will see a sper elegant constrction that enjos both small space of O(n 2 log 3 n) and constant qer time. Up to logarithmic factors, this constrction is optimal. Theorem 11.1 ([DTCR08]) For an n-verte graph G = (V, E), there eists a constrction of a distance sensitivit oracles in time O(m n 2 + n log n), space of O(n 2 log 3 n) and constant qer time. We will se the following fact abot data strctre for LCA (Lowest Common Ancestor). fact 11.2 [HT84] For an n-verte tree T, there eists an O(n) comptable data strctre which occpies O(n)-space and answers LCA qeries ( what s the LCA of s and t in T? ) in O(1) time. Description of the oracle: A sccinct and an elegant eplanation of the constrction appears in [DP09]. For simplicit, we consider nweighted graphs, althogh the constrction holds for weighted graphs as well. For ever r V, let T r be a BFS tree rooted at r. The oracle O contains the LCA data strctre of T r for ever r V. Let π(, ) be the shortest path in G. We assme niqeness of shortest paths b breaking shortest path ties in a consistent manner. In addition, the oracle O contains the following: (1) A distance matri B 0 where B 0 (, ) = dist(,, G). (2) A collection of distance lists B 1 where B 1 (, ) contains for ever, V : (A) For i {0, 1,..., log dist(,, G) }: Let i (resp., v i ) be the verte at distance 2 i from (resp., ) on π(, ). Keep B 1 (,, w) = dist(,, G \ {w}) for w { i, v i }. (B) For ever i, j {0, 1,..., log dist(,, G) }: Keep B 1 (,, i, v j ) = dist(,, G \ V (π( i, v j ))). It is eas to see that the total space of O is indeed bonded b O(n 2 log 3 n) (mostl de to step (B)). The main challenge is in showing that the stored information is sfficient. In particlar, note that we consider onl O(log n) special vertices on each shortest path π(, ), even thogh there might be Ω(n) vertices that might fail on that path. The magic comes from the strctre of replacement paths that avoids a single failed verte. Last week, in the constrction of FT-BFS, we mainl sed the strctre of new-ending replacement paths, i.e., paths whose last edge is not the edge of the shortest path in G. Here, we will se the general strctre of an replacement path. 11-1

2 11-2 Lectre 11: Jne 27 Wh does it work? some intition. Consider a pair, V and a failed verte. Recall from last class that the replacement path P,, consists of a detor which bpasses the failing verte on the - shortest path π(, ). We need the following definition. Let be the closest verte to on the π(, ) path sch that π(, ) is a power of 2. In the same manner, let r be the closest verte to, sch that π(, r ) is a power of 2. There are three possibilities for the detor of P,,. Option (1) is where the detor goes throgh, option (2) is where the detor passes throgh r, and option (3) is where the detor does not go throgh nor r. In sch a case, b the niqeness of shortest paths, it mst hold that the detor avoids all the vertices on the segment π(, r ). See Fig B the triangle ineqalit, it alwas holds that: dist(,, G \ {}) dist(,, G \ {}) + dist(, r, G \ {}) + dist( r,, G \ {}). B the above possible configrations, we get that: dist(,, G \ {}) = min{ π(, ) + dist(,, G \ {}), dist(, r, G \ {}) + π( r, ), dist(,, G \ π(, r ))}). Note that besides the term dist(,, G \ π(, r )), all other distances in the above eqation are eplicitl kept in or data strctre. That is, since and r are within power of 2 distance from (and not from and respectivel), we did not keep the distance dist(,, G \ π(, r )) eplicitl. We will see how to handle it soon. dist(,, G {}) = dist(,, G) + dist(,, G {}) r dist(,, G {}) = dist(, r, G {}) + dist(,, G) r dist(,, G {}) = dist(,, G π(, r )) r Figre 11.1: The possible configrations of a single falt detor along with the corresponding distances. The qer algorithm: Given a triplet,,, we do as follows. First, to see if π(, ), we appl an LCA qer with, in T. If is the LCA of in T, then we dedce that π(, ). If is not the LCA, then we simpl retrn B 0 (, ) = dist(,, G). From now on, assme that π(, ). Let W = { i, v i i {0, 1,... log(dist(,, G)) }} be all vertices at distance 2 i from either or on π(, ). If W, then retrn B 1 (,, ) = dist(,, G\{}). Note that we keep a lookp table for the B 1 distances with the ke,, w for ever w W, and hence we can check in O(1) time if W and in sch a case retrn the corresponding distance. We finall get to the interesting case where / W and define and r as above. Since we know dist(,, G), we can compte in O(1) time the vertices and r. Observe that since / W (i.e., its distance is not

3 Lectre 11: Jne a power of two from neither nor ), we get that and r. Let dist(,, G) = 2 i and dist(, r, G) = 2 j. Define at the verte at distance 2 i from on π(, ). In the same manner, define as the verte at distance 2 j from on π(, ). See Fig. for an illstration. Since and are in power of 2 distance from and respectivel, we have that, W. Ths, their comptation can be done in O(1) time sing the lookp table of B 1 (,, w) for w W. The qer algorithm retrns the answer: min{b 0 (, ) + B 1 (,, ), B 1 (, r, ) + B 0 (, r ), B 1 (,,, )}. To prove the correctness of the qer algorithm, it is sfficient to show: Claim 11.3 π(, ) and π( r, ) and ths π(, ). Proof: B the definition of, π(, ) 2 i and ths π(, ). Similarl, b the definition of r, it holds that π(, r ) 2 j and ths π(, r ). 2 i 2 j r 2 i 2 j Falt Tolerant Spanners For positive integers f, t 1, a sbgraph H G is an f-edge t-falt-tolerant (FT) spanner if dist(, v, H \ F ) t dist(, v, G \ F ) for ever, v V and for ever F E, F f. The verte variant is defined analogosl onl with F V. Note that this definition does not reqire G to be (f + 1)-verte connected 1. In particlar, if there is a seqence of f falts F which disconnects and v in G, then the -v distance in both G \ F and H \ F is infinit. However, as long as and v are connected in G \ F, it is reqired that the -v distance in H \ F is a factor t approimation to the distance in G \ F. This notion of falt tolerance is known as competitive, see [CP10]. Before diving into the constrctions of sparse falt tolerant spanners, lets tr to compare them to the other falt tolerant strctre we saw last class, namel to falt tolerant BFS strctres. Comparison to FT-BFS: On the one hand, it seems that the reqirement of FT-spanners is stronger than that of FT-BFS: the latter onl concerns the sorcewise distances {s} V while the former concerns with all the pairs V V. On the other hand, FT-BFS insists on preserving the eact distance, while FTspanners settle for an approimation. As we will see toda, the insistence on eact distance plas the ke role here which makes f FT-BFS significantl denser than f-edge FT-spanners for stretch vales t 5. 1 A graph G is k verte ocnnected, in the removal of an k 1 vertices does not disconnect G.

4 11-4 Lectre 11: Jne 27 FT-spanners for edge failres [CLPR10]: In the setting of FT-spanners, handling edge failres is easier than verte failres. We will present an elegant constrction de to Chechik et al. [CLPR10]. This was the first work which stdied the constrction of sparse falt tolerant sbgraphs for general sbgraph. Theorem 11.4 For ever f 1 and k 1, there eists an f-edge (2k 1) FT-spanner H G with O(f n 1+1/k ). Recall that standard (2k 1) spanners have size of O(n 1+1/k ) edges (First Lectre!), ths the cost of making these strctres robst against f edge falts is linear in f!. The algorithm of [CLPR10] is as follows: Algorithm EFTSpanner(G, f, k) 1. Set G G and H. 2. For i = 1,..., f + 1: H i Spanner(G, 2k 1). H H H i G G \ H i. Figre 11.2: Algorithm for compting an f-edge (2k 1) FT-spanners The size of H is immediate b constrction: Spanner algorithm comptes a (2k 1) spanner with O(n 1+1/k ) edges and H contains O(f) edge disjoint (2k 1) spanners. For the stretch analsis, it is sfficient to show: Claim 11.5 dist(, v, H \ F ) 2k 1 for ever (, v) E and F E, F f and (, v) / F. Proof: If (, v) H then the claim holds triviall. Otherwise, since e = (, v) was not added to an of the f + 1 spanners, it implies that H contains f + 1 edge disjoint -v paths of length at most 2k 1. Since the set F contains at most f edges, one of these paths srvive the failing, i.e., H contains a -v path of length at most 2k 1 that srvives the failing of F. FT-spanners for verte failres: We now trn to discss falt tolerant spanners that are resilient against verte falts. Fiing the nmber of falts to f and the stretch vale to (2k 1), [CLPR10] showed a constrction of f-verte (2k 1) FT-spanners with Õ(f 2 kf+1 n 1+1/k ) edges. This bond becomes Õ(n1+1/k ) when both the nmber of falts and the stretch are constants. Dinitz and krathgamer [DK11] improved this bond to Õ(f 2 1/k n 1+1/k ) edges. Finall, recentl Bodwin et al. [BDPW18] provided a constrction with Õ(f 1 1/k n 1+1/k ) for k = O(1). Assming the girth conjectre, this bond is also tight. We will now describe the algorithm b Dinitz and krathgamer [DK11]. The high level idea is to rn several independent eperiments. In each eperiment (iteration) i, we sample man vertices into the failing set F i and compte a (2k 1) spanner in the remaining graph G \ F i. Note that even thogh the nmber of falts that the spanner shold handle is at most f, in each eperiment we fail (1 1/f) fraction of the vertices! Claim 11.6 H has Õ(f 2 1/k n 1+1/k ) edges. Proof: There are O(f 3 log n) iterations, in each we compte a (2k 1) spanner for a graph that contains O(n/f) vertices. Ths, each H i has O((n/f) 1+1/k ) edges, and the final spanner has O(f 2 1/k log n n 1/k ) edges, as reqired. We now trn to show correctness and as sal consider a neighboring pair, v and a set F of the most f vertices. The end goal is to show that dist(, v, H \ F ) 2k 1 for ever (, v) E and F V. The analsis is based on the following definition. An eperiment (or iteration) i is good for the triplet, v, F if, v / F i and F F i. We claim:

5 Lectre 11: Jne Algorithm VFTSpanner(G, f, k) 1. Set H. 2. For i = 1,..., O(f 3 log n): Sample each v into F i with probabilit p, where { 1 1/f for f 2 p = 1/2 for f = 1 H i = Spanner(G \ F i, 2k 1). H H H i. Figre 11.3: Algorithm for compting an f-verte (2k 1) FT-spanners Claim 11.7 With probabilit of 1 1/n cf for some constant c,, v, F has a good eperiment. Proof: Fi an eperiment i and a triplet, v, F. The probabilit that i is good for this triplet is at least (1 p) 2 p f = 1/f 2 1/e 1/(2f 2 ). Since all eperiments are independent of each other, the probabilit that no eperiment is good is at most (1 1/(2f 2 )) c f 3 log n = 1/n Θ(f). The claim follows. We are now read to complete the stretch argment. Claim 11.8 dist(, v, H \ F ) 2k 1 for ever (, v) E and F V. Proof: B appling the nion bond over all O(n f+2 ) triplets, v, F, b Cl. 11.7, with probabilit 1 1/n c, ever triplet has a good eperiment. Fi a triplet, v, F and let i be sch a good eperiment for this triplet. Then H i either contains (, v) and we are done, or else it contains an -v path P of length at most (2k 1). Since F F i and H i G \ F i, that path P is free from an other failing vertices and ths: dist(, v, H \ F ) dist(, v, H i \ F ) 2k 1. The claim follows. (Conditional) lower bond for f-verte (2k 1) FT-spanners. Lemma 11.9 ([BDPW18]) Assming Erdős girth conjectre, for ever k 1, f 1, there is an n-verte graph G k,f sch that an f-verte (2k 1) FT-spanner H G k,f mst have Ω(f 1 1/k n 1+1/k ) edges. Proof: Erdős girth conjectre (see Lectre 1) states that for ever k 1 and sfficientl large n, there are n-verte graphs G k with Ω(n 1+1/k ) and girth 2 at least 2k + 2. The graph G k,f is obtained from G k b the following operations: Each verte is G k is mltiplied b f = f/2 copies 1,..., f in G k,f. Each edge (, v) G k is replaced b a complete bipartite graph between all copies of and all copies of v. Formall, V (G k,f ) = { 1,..., f V } and E(G k,f ) = {( i, v j ) (, v) E(G k ), i, j [1, f ]}. The nmber of vertices in G k,f is N = O(f n) and the nmber of edges is O(f 2 n 1+1/k ) = O(f 1 1/k N 1+1/k ) edges. We net show that removing an edge e from G k,f reslts in a graph H = G k,f \ {e} which is not a legal f-verte (2k 1) FT-spanner for G k,f. This wold impl that the onl f-verte (2k 1) FT-spanner for G k,f is G k,f, ths contains Ω(f 1 1/k N 1+1/k ) man edges. Let e = ( i, v j ) and let F = ({ 1,..., f } {v 1,..., v f }) \ { i, v j }. Observe that F f. Ths in G k,f \ F, the edge e = ( i, v j ) is the onl edge connecting s copies with v s copies. Since the girth of G k is at least 2k + 2, removing e increases the distance from i to v j in G k,f from 1 to at least 2k + 1. We get that dist( i, v j, G k,f \ F ) = 1 bt dist( i, v j, H \ F ) 2k + 1. The claim follows. 2 Length of shortest ccle in the graph.

6 11-6 Lectre 11: Jne 27 References [BDPW18] Greg Bodwin, Michael Dinitz, Merav Parter, and Virginia Vassilevska Williams. Optimal verte falt tolerant spanners (for fied stretch). In Proceedings of the Twent-Ninth Annal ACM- SIAM Smposim on Discrete Algorithms, pages Societ for Indstrial and Applied Mathematics, [CLPR10] [CP10] Shiri Chechik, Michael Langberg, David Peleg, and Liam Roditt. Falt tolerant spanners for general graphs. SIAM Jornal on Compting, 39(7): , Shiri Chechik and David Peleg. Rigid and competitive falt tolerance for logical information strctres in networks. In Electrical and Electronics Engineers in Israel (IEEEI), 2010 IEEE 26th Convention of, pages IEEE, [DK11] Michael Dinitz and Robert Krathgamer. Falt-tolerant spanners: better and simpler. In Proceedings of the 30th annal ACM SIGACT-SIGOPS smposim on Principles of distribted compting, pages ACM, [DP09] Ran Dan and Seth Pettie. Dal-failre distance and connectivit oracles. In Proceedings of the twentieth annal ACM-SIAM smposim on Discrete algorithms, pages Societ for Indstrial and Applied Mathematics, [DTCR08] Camil Demetresc, Mikkel Thorp, Rezal Alam Chowdhr, and Vijaa Ramachandran. Oracles for distances avoiding a failed node or link. SIAM Jornal on Compting, 37(5): , [HT84] Dov Harel and Robert Endre Tarjan. Fast algorithms for finding nearest common ancestors. siam Jornal on Compting, 13(2): , 1984.

A Note on Johnson, Minkoff and Phillips Algorithm for the Prize-Collecting Steiner Tree Problem

A Note on Johnson, Minkoff and Phillips Algorithm for the Prize-Collecting Steiner Tree Problem A Note on Johnson, Minkoff and Phillips Algorithm for the Prize-Collecting Steiner Tree Problem Palo Feofiloff Cristina G. Fernandes Carlos E. Ferreira José Coelho de Pina September 04 Abstract The primal-dal

More information

Discontinuous Fluctuation Distribution for Time-Dependent Problems

Discontinuous Fluctuation Distribution for Time-Dependent Problems Discontinos Flctation Distribtion for Time-Dependent Problems Matthew Hbbard School of Compting, University of Leeds, Leeds, LS2 9JT, UK meh@comp.leeds.ac.k Introdction For some years now, the flctation

More information

Formal Methods for Deriving Element Equations

Formal Methods for Deriving Element Equations Formal Methods for Deriving Element Eqations And the importance of Shape Fnctions Formal Methods In previos lectres we obtained a bar element s stiffness eqations sing the Direct Method to obtain eact

More information

A generalized Alon-Boppana bound and weak Ramanujan graphs

A generalized Alon-Boppana bound and weak Ramanujan graphs A generalized Alon-Boppana bond and weak Ramanjan graphs Fan Chng Department of Mathematics University of California, San Diego La Jolla, CA, U.S.A. fan@csd.ed Sbmitted: Feb 0, 206; Accepted: Jne 22, 206;

More information

Upper Bounds on the Spanning Ratio of Constrained Theta-Graphs

Upper Bounds on the Spanning Ratio of Constrained Theta-Graphs Upper Bonds on the Spanning Ratio of Constrained Theta-Graphs Prosenjit Bose and André van Renssen School of Compter Science, Carleton University, Ottaa, Canada. jit@scs.carleton.ca, andre@cg.scs.carleton.ca

More information

A generalized Alon-Boppana bound and weak Ramanujan graphs

A generalized Alon-Boppana bound and weak Ramanujan graphs A generalized Alon-Boppana bond and weak Ramanjan graphs Fan Chng Abstract A basic eigenvale bond de to Alon and Boppana holds only for reglar graphs. In this paper we give a generalized Alon-Boppana bond

More information

Approximating Graph Spanners

Approximating Graph Spanners Approximating Graph Spanners Michael Dinitz Johns Hopkins University Joint work with combinations of Robert Krauthgamer (Weizmann), Eden Chlamtáč (Ben Gurion), Ran Raz (Weizmann), Guy Kortsarz (Rutgers-Camden)

More information

On the tree cover number of a graph

On the tree cover number of a graph On the tree cover nmber of a graph Chassidy Bozeman Minerva Catral Brendan Cook Oscar E. González Carolyn Reinhart Abstract Given a graph G, the tree cover nmber of the graph, denoted T (G), is the minimm

More information

Scribes: Po-Hsuan Wei, William Kuzmaul Editor: Kevin Wu Date: October 18, 2016

Scribes: Po-Hsuan Wei, William Kuzmaul Editor: Kevin Wu Date: October 18, 2016 CS 267 Lecture 7 Graph Spanners Scribes: Po-Hsuan Wei, William Kuzmaul Editor: Kevin Wu Date: October 18, 2016 1 Graph Spanners Our goal is to compress information about distances in a graph by looking

More information

1. State-Space Linear Systems 2. Block Diagrams 3. Exercises

1. State-Space Linear Systems 2. Block Diagrams 3. Exercises LECTURE 1 State-Space Linear Sstems This lectre introdces state-space linear sstems, which are the main focs of this book. Contents 1. State-Space Linear Sstems 2. Block Diagrams 3. Exercises 1.1 State-Space

More information

Elements of Coordinate System Transformations

Elements of Coordinate System Transformations B Elements of Coordinate System Transformations Coordinate system transformation is a powerfl tool for solving many geometrical and kinematic problems that pertain to the design of gear ctting tools and

More information

On oriented arc-coloring of subcubic graphs

On oriented arc-coloring of subcubic graphs On oriented arc-coloring of sbcbic graphs Alexandre Pinlo Alexandre.Pinlo@labri.fr LaBRI, Université Bordeax I, 351, Cors de la Libération, 33405 Talence, France Janary 17, 2006 Abstract. A homomorphism

More information

Section 7.4: Integration of Rational Functions by Partial Fractions

Section 7.4: Integration of Rational Functions by Partial Fractions Section 7.4: Integration of Rational Fnctions by Partial Fractions This is abot as complicated as it gets. The Method of Partial Fractions Ecept for a few very special cases, crrently we have no way to

More information

Chapter 2 Difficulties associated with corners

Chapter 2 Difficulties associated with corners Chapter Difficlties associated with corners This chapter is aimed at resolving the problems revealed in Chapter, which are cased b corners and/or discontinos bondar conditions. The first section introdces

More information

1 Differential Equations for Solid Mechanics

1 Differential Equations for Solid Mechanics 1 Differential Eqations for Solid Mechanics Simple problems involving homogeneos stress states have been considered so far, wherein the stress is the same throghot the component nder std. An eception to

More information

Lecture Notes On THEORY OF COMPUTATION MODULE - 2 UNIT - 2

Lecture Notes On THEORY OF COMPUTATION MODULE - 2 UNIT - 2 BIJU PATNAIK UNIVERSITY OF TECHNOLOGY, ODISHA Lectre Notes On THEORY OF COMPUTATION MODULE - 2 UNIT - 2 Prepared by, Dr. Sbhend Kmar Rath, BPUT, Odisha. Tring Machine- Miscellany UNIT 2 TURING MACHINE

More information

Lecture 8: September 26

Lecture 8: September 26 10-704: Information Processing and Learning Fall 2016 Lectrer: Aarti Singh Lectre 8: September 26 Note: These notes are based on scribed notes from Spring15 offering of this corse. LaTeX template cortesy

More information

MAT389 Fall 2016, Problem Set 6

MAT389 Fall 2016, Problem Set 6 MAT389 Fall 016, Problem Set 6 Trigonometric and hperbolic fnctions 6.1 Show that e iz = cos z + i sin z for eer comple nmber z. Hint: start from the right-hand side and work or wa towards the left-hand

More information

Sensitivity Analysis in Bayesian Networks: From Single to Multiple Parameters

Sensitivity Analysis in Bayesian Networks: From Single to Multiple Parameters Sensitivity Analysis in Bayesian Networks: From Single to Mltiple Parameters Hei Chan and Adnan Darwiche Compter Science Department University of California, Los Angeles Los Angeles, CA 90095 {hei,darwiche}@cs.cla.ed

More information

1. Tractable and Intractable Computational Problems So far in the course we have seen many problems that have polynomial-time solutions; that is, on

1. Tractable and Intractable Computational Problems So far in the course we have seen many problems that have polynomial-time solutions; that is, on . Tractable and Intractable Comptational Problems So far in the corse we have seen many problems that have polynomial-time soltions; that is, on a problem instance of size n, the rnning time T (n) = O(n

More information

A Macroscopic Traffic Data Assimilation Framework Based on Fourier-Galerkin Method and Minimax Estimation

A Macroscopic Traffic Data Assimilation Framework Based on Fourier-Galerkin Method and Minimax Estimation A Macroscopic Traffic Data Assimilation Framework Based on Forier-Galerkin Method and Minima Estimation Tigran T. Tchrakian and Sergiy Zhk Abstract In this paper, we propose a new framework for macroscopic

More information

Sparse Fault-Tolerant BFS Trees. Merav Parter and David Peleg Weizmann Institute Of Science BIU-CS Colloquium

Sparse Fault-Tolerant BFS Trees. Merav Parter and David Peleg Weizmann Institute Of Science BIU-CS Colloquium Spare Fault-Tolerant BFS Tree Merav Parter and David Peleg Weizmann Intitute Of Science BIU-CS Colloquium 16-01-2014 v 5 Breadth Firt Search (BFS) Tree Unweighted graph G=(V,E), ource vertex V. Shortet-Path

More information

Classify by number of ports and examine the possible structures that result. Using only one-port elements, no more than two elements can be assembled.

Classify by number of ports and examine the possible structures that result. Using only one-port elements, no more than two elements can be assembled. Jnction elements in network models. Classify by nmber of ports and examine the possible strctres that reslt. Using only one-port elements, no more than two elements can be assembled. Combining two two-ports

More information

Chapter 3. Preferences and Utility

Chapter 3. Preferences and Utility Chapter 3 Preferences and Utilit Microeconomics stdies how individals make choices; different individals make different choices n important factor in making choices is individal s tastes or preferences

More information

Cuckoo hashing: Further analysis

Cuckoo hashing: Further analysis Information Processing Letters 86 (2003) 215 219 www.elsevier.com/locate/ipl Cckoo hashing: Frther analysis Lc Devroye,PatMorin School of Compter Science, McGill University, 3480 University Street, Montreal,

More information

Discussion of The Forward Search: Theory and Data Analysis by Anthony C. Atkinson, Marco Riani, and Andrea Ceroli

Discussion of The Forward Search: Theory and Data Analysis by Anthony C. Atkinson, Marco Riani, and Andrea Ceroli 1 Introdction Discssion of The Forward Search: Theory and Data Analysis by Anthony C. Atkinson, Marco Riani, and Andrea Ceroli Søren Johansen Department of Economics, University of Copenhagen and CREATES,

More information

Assignment Fall 2014

Assignment Fall 2014 Assignment 5.086 Fall 04 De: Wednesday, 0 December at 5 PM. Upload yor soltion to corse website as a zip file YOURNAME_ASSIGNMENT_5 which incldes the script for each qestion as well as all Matlab fnctions

More information

Symmetric Range Assignment with Disjoint MST Constraints

Symmetric Range Assignment with Disjoint MST Constraints Symmetric Range Assignment with Disjoint MST Constraints Eric Schmtz Drexel University Philadelphia, Pa. 19104,USA Eric.Jonathan.Schmtz@drexel.ed ABSTRACT If V is a set of n points in the nit sqare [0,

More information

Complex Variables. For ECON 397 Macroeconometrics Steve Cunningham

Complex Variables. For ECON 397 Macroeconometrics Steve Cunningham Comple Variables For ECON 397 Macroeconometrics Steve Cnningham Open Disks or Neighborhoods Deinition. The set o all points which satis the ineqalit

More information

Discussion Papers Department of Economics University of Copenhagen

Discussion Papers Department of Economics University of Copenhagen Discssion Papers Department of Economics University of Copenhagen No. 10-06 Discssion of The Forward Search: Theory and Data Analysis, by Anthony C. Atkinson, Marco Riani, and Andrea Ceroli Søren Johansen,

More information

Graphs and Their. Applications (6) K.M. Koh* F.M. Dong and E.G. Tay. 17 The Number of Spanning Trees

Graphs and Their. Applications (6) K.M. Koh* F.M. Dong and E.G. Tay. 17 The Number of Spanning Trees Graphs and Their Applications (6) by K.M. Koh* Department of Mathematics National University of Singapore, Singapore 1 ~ 7543 F.M. Dong and E.G. Tay Mathematics and Mathematics EdOOation National Institte

More information

FOUNTAIN codes [3], [4] provide an efficient solution

FOUNTAIN codes [3], [4] provide an efficient solution Inactivation Decoding of LT and Raptor Codes: Analysis and Code Design Francisco Lázaro, Stdent Member, IEEE, Gianligi Liva, Senior Member, IEEE, Gerhard Bach, Fellow, IEEE arxiv:176.5814v1 [cs.it 19 Jn

More information

The Minimal Estrada Index of Trees with Two Maximum Degree Vertices

The Minimal Estrada Index of Trees with Two Maximum Degree Vertices MATCH Commnications in Mathematical and in Compter Chemistry MATCH Commn. Math. Compt. Chem. 64 (2010) 799-810 ISSN 0340-6253 The Minimal Estrada Index of Trees with Two Maximm Degree Vertices Jing Li

More information

Cubic graphs have bounded slope parameter

Cubic graphs have bounded slope parameter Cbic graphs have bonded slope parameter B. Keszegh, J. Pach, D. Pálvölgyi, and G. Tóth Agst 25, 2009 Abstract We show that every finite connected graph G with maximm degree three and with at least one

More information

Discrete Applied Mathematics. The induced path function, monotonicity and betweenness

Discrete Applied Mathematics. The induced path function, monotonicity and betweenness Discrete Applied Mathematics 158 (2010) 426 433 Contents lists available at ScienceDirect Discrete Applied Mathematics jornal homepage: www.elsevier.com/locate/dam The indced path fnction, monotonicity

More information

A Note on Irreducible Polynomials and Identity Testing

A Note on Irreducible Polynomials and Identity Testing A Note on Irrecible Polynomials an Ientity Testing Chanan Saha Department of Compter Science an Engineering Inian Institte of Technology Kanpr Abstract We show that, given a finite fiel F q an an integer

More information

PhysicsAndMathsTutor.com

PhysicsAndMathsTutor.com C Integration - By sbstittion PhysicsAndMathsTtor.com. Using the sbstittion cos +, or otherwise, show that e cos + sin d e(e ) (Total marks). (a) Using the sbstittion cos, or otherwise, find the eact vale

More information

Chords in Graphs. Department of Mathematics Texas State University-San Marcos San Marcos, TX Haidong Wu

Chords in Graphs. Department of Mathematics Texas State University-San Marcos San Marcos, TX Haidong Wu AUSTRALASIAN JOURNAL OF COMBINATORICS Volme 32 (2005), Pages 117 124 Chords in Graphs Weizhen G Xingde Jia Department of Mathematics Texas State Uniersity-San Marcos San Marcos, TX 78666 Haidong W Department

More information

RESOLUTION OF INDECOMPOSABLE INTEGRAL FLOWS ON A SIGNED GRAPH

RESOLUTION OF INDECOMPOSABLE INTEGRAL FLOWS ON A SIGNED GRAPH RESOLUTION OF INDECOMPOSABLE INTEGRAL FLOWS ON A SIGNED GRAPH BEIFANG CHEN, JUE WANG, AND THOMAS ZASLAVSKY Abstract. It is well-known that each nonnegative integral flow of a directed graph can be decomposed

More information

Graph-Modeled Data Clustering: Fixed-Parameter Algorithms for Clique Generation

Graph-Modeled Data Clustering: Fixed-Parameter Algorithms for Clique Generation Graph-Modeled Data Clstering: Fied-Parameter Algorithms for Cliqe Generation Jens Gramm Jiong Go Falk Hüffner Rolf Niedermeier Wilhelm-Schickard-Institt für Informatik, Universität Tübingen, Sand 13, D-72076

More information

Lecture 5 November 6, 2012

Lecture 5 November 6, 2012 Hypercbe problems Lectre 5 Noember 6, 2012 Lectrer: Petr Gregor Scribe by: Kryštof Měkta Updated: Noember 22, 2012 1 Partial cbes A sbgraph H of G is isometric if d H (, ) = d G (, ) for eery, V (H); that

More information

FRTN10 Exercise 12. Synthesis by Convex Optimization

FRTN10 Exercise 12. Synthesis by Convex Optimization FRTN Exercise 2. 2. We want to design a controller C for the stable SISO process P as shown in Figre 2. sing the Yola parametrization and convex optimization. To do this, the control loop mst first be

More information

The 4/3 Additive Spanner Exponent Is Tight

The 4/3 Additive Spanner Exponent Is Tight The 4/3 Additive Spanner Exponent Is Tight Amir Abboud abboud@cs.stanford.edu Stanford University Department of Computer Science United States of America Greg Bodwin gbodwin@cs.stanford.edu ABSTRACT A

More information

To pose an abstract computational problem on graphs that has a huge list of applications in web technologies

To pose an abstract computational problem on graphs that has a huge list of applications in web technologies Talk Objectie Large Scale Graph Algorithms A Gide to Web Research: Lectre 2 Yry Lifshits Steklo Institte of Mathematics at St.Petersbrg To pose an abstract comptational problem on graphs that has a hge

More information

Nonlinear parametric optimization using cylindrical algebraic decomposition

Nonlinear parametric optimization using cylindrical algebraic decomposition Proceedings of the 44th IEEE Conference on Decision and Control, and the Eropean Control Conference 2005 Seville, Spain, December 12-15, 2005 TC08.5 Nonlinear parametric optimization sing cylindrical algebraic

More information

Department of Industrial Engineering Statistical Quality Control presented by Dr. Eng. Abed Schokry

Department of Industrial Engineering Statistical Quality Control presented by Dr. Eng. Abed Schokry Department of Indstrial Engineering Statistical Qality Control presented by Dr. Eng. Abed Schokry Department of Indstrial Engineering Statistical Qality Control C and U Chart presented by Dr. Eng. Abed

More information

3. Several Random Variables

3. Several Random Variables . Several Random Variables. To Random Variables. Conditional Probabilit--Revisited. Statistical Independence.4 Correlation beteen Random Variables Standardied (or ero mean normalied) random variables.5

More information

A Computational Study with Finite Element Method and Finite Difference Method for 2D Elliptic Partial Differential Equations

A Computational Study with Finite Element Method and Finite Difference Method for 2D Elliptic Partial Differential Equations Applied Mathematics, 05, 6, 04-4 Pblished Online November 05 in SciRes. http://www.scirp.org/jornal/am http://d.doi.org/0.46/am.05.685 A Comptational Stdy with Finite Element Method and Finite Difference

More information

A Single Species in One Spatial Dimension

A Single Species in One Spatial Dimension Lectre 6 A Single Species in One Spatial Dimension Reading: Material similar to that in this section of the corse appears in Sections 1. and 13.5 of James D. Mrray (), Mathematical Biology I: An introction,

More information

Weak ε-nets for Axis-Parallel Boxes in d-space

Weak ε-nets for Axis-Parallel Boxes in d-space Weak ε-nets for Axis-Parallel Boxes in d-space Esther Ezra May 25, 2009 Abstract In this note we show the existence of weak ε-nets of size O /ε loglog /ε for point sets and axis-parallel boxes in R d.

More information

Decision Making in Complex Environments. Lecture 2 Ratings and Introduction to Analytic Network Process

Decision Making in Complex Environments. Lecture 2 Ratings and Introduction to Analytic Network Process Decision Making in Complex Environments Lectre 2 Ratings and Introdction to Analytic Network Process Lectres Smmary Lectre 5 Lectre 1 AHP=Hierar chies Lectre 3 ANP=Networks Strctring Complex Models with

More information

arxiv: v1 [cs.ds] 4 May 2015

arxiv: v1 [cs.ds] 4 May 2015 Dual Failure Resilient BFS Structure Merav Parter arxiv:1505.00692v1 [cs.ds] 4 May 2015 Abstract We study breadth-first search (BFS) spanning trees, and address the problem of designing a sparse fault-tolerant

More information

9. Tensor product and Hom

9. Tensor product and Hom 9. Tensor prodct and Hom Starting from two R-modles we can define two other R-modles, namely M R N and Hom R (M, N), that are very mch related. The defining properties of these modles are simple, bt those

More information

EE2 Mathematics : Functions of Multiple Variables

EE2 Mathematics : Functions of Multiple Variables EE2 Mathematics : Fnctions of Mltiple Variables http://www2.imperial.ac.k/ nsjones These notes are not identical word-for-word with m lectres which will be gien on the blackboard. Some of these notes ma

More information

Lecture: Corporate Income Tax

Lecture: Corporate Income Tax Lectre: Corporate Income Tax Ltz Krschwitz & Andreas Löffler Disconted Cash Flow, Section 2.1, Otline 2.1 Unlevered firms Similar companies Notation 2.1.1 Valation eqation 2.1.2 Weak atoregressive cash

More information

An Investigation into Estimating Type B Degrees of Freedom

An Investigation into Estimating Type B Degrees of Freedom An Investigation into Estimating Type B Degrees of H. Castrp President, Integrated Sciences Grop Jne, 00 Backgrond The degrees of freedom associated with an ncertainty estimate qantifies the amont of information

More information

Lecture: Corporate Income Tax - Unlevered firms

Lecture: Corporate Income Tax - Unlevered firms Lectre: Corporate Income Tax - Unlevered firms Ltz Krschwitz & Andreas Löffler Disconted Cash Flow, Section 2.1, Otline 2.1 Unlevered firms Similar companies Notation 2.1.1 Valation eqation 2.1.2 Weak

More information

Optimal Control of a Heterogeneous Two Server System with Consideration for Power and Performance

Optimal Control of a Heterogeneous Two Server System with Consideration for Power and Performance Optimal Control of a Heterogeneos Two Server System with Consideration for Power and Performance by Jiazheng Li A thesis presented to the University of Waterloo in flfilment of the thesis reqirement for

More information

Constant 2-labelling of a graph

Constant 2-labelling of a graph Constant 2-labelling of a graph S. Gravier, and E. Vandomme June 18, 2012 Abstract We introduce the concept of constant 2-labelling of a graph and show how it can be used to obtain periodic sphere packing.

More information

FEA Solution Procedure

FEA Solution Procedure EA Soltion Procedre (demonstrated with a -D bar element problem) EA Procedre for Static Analysis. Prepare the E model a. discretize (mesh) the strctre b. prescribe loads c. prescribe spports. Perform calclations

More information

Chapter 1: Differential Form of Basic Equations

Chapter 1: Differential Form of Basic Equations MEG 74 Energ and Variational Methods in Mechanics I Brendan J. O Toole, Ph.D. Associate Professor of Mechanical Engineering Howard R. Hghes College of Engineering Universit of Nevada Las Vegas TBE B- (7)

More information

Robust Tracking and Regulation Control of Uncertain Piecewise Linear Hybrid Systems

Robust Tracking and Regulation Control of Uncertain Piecewise Linear Hybrid Systems ISIS Tech. Rept. - 2003-005 Robst Tracking and Reglation Control of Uncertain Piecewise Linear Hybrid Systems Hai Lin Panos J. Antsaklis Department of Electrical Engineering, University of Notre Dame,

More information

Simplified Identification Scheme for Structures on a Flexible Base

Simplified Identification Scheme for Structures on a Flexible Base Simplified Identification Scheme for Strctres on a Flexible Base L.M. Star California State University, Long Beach G. Mylonais University of Patras, Greece J.P. Stewart University of California, Los Angeles

More information

On the circuit complexity of the standard and the Karatsuba methods of multiplying integers

On the circuit complexity of the standard and the Karatsuba methods of multiplying integers On the circit complexity of the standard and the Karatsba methods of mltiplying integers arxiv:1602.02362v1 [cs.ds] 7 Feb 2016 Igor S. Sergeev The goal of the present paper is to obtain accrate estimates

More information

3.4-Miscellaneous Equations

3.4-Miscellaneous Equations .-Miscellaneos Eqations Factoring Higher Degree Polynomials: Many higher degree polynomials can be solved by factoring. Of particlar vale is the method of factoring by groping, however all types of factoring

More information

Joint Transfer of Energy and Information in a Two-hop Relay Channel

Joint Transfer of Energy and Information in a Two-hop Relay Channel Joint Transfer of Energy and Information in a Two-hop Relay Channel Ali H. Abdollahi Bafghi, Mahtab Mirmohseni, and Mohammad Reza Aref Information Systems and Secrity Lab (ISSL Department of Electrical

More information

Connectivity and Menger s theorems

Connectivity and Menger s theorems Connectiity and Menger s theorems We hae seen a measre of connectiity that is based on inlnerability to deletions (be it tcs or edges). There is another reasonable measre of connectiity based on the mltiplicity

More information

Lecture 17 Errors in Matlab s Turbulence PSD and Shaping Filter Expressions

Lecture 17 Errors in Matlab s Turbulence PSD and Shaping Filter Expressions Lectre 7 Errors in Matlab s Trblence PSD and Shaping Filter Expressions b Peter J Sherman /7/7 [prepared for AERE 355 class] In this brief note we will show that the trblence power spectral densities (psds)

More information

Online Solution of State Dependent Riccati Equation for Nonlinear System Stabilization

Online Solution of State Dependent Riccati Equation for Nonlinear System Stabilization > REPLACE American HIS Control LINE Conference WIH YOUR PAPER IDENIFICAION NUMBER (DOUBLE-CLICK HERE O EDI) FrC3. Marriott Waterfront, Baltimore, MD, USA Jne 3-Jly, Online Soltion of State Dependent Riccati

More information

Graphs and Networks Lecture 5. PageRank. Lecturer: Daniel A. Spielman September 20, 2007

Graphs and Networks Lecture 5. PageRank. Lecturer: Daniel A. Spielman September 20, 2007 Graphs and Networks Lectre 5 PageRank Lectrer: Daniel A. Spielman September 20, 2007 5.1 Intro to PageRank PageRank, the algorithm reportedly sed by Google, assigns a nmerical rank to eery web page. More

More information

BLOOM S TAXONOMY. Following Bloom s Taxonomy to Assess Students

BLOOM S TAXONOMY. Following Bloom s Taxonomy to Assess Students BLOOM S TAXONOMY Topic Following Bloom s Taonomy to Assess Stdents Smmary A handot for stdents to eplain Bloom s taonomy that is sed for item writing and test constrction to test stdents to see if they

More information

3 2D Elastostatic Problems in Cartesian Coordinates

3 2D Elastostatic Problems in Cartesian Coordinates D lastostatic Problems in Cartesian Coordinates Two dimensional elastostatic problems are discssed in this Chapter, that is, static problems of either plane stress or plane strain. Cartesian coordinates

More information

Sareban: Evaluation of Three Common Algorithms for Structure Active Control

Sareban: Evaluation of Three Common Algorithms for Structure Active Control Engineering, Technology & Applied Science Research Vol. 7, No. 3, 2017, 1638-1646 1638 Evalation of Three Common Algorithms for Strctre Active Control Mohammad Sareban Department of Civil Engineering Shahrood

More information

Move Blocking Strategies in Receding Horizon Control

Move Blocking Strategies in Receding Horizon Control Move Blocking Strategies in Receding Horizon Control Raphael Cagienard, Pascal Grieder, Eric C. Kerrigan and Manfred Morari Abstract In order to deal with the comptational brden of optimal control, it

More information

Decoder Error Probability of MRD Codes

Decoder Error Probability of MRD Codes Decoder Error Probability of MRD Codes Maximilien Gadolea Department of Electrical and Compter Engineering Lehigh University Bethlehem, PA 18015 USA E-mail: magc@lehigh.ed Zhiyan Yan Department of Electrical

More information

DISPLACEMENT ANALYSIS OF SUBMARINE SLOPES USING ENHANCED NEWMARK METHOD

DISPLACEMENT ANALYSIS OF SUBMARINE SLOPES USING ENHANCED NEWMARK METHOD DISPLACEMENT ANALYSIS OF SUBMARINE SLOPES USING ENHANCED NEWMARK METHOD N. ZANGENEH and R. POPESCU Faclt of Engineering & Applied Science, Memorial Universit, St. John s, Newfondland, Canada A1B 3X5 Abstract

More information

Network Coding for Multiple Unicasts: An Approach based on Linear Optimization

Network Coding for Multiple Unicasts: An Approach based on Linear Optimization Network Coding for Mltiple Unicasts: An Approach based on Linear Optimization Danail Traskov, Niranjan Ratnakar, Desmond S. Ln, Ralf Koetter, and Mriel Médard Abstract In this paper we consider the application

More information

arxiv: v1 [math.co] 25 Sep 2016

arxiv: v1 [math.co] 25 Sep 2016 arxi:1609.077891 [math.co] 25 Sep 2016 Total domination polynomial of graphs from primary sbgraphs Saeid Alikhani and Nasrin Jafari September 27, 2016 Department of Mathematics, Yazd Uniersity, 89195-741,

More information

Frequency Estimation, Multiple Stationary Nonsinusoidal Resonances With Trend 1

Frequency Estimation, Multiple Stationary Nonsinusoidal Resonances With Trend 1 Freqency Estimation, Mltiple Stationary Nonsinsoidal Resonances With Trend 1 G. Larry Bretthorst Department of Chemistry, Washington University, St. Lois MO 6313 Abstract. In this paper, we address the

More information

Worst-case analysis of the LPT algorithm for single processor scheduling with time restrictions

Worst-case analysis of the LPT algorithm for single processor scheduling with time restrictions OR Spectrm 06 38:53 540 DOI 0.007/s009-06-043-5 REGULAR ARTICLE Worst-case analysis of the LPT algorithm for single processor schedling with time restrictions Oliver ran Fan Chng Ron Graham Received: Janary

More information

Reflections on a mismatched transmission line Reflections.doc (4/1/00) Introduction The transmission line equations are given by

Reflections on a mismatched transmission line Reflections.doc (4/1/00) Introduction The transmission line equations are given by Reflections on a mismatched transmission line Reflections.doc (4/1/00) Introdction The transmission line eqations are given by, I z, t V z t l z t I z, t V z, t c z t (1) (2) Where, c is the per-nit-length

More information

arxiv: v2 [cs.dc] 2 Apr 2016

arxiv: v2 [cs.dc] 2 Apr 2016 Sbgraph Conting: Color Coding Beyond Trees Venkatesan T. Chakaravarthy 1, Michael Kapralov 2, Prakash Mrali 1, Fabrizio Petrini 3, Xiny Qe 3, Yogish Sabharwal 1, and Barch Schieber 3 arxiv:1602.04478v2

More information

The Linear Quadratic Regulator

The Linear Quadratic Regulator 10 The Linear Qadratic Reglator 10.1 Problem formlation This chapter concerns optimal control of dynamical systems. Most of this development concerns linear models with a particlarly simple notion of optimality.

More information

AN ALTERNATIVE DECOUPLED SINGLE-INPUT FUZZY SLIDING MODE CONTROL WITH APPLICATIONS

AN ALTERNATIVE DECOUPLED SINGLE-INPUT FUZZY SLIDING MODE CONTROL WITH APPLICATIONS AN ALTERNATIVE DECOUPLED SINGLE-INPUT FUZZY SLIDING MODE CONTROL WITH APPLICATIONS Fang-Ming Y, Hng-Yan Chng* and Chen-Ning Hang Department of Electrical Engineering National Central University, Chngli,

More information

Information Source Detection in the SIR Model: A Sample Path Based Approach

Information Source Detection in the SIR Model: A Sample Path Based Approach Information Sorce Detection in the SIR Model: A Sample Path Based Approach Kai Zh and Lei Ying School of Electrical, Compter and Energy Engineering Arizona State University Tempe, AZ, United States, 85287

More information

Multivariable Ripple-Free Deadbeat Control

Multivariable Ripple-Free Deadbeat Control Scholarly Jornal of Mathematics and Compter Science Vol. (), pp. 9-9, October Available online at http:// www.scholarly-jornals.com/sjmcs ISS 76-8947 Scholarly-Jornals Fll Length Research aper Mltivariable

More information

AN ALTERNATIVE DECOUPLED SINGLE-INPUT FUZZY SLIDING MODE CONTROL WITH APPLICATIONS

AN ALTERNATIVE DECOUPLED SINGLE-INPUT FUZZY SLIDING MODE CONTROL WITH APPLICATIONS AN ALTERNATIVE DECOUPLED SINGLE-INPUT FUZZY SLIDING MODE CONTROL WITH APPLICATIONS Fang-Ming Y, Hng-Yan Chng* and Chen-Ning Hang Department of Electrical Engineering National Central University, Chngli,

More information

Eigenvectors and Eigenvalues 1

Eigenvectors and Eigenvalues 1 Ma 2015 page 1 Eigenvectors and Eigenvalues 1 In this handout, we will eplore eigenvectors and eigenvalues. We will begin with an eploration, then provide some direct eplanation and worked eamples, and

More information

Sources of Non Stationarity in the Semivariogram

Sources of Non Stationarity in the Semivariogram Sorces of Non Stationarity in the Semivariogram Migel A. Cba and Oy Leangthong Traditional ncertainty characterization techniqes sch as Simple Kriging or Seqential Gassian Simlation rely on stationary

More information

A New Approach to Direct Sequential Simulation that Accounts for the Proportional Effect: Direct Lognormal Simulation

A New Approach to Direct Sequential Simulation that Accounts for the Proportional Effect: Direct Lognormal Simulation A ew Approach to Direct eqential imlation that Acconts for the Proportional ffect: Direct ognormal imlation John Manchk, Oy eangthong and Clayton Detsch Department of Civil & nvironmental ngineering University

More information

10.4 Solving Equations in Quadratic Form, Equations Reducible to Quadratics

10.4 Solving Equations in Quadratic Form, Equations Reducible to Quadratics . Solving Eqations in Qadratic Form, Eqations Redcible to Qadratics Now that we can solve all qadratic eqations we want to solve eqations that are not eactl qadratic bt can either be made to look qadratic

More information

Study on the Mathematic Model of Product Modular System Orienting the Modular Design

Study on the Mathematic Model of Product Modular System Orienting the Modular Design Natre and Science, 2(, 2004, Zhong, et al, Stdy on the Mathematic Model Stdy on the Mathematic Model of Prodct Modlar Orienting the Modlar Design Shisheng Zhong 1, Jiang Li 1, Jin Li 2, Lin Lin 1 (1. College

More information

Some variations on the telescope conjecture

Some variations on the telescope conjecture Contemporary Mathematics Volme 00, 0000 Some variations on the telescope conjectre DOUGLAS C. RAVENEL November 29, 1993 Abstract. This paper presents some speclations abot alternatives to the recently

More information

Decoder Error Probability of MRD Codes

Decoder Error Probability of MRD Codes Decoder Error Probability of MRD Codes Maximilien Gadolea Department of Electrical and Compter Engineering Lehigh University Bethlehem, PA 18015 USA E-mail: magc@lehighed Zhiyan Yan Department of Electrical

More information

The Steiner Ratio for Obstacle-Avoiding Rectilinear Steiner Trees

The Steiner Ratio for Obstacle-Avoiding Rectilinear Steiner Trees The Steiner Ratio for Obstacle-Avoiding Rectilinear Steiner Trees Anna Lubiw Mina Razaghpour Abstract We consider the problem of finding a shortest rectilinear Steiner tree for a given set of pointn the

More information

The Real Stabilizability Radius of the Multi-Link Inverted Pendulum

The Real Stabilizability Radius of the Multi-Link Inverted Pendulum Proceedings of the 26 American Control Conference Minneapolis, Minnesota, USA, Jne 14-16, 26 WeC123 The Real Stabilizability Radis of the Mlti-Link Inerted Pendlm Simon Lam and Edward J Daison Abstract

More information

3.1 The Basic Two-Level Model - The Formulas

3.1 The Basic Two-Level Model - The Formulas CHAPTER 3 3 THE BASIC MULTILEVEL MODEL AND EXTENSIONS In the previos Chapter we introdced a nmber of models and we cleared ot the advantages of Mltilevel Models in the analysis of hierarchically nested

More information

G. Mahadevan 1 Selvam Avadayappan 2 V. G. Bhagavathi Ammal 3 T. Subramanian 4

G. Mahadevan 1 Selvam Avadayappan 2 V. G. Bhagavathi Ammal 3 T. Subramanian 4 G. Mahadean, Selam Aadaappan, V. G. Bhagaathi Ammal, T. Sbramanian / International Jornal of Engineering Research and Applications (IJERA) ISSN: 2248-9622 www.ijera.com Vol. 2, Isse 6, Noember- December

More information

The Dual of the Maximum Likelihood Method

The Dual of the Maximum Likelihood Method Department of Agricltral and Resorce Economics University of California, Davis The Dal of the Maximm Likelihood Method by Qirino Paris Working Paper No. 12-002 2012 Copyright @ 2012 by Qirino Paris All

More information

UNCERTAINTY FOCUSED STRENGTH ANALYSIS MODEL

UNCERTAINTY FOCUSED STRENGTH ANALYSIS MODEL 8th International DAAAM Baltic Conference "INDUSTRIAL ENGINEERING - 19-1 April 01, Tallinn, Estonia UNCERTAINTY FOCUSED STRENGTH ANALYSIS MODEL Põdra, P. & Laaneots, R. Abstract: Strength analysis is a

More information