Non-Lecture I: Linear Programming. Th extremes of glory and of shame, Like east and west, become the same.

Size: px
Start display at page:

Download "Non-Lecture I: Linear Programming. Th extremes of glory and of shame, Like east and west, become the same."

Transcription

1 The greatest flood has the soonest ebb; the sorest tempest the most sdden calm; the hottest love the coldest end; and from the deepest desire oftentimes enses the deadliest hate. Th extremes of glory and of shame, Like east and est, become the same. Socrates Samel Btler, Hdibras Part II, Canto I (c. 1670) Extremes meet, and there is no better example than the haghtiness of hmility. Ralph Waldo Emerson, Greatness, in Letters and Social Aims (1876) I Linear Programming The maximm flo/minimm ct problem is a special case of a very general class of problems called linear programming. Many other optimization problems fall into this class, inclding minimm spanning trees and shortest paths, as ell as several common problems in schedling, logistics, and economics. Linear programming as sed implicitly by Forier in the early 1800s, bt it as first formalized and applied to problems in economics in the 1930s by Leonid Kantorovich. Kantorivich s ork as hidden behind the Iron Crtain (here it as largely ignored) and therefore nknon in the West. Linear programming as rediscovered and applied to shipping problems in the early 1940s by Tjalling Koopmans. The first complete algorithm to solve linear programming problems, called the simplex method, as pblished by George Dantzig in Koopmans first proposed the name linear programming" in a discssion ith Dantzig in Kantorovich and Koopmans shared the 1975 Nobel Prize in Economics for their contribtions to the theory of optimm allocation of resorces. Dantzig did not; his ork as apparently too pre. Koopmans rote to Kantorovich sggesting that they refse the prize in protest of Dantzig s exclsion, bt Kantorovich sa the prize as a vindication of his se of mathematics in economics, hich his Soviet colleages had ritten off as a means for apologists of capitalism. A linear programming problem asks for a vector x IR d that maximizes (or eqivalently, minimizes) a given linear fnction, among all vectors x that satisfy a given set of linear ineqalities. The general form of a linear programming problem is the folloing: maximize c j x j sbject to a i j x j b i a i j x j = b i a i j x j b i for each i = 1.. p for each i = p p + q for each i = p + q n Here, the inpt consists of a matrix A = (a i j ) IR n d, a colmn vector b IR n, and a ro vector c IR d. Each coordinate of the vector x is called a variable. Each of the linear ineqalities is called a constraint. The fnction x c x is called the objective fnction. I ill alays se d to denote the nmber of variables, also knon as the dimension of the problem. The nmber of constraints is sally denoted n. 1

2 A linear programming problem is said to be in canonical form 1 if it has the folloing strctre: maximize c j x j sbject to a i j x j b i x j 0 for each i = 1.. n for each j = 1.. d We can express this canonical form more compactly as follos. For to vectors x = (x 1, x 2,..., x d ) and y = (y 1, y 2,..., y d ), the expression x y means that x i y i for every index i. s.t. Ax b x 0 Any linear programming problem can be converted into canonical form as follos: For each variable x j, add the eqality constraint x j = x + j x j and the ineqalities x + j 0 and x j 0. Replace any eqality constraint j a i j x j = b i ith to ineqality constraints j a i j x j b i and j a i j x j b i. Replace any pper bond j a i j x j b i ith the eqivalent loer bond j a i j x j b i. This conversion potentially doble the nmber of variables and the nmber of constraints; fortnately, it is rarely necessary in practice. Another sefl format for linear programming problems is slack form 2, in hich every ineqality is of the form x j 0: s.t. Ax = b x 0 It s fairly easy to convert any linear programming problem into slack form. Slack form is especially sefl in execting the simplex algorithm (hich e ll see in the next lectre). I.1 The Geometry of Linear Programming A point x IR d is feasible ith respect to some linear programming problem if it satisfies all the linear constraints. The set of all feasible points is called the feasible region for that linear program. The feasible region has a particlarly nice geometric strctre that lends some sefl intition to the linear programming algorithms e ll see later. Any linear eqation in d variables defines a hyperplane in IR d ; think of a line hen d = 2, or a plane hen d = 3. This hyperplane divides IR d into to halfspaces; each halfspace is the set of points that satisfy some linear ineqality. Ths, the set of feasible points is the intersection of several hyperplanes 1 Confsingly, some athors call this standard form. 2 Confsingly, some athors call this standard form. 2

3 (one for each eqality constraint) and halfspaces (one for each ineqality constraint). The intersection of a finite nmber of hyperplanes and halfspaces is called a polyhedron. It s not hard to verify that any halfspace, and therefore any polyhedron, is convex if a polyhedron contains to points x and y, then it contains the entire line segment x y. A to-dimensional polyhedron (hite) defined by 10 linear ineqalities. By rotating IR d (or choosing a coordinate frame) so that the objective fnction points donard, e can express any linear programming problem in the folloing geometric form: Find the loest point in a given polyhedron. With this geometry in hand, e can easily pictre to pathological cases here a given linear programming problem has no soltion. The first possibility is that there are no feasible points; in this case the problem is called infeasible. For example, the folloing LP problem is infeasible: maximize x y sbject to 2x + y 1 x + y 2 x, y 0 An infeasible linear programming problem; arros indicate the constraints. The second possibility is that there are feasible points at hich the objective fnction is arbitrarily large; in this case, e call the problem nbonded. The same polyhedron cold be nbonded for some objective fnctions bt not others, or it cold be nbonded for every objective fnction. A to-dimensional polyhedron (hite) that is nbonded donard bt bonded pard. 3

4 I.2 Example 1: Shortest Paths We can compte the length of the shortest path from s to t in a eighted directed graph by solving the folloing very simple linear programming problem. maximize d t sbject to d s = 0 d v d l v Here, l v is the length of the edge v. Each variable d v represents a tentative shortest-path distance from s to v. The constraints mirror the reqirement that every edge in the graph mst be relaxed. These relaxation constraints imply that in any feasible soltion, d v is at most the shortest path distance from s to v. Ths, somehat conterintitively, e are correctly maximizing the objective fnction to compte the shortest path! In the optimal soltion, the objective fnction d t is the actal shortest-path distance from s to t, bt for any vertex v that is not on the shortest path from s to t, d v may be an nderestimate of the tre distance from s to v. Hoever, e can obtain the tre distances from s to every other vertex by modifying the objective fnction: maximize v d v sbject to d s = 0 d v d l v There is another formlation of shortest paths as an LP minimization problem sing an indicator variable x v for each edge v. minimize l v x v v sbject to x s x s = 1 x t x t = 1 x v x v = 0 x v 0 for every vertex v s, t Intitively, x v = 1 means v lies on the shortest path from s to t, and x v = 0 means v does not lie on this shortest path. The constraints merely state that the path shold start at s, end at t, and either pass throgh or avoid every other vertex v. Any path from s to t in particlar, the shortest path clearly implies a feasible point for this linear program. Hoever, there are other feasible soltions, possibly even optimal soltions, ith non-integral vales that do not represent paths. Nevertheless, there is alays an optimal soltion in hich every x e is either 0 or 1 and the edges e ith x e = 1 comprise the shortest path. (This fact is by no means obvios, bt a proof is beyond the scope of these notes.) Moreover, in any optimal soltion, even if not every x e is an integer, the objective fnction gives the shortest path distance! I.3 Example 2: Maximm Flos and Minimm Cts Recall that the inpt to the maximm (s, t)-flo problem consists of a eighted directed graph G = (V, E), to special vertices s and t, and a fnction assigning a non-negative capacity c e to each edge e. Or task 4

5 is to choose the flo f e across each edge e, as follos: maximize f s sbject to f s f v f v = 0 f v c v f v 0 for every vertex v s, t Similarly, the minimm ct problem can be formlated sing indicator variables similarly to the shortest path problem. We have a variable S v for each vertex v, indicating hether v S or v T, and a variable X v for each edge v, indicating hether S and v T, here (S, T) is some (s, t)-ct. 3 minimize c v X v v sbject to X v + S v S 0 X v 0 S s = 1 S t = 0 Like the minimization LP for shortest paths, there can be optimal soltions that assign fractional vales to the variables. Nevertheless, the minimm vale for the objective fnction is the cost of the minimm ct, and there is an optimal soltion for hich every variable is either 0 or 1, representing an actal minimm ct. No, this is not obvios; in particlar, my claim is not a proof! I.4 Linear Programming Dality Each of these pairs of linear programming problems is related by a transformation called dality. For any linear programming problem, there is a corresponding dal linear program that can be obtained by a mechanical translation, essentially by sapping the constraints and the variables. The translation is simplest hen the LP is in canonical form: Primal (Π) s.t. Ax b x 0 Dal ( ) min y b s.t. ya c y 0 We can also rite the dal linear program in exactly the same canonical form as the primal, by sapping the coefficient vector c and the objective vector b, negating both vectors, and replacing the constraint matrix A ith its negative transpose. 4 Primal (Π) s.t. Ax b x 0 Dal ( ) max b y s.t. A y c y 0 3 These to linear programs are not qite syntactic dals; I ve added to redndant variables S s and S t to the min-ct program to increase readability. 4 For the notational prists: In these formlations, x and b are colmn vectors, and y and c are ro vectors. This is a somehat nonstandard choice. Yes, that means the dot in c x is redndant. Se me. 5

6 Written in this form, it shold be immediately clear that dality is an involtion: The dal of the dal linear program is identical to the primal linear program Π. The choice of hich LP to call the primal and hich to call the dal is totally arbitrary. 5 The Fndamental Theorem of Linear Programming. A linear program Π has an optimal soltion x if and only if the dal linear program has an optimal soltion y sch that c x = y Ax = y b. The eak form of this theorem is trivial to prove. Weak Dality Theorem. If x is a feasible soltion for a canonical linear program Π and y is a feasible soltion for its dal, then c x yax y b. Proof: Becase x is feasible for Π, e have Ax b. Since y is positive, e can mltiply both sides of the ineqality to obtain yax y b. Conversely, y is feasible for and x is positive, so yax c x. It immediately follos that if c x = y b, then x and y are optimal soltions to their respective linear programs. This is in fact a fairly common ay to prove that e have the optimal vale for a linear program. I.5 Dality Example Before I prove the stronger dality theorem, let me first provide some intition abot here this dality thing comes from in the first place. 6 Consider the folloing linear programming problem: maximize 4x 1 + x 2 + 3x 3 sbject to x 1 + 4x 2 2 3x 1 x 2 + x 3 4 x 1, x 2, x 3 0 Let σ denote the optimm objective vale for this LP. The feasible soltion x = (1, 0, 0) gives s a loer bond σ 4. A different feasible soltion x = (0, 0, 3) gives s a better loer bond σ 9. We cold play this game all day, finding different feasible soltions and getting ever larger loer bonds. Ho do e kno hen e re done? Is there a ay to prove an pper bond on σ? In fact, there is. Let s mltiply each of the constraints in or LP by a ne non-negative scalar vale y i : maximize 4x 1 + x 2 + 3x 3 sbject to y 1 ( x 1 + 4x 2 ) 2 y 1 y 2 (3x 1 x 2 + x 3 ) 4 y 2 x 1, x 2, x 3 0 Becase each y i is non-negative, e do not reverse any of the ineqalities. Any feasible soltion (x 1, x 2, x 3 ) mst satisfy both of these ineqalities, so it mst also satisfy their sm: (y y 2 )x 1 + (4 y 1 y 2 )x 2 + y 2 x 3 2 y y 2. 5 For historical reasons, maximization LPs tend to be called primal and minimization LPs tend to be called dal. This is a pointless religios tradition, nothing more. Dality is a relationship beteen LP problems, not a type of LP problem. 6 This example is taken from Robert Vanderbei s excellent textbook Linear Programming: Fondations and Extensions [Springer, 2001], bt the idea appears earlier in Jens Clasen s 1997 paper Teaching Dality in Linear Programming: The Mltiplier Approach. 6

7 No sppose that each y i is larger than the ith coefficient of the objective fnction: y y 2 4, 4y 1 y 2 1, y 2 3. This assmption lets s derive an pper bond on the objective vale of any feasible soltion: 4x 1 + x 2 + 3x 3 (y y 2 )x 1 + (4 y 1 y 2 )x 2 + y 2 x 3 2 y y 2. ( ) In particlar, by plgging in the optimal soltion (x 1, x 2, x 3 ) for the original LP, e obtain the folloing pper bond on σ : σ = 4x 1 + x 2 + 3x 3 2 y y 2. No it s natral to ask ho tight e can make this pper bond. Ho small can e make the expression 2y y 2 ithot violating any of the ineqalities e sed to prove the pper bond? This is jst another linear programming problem. minimize 2y y 2 sbject to y y y 1 y 2 1 y 2 3 y 1, y 2 0 In fact, this is precisely the dal of or original linear program! Moreover, ineqality ( ) is jst an instantiation of the Weak Dality Theorem. I.6 Strong Dality The Fndamental Theorem can be rephrased in the folloing form: Strong Dality Theorem. If x is an optimal soltion for a canonical linear program Π, then there is an optimal soltion y for its dal, sch that c x = y Ax = y b. Proof (Sketch): I ll prove the theorem only for non-degenerate linear programs, in hich (a) the optimal soltion (if one exists) is a niqe vertex of the feasible region, and (b) at most d constraint planes pass throgh any point. These non-degeneracy assmptions are relatively easy to enforce in practice and can be removed from the proof at the expense of some technical detail. I ill also prove the theorem only for the case n d; the argment for nder-constrained LPs is similar (if not simpler). Let x be the optimal soltion for the linear program Π; non-degeneracy implies that this soltion is niqe, and that exactly d of the n linear constraints are satisfied ith eqality. Withot loss of generality (by permting the ros of A), e can assme that these are the first d constraints. So let A be the d d matrix containing the first d ros of A, and let A denote the other n d ros. Similarly, partition b into its first d coordinates b and everything else b. Ths, e have partitioned the ineqality Ax b into a system of eqations A x = b and a system of strict ineqalities A x < b. No let y = (y, y ) here y = ca 1 and y = 0. We easily verify that y b = c x : y b = y b + y b = y b = ca 1 b = c x. (The existence of the inverse matrix A 1 follos from or non-degeneracy assmption.) Similarly, it s easy to verify that y A c: y A = y A + y A = y A = c. 7

8 Once e prove that y is non-negative, and therefore feasible, the Weak Dality Theorem implies the reslt. We chose y = 0. As e ill see belo, the optimality of x implies the strict ineqality y > 0 e had to se optimality somehere! This is the hardest part of the proof. The key insight is to give a geometric interpretation to the vector y = ca 1. Each ro of the linear system A x = b describes a hyperplane a i x = b i in IR d. The vector a i is normal to this hyperplane and points ot of the feasible region. The vectors a 1,..., a d are linearly independent (by non-degeneracy) and ths describe a coordinate frame for the vector space IR d. The definition of y can be reritten as follos: c = y A = y i a i. In other ords, y lists the coefficients of the objective vector c in the coordinate frame a 1,..., a d. The point x lies on exactly d constraint hyperplanes; any d 1 of these hyperplanes determine a line throgh x. For each 1 i d, let l i denote the line that lies on all bt the ith constraint plane, and let v i denote a vector based at x that points into the halfspace a i x b i along the line l i. This vector lies along an edge of the feasible polytope. For all j i, e have a j v i = 0. Ths, e can rite i=1 A v i = (0,..., 0, a i v i, 0,..., 0) here the scalar a i v i appears in the ith coordinate. It follos that c v i = y A v i = y i (a i v i ). The optimality of x implies that c v i < 0, and becase v i points into the feasible region hile a i points ot, e have a i v i < 0. We conclde that y i > 0. We re done! Exercises 1. (a) Describe precisely ho to dalize a linear program ritten in slack form: s.t. Ax = b x 0 (b) Describe precisely ho to dalize a linear program ritten in general form: maximize c j x j sbject to a i j x j b i a i j x j = b i a i j x j b i for each i = 1.. p for each i = p p + q for each i = p + q n In both cases, keep the nmber of dal variables as small as possible. 8

9 2. A matrix A = (a i j ) is ske-symmetric if and only if a ji = a i j for all indices i j; in particlar, every ske-symmetric matrix is sqare. A canonical linear program max{c x Ax b; x 0} is self-dal if the matrix A is ske-symmetric and the objective vector c is eqal to the constraint vector b. (a) Prove any self-dal linear program Π is eqivalent to its dal program. (b) Sho that any linear program Π ith d variables and n constraints can be transformed into a self-dal linear program ith n + d variables and n + d constraints. The optimal soltion to the self-dal program shold inclde both the optimal soltion for Π (in d of the variables) and the optimal soltion for the dal program (in the other n variables). 3. (a) Model the maximm-cardinality bipartite matching problem as a linear programming problem. The inpt is a bipartite graph G = (U V ; E), here E U V ; the otpt is the largest matching in G. Yor linear program shold have one variable for each edge. (b) No dalize the linear program from part (a). What do the dal variables represent? What does the objective fnction represent? What problem is this!? 4. An integer program is a linear program ith the additional constraint that the variables mst take only integer vales. (a) Prove that deciding hether an integer program has a feasible soltion is NP-complete. (b) Prove that finding the optimal feasible soltion to an integer program is NP-hard. [Hint: Almost any NP-hard decision problem can be formlated as an integer program. Pick yor favorite.] 5. Helly s theorem states that for any collection of convex bodies in IR d, if every d + 1 of them intersect, then there is a point lying in the intersection of all of them. Prove Helly s theorem for the special case here the convex bodies are halfspaces. Eqivalently, sho that if a system of linear ineqalities Ax b does not have a soltion, then e can select d + 1 of the ineqalities sch that the reslting sbsystem also does not have a soltion. [Hint: Constrct a dal LP from the system by choosing a 0 cost vector.] c Copyright 2009 Jeff Erickson. Released nder a Creative Commons Attribtion-NonCommercial-ShareAlike 3.0 License ( Free distribtion is strongly encoraged; commercial distribtion is expressly forbidden. See for the most recent revision. 9

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

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

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

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

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

On Multiobjective Duality For Variational Problems

On Multiobjective Duality For Variational Problems The Open Operational Research Jornal, 202, 6, -8 On Mltiobjective Dality For Variational Problems. Hsain *,, Bilal Ahmad 2 and Z. Jabeen 3 Open Access Department of Mathematics, Jaypee University of Engineering

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

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

B-469 Simplified Copositive and Lagrangian Relaxations for Linearly Constrained Quadratic Optimization Problems in Continuous and Binary Variables

B-469 Simplified Copositive and Lagrangian Relaxations for Linearly Constrained Quadratic Optimization Problems in Continuous and Binary Variables B-469 Simplified Copositive and Lagrangian Relaxations for Linearly Constrained Qadratic Optimization Problems in Continos and Binary Variables Naohiko Arima, Snyong Kim and Masakaz Kojima October 2012,

More information

Spanning Trees with Many Leaves in Graphs without Diamonds and Blossoms

Spanning Trees with Many Leaves in Graphs without Diamonds and Blossoms Spanning Trees ith Many Leaes in Graphs ithot Diamonds and Blossoms Pal Bonsma Florian Zickfeld Technische Uniersität Berlin, Fachbereich Mathematik Str. des 7. Jni 36, 0623 Berlin, Germany {bonsma,zickfeld}@math.t-berlin.de

More information

J.A. BURNS AND B.B. KING redced order controllers sensors/actators. The kernels of these integral representations are called fnctional gains. In [4],

J.A. BURNS AND B.B. KING redced order controllers sensors/actators. The kernels of these integral representations are called fnctional gains. In [4], Jornal of Mathematical Systems, Estimation, Control Vol. 8, No. 2, 1998, pp. 1{12 c 1998 Birkhaser-Boston A Note on the Mathematical Modelling of Damped Second Order Systems John A. Brns y Belinda B. King

More information

Essentials of optimal control theory in ECON 4140

Essentials of optimal control theory in ECON 4140 Essentials of optimal control theory in ECON 4140 Things yo need to know (and a detail yo need not care abot). A few words abot dynamic optimization in general. Dynamic optimization can be thoght of as

More information

Lecture 13: Duality Uses and Correspondences

Lecture 13: Duality Uses and Correspondences 10-725/36-725: Conve Optimization Fall 2016 Lectre 13: Dality Uses and Correspondences Lectrer: Ryan Tibshirani Scribes: Yichong X, Yany Liang, Yanning Li Note: LaTeX template cortesy of UC Berkeley EECS

More information

Subcritical bifurcation to innitely many rotating waves. Arnd Scheel. Freie Universitat Berlin. Arnimallee Berlin, Germany

Subcritical bifurcation to innitely many rotating waves. Arnd Scheel. Freie Universitat Berlin. Arnimallee Berlin, Germany Sbcritical bifrcation to innitely many rotating waves Arnd Scheel Institt fr Mathematik I Freie Universitat Berlin Arnimallee 2-6 14195 Berlin, Germany 1 Abstract We consider the eqation 00 + 1 r 0 k2

More information

Linear System Theory (Fall 2011): Homework 1. Solutions

Linear System Theory (Fall 2011): Homework 1. Solutions Linear System Theory (Fall 20): Homework Soltions De Sep. 29, 20 Exercise (C.T. Chen: Ex.3-8). Consider a linear system with inpt and otpt y. Three experiments are performed on this system sing the inpts

More information

1 Undiscounted Problem (Deterministic)

1 Undiscounted Problem (Deterministic) Lectre 9: Linear Qadratic Control Problems 1 Undisconted Problem (Deterministic) Choose ( t ) 0 to Minimize (x trx t + tq t ) t=0 sbject to x t+1 = Ax t + B t, x 0 given. x t is an n-vector state, t a

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

4.2 First-Order Logic

4.2 First-Order Logic 64 First-Order Logic and Type Theory The problem can be seen in the two qestionable rles In the existential introdction, the term a has not yet been introdced into the derivation and its se can therefore

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

Concept of Stress at a Point

Concept of Stress at a Point Washkeic College of Engineering Section : STRONG FORMULATION Concept of Stress at a Point Consider a point ithin an arbitraril loaded deformable bod Define Normal Stress Shear Stress lim A Fn A lim A FS

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

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

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

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

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

Bayes and Naïve Bayes Classifiers CS434

Bayes and Naïve Bayes Classifiers CS434 Bayes and Naïve Bayes Classifiers CS434 In this lectre 1. Review some basic probability concepts 2. Introdce a sefl probabilistic rle - Bayes rle 3. Introdce the learning algorithm based on Bayes rle (ths

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

1 The space of linear transformations from R n to R m :

1 The space of linear transformations from R n to R m : Math 540 Spring 20 Notes #4 Higher deriaties, Taylor s theorem The space of linear transformations from R n to R m We hae discssed linear transformations mapping R n to R m We can add sch linear transformations

More information

Study on the impulsive pressure of tank oscillating by force towards multiple degrees of freedom

Study on the impulsive pressure of tank oscillating by force towards multiple degrees of freedom EPJ Web of Conferences 80, 0034 (08) EFM 07 Stdy on the implsive pressre of tank oscillating by force towards mltiple degrees of freedom Shigeyki Hibi,* The ational Defense Academy, Department of Mechanical

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

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

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

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

III. Demonstration of a seismometer response with amplitude and phase responses at:

III. Demonstration of a seismometer response with amplitude and phase responses at: GG5330, Spring semester 006 Assignment #1, Seismometry and Grond Motions De 30 Janary 006. 1. Calibration Of A Seismometer Using Java: A really nifty se of Java is now available for demonstrating the seismic

More information

Optimization via the Hamilton-Jacobi-Bellman Method: Theory and Applications

Optimization via the Hamilton-Jacobi-Bellman Method: Theory and Applications Optimization via the Hamilton-Jacobi-Bellman Method: Theory and Applications Navin Khaneja lectre notes taken by Christiane Koch Jne 24, 29 1 Variation yields a classical Hamiltonian system Sppose that

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

STEP Support Programme. STEP III Hyperbolic Functions: Solutions

STEP Support Programme. STEP III Hyperbolic Functions: Solutions STEP Spport Programme STEP III Hyperbolic Fnctions: Soltions Start by sing the sbstittion t cosh x. This gives: sinh x cosh a cosh x cosh a sinh x t sinh x dt t dt t + ln t ln t + ln cosh a ln ln cosh

More information

Chem 4501 Introduction to Thermodynamics, 3 Credits Kinetics, and Statistical Mechanics. Fall Semester Homework Problem Set Number 10 Solutions

Chem 4501 Introduction to Thermodynamics, 3 Credits Kinetics, and Statistical Mechanics. Fall Semester Homework Problem Set Number 10 Solutions Chem 4501 Introdction to Thermodynamics, 3 Credits Kinetics, and Statistical Mechanics Fall Semester 2017 Homework Problem Set Nmber 10 Soltions 1. McQarrie and Simon, 10-4. Paraphrase: Apply Eler s theorem

More information

arxiv: v2 [math.co] 21 Oct 2010

arxiv: v2 [math.co] 21 Oct 2010 Contemporary Mathematics arxiv:0907.2701v2 [math.co] 21 Oct 2010 Closed Form Expressions for Hodge Nmbers of Complete Intersection Calabi-Ya Threefolds in Toric Varieties Charles F. Doran and Andrey Y.

More information

Krauskopf, B., Lee, CM., & Osinga, HM. (2008). Codimension-one tangency bifurcations of global Poincaré maps of four-dimensional vector fields.

Krauskopf, B., Lee, CM., & Osinga, HM. (2008). Codimension-one tangency bifurcations of global Poincaré maps of four-dimensional vector fields. Kraskopf, B, Lee,, & Osinga, H (28) odimension-one tangency bifrcations of global Poincaré maps of for-dimensional vector fields Early version, also known as pre-print Link to pblication record in Explore

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

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

Geometry of the Legendre transformation

Geometry of the Legendre transformation 1. Introdction. Geometry of the Legendre transformation Paeł Urbański Katedra etod atematycznych Fizyki, Uniersytet Warszaski Hoża 74, 00-682 Warszaa email: rbanski@f.ed.pl Lagrangian systems Hamiltonian

More information

Topics in Theoretical Computer Science April 08, Lecture 8

Topics in Theoretical Computer Science April 08, Lecture 8 Topics in Theoretical Computer Science April 08, 204 Lecture 8 Lecturer: Ola Svensson Scribes: David Leydier and Samuel Grütter Introduction In this lecture we will introduce Linear Programming. It was

More information

LINEAR COMBINATIONS AND SUBSPACES

LINEAR COMBINATIONS AND SUBSPACES CS131 Part II, Linear Algebra and Matrices CS131 Mathematics for Compter Scientists II Note 5 LINEAR COMBINATIONS AND SUBSPACES Linear combinations. In R 2 the vector (5, 3) can be written in the form

More information

BIOSTATISTICAL METHODS

BIOSTATISTICAL METHODS BIOSTATISTICAL METHOS FOR TRANSLATIONAL & CLINICAL RESEARCH ROC Crve: IAGNOSTIC MEICINE iagnostic tests have been presented as alwas having dichotomos otcomes. In some cases, the reslt of the test ma be

More information

The Heat Equation and the Li-Yau Harnack Inequality

The Heat Equation and the Li-Yau Harnack Inequality The Heat Eqation and the Li-Ya Harnack Ineqality Blake Hartley VIGRE Research Paper Abstract In this paper, we develop the necessary mathematics for nderstanding the Li-Ya Harnack ineqality. We begin with

More information

Introdction Finite elds play an increasingly important role in modern digital commnication systems. Typical areas of applications are cryptographic sc

Introdction Finite elds play an increasingly important role in modern digital commnication systems. Typical areas of applications are cryptographic sc A New Architectre for a Parallel Finite Field Mltiplier with Low Complexity Based on Composite Fields Christof Paar y IEEE Transactions on Compters, Jly 996, vol 45, no 7, pp 856-86 Abstract In this paper

More information

We automate the bivariate change-of-variables technique for bivariate continuous random variables with

We automate the bivariate change-of-variables technique for bivariate continuous random variables with INFORMS Jornal on Compting Vol. 4, No., Winter 0, pp. 9 ISSN 09-9856 (print) ISSN 56-558 (online) http://dx.doi.org/0.87/ijoc.046 0 INFORMS Atomating Biariate Transformations Jeff X. Yang, John H. Drew,

More information

Lecture Notes: Finite Element Analysis, J.E. Akin, Rice University

Lecture Notes: Finite Element Analysis, J.E. Akin, Rice University 9. TRUSS ANALYSIS... 1 9.1 PLANAR TRUSS... 1 9. SPACE TRUSS... 11 9.3 SUMMARY... 1 9.4 EXERCISES... 15 9. Trss analysis 9.1 Planar trss: The differential eqation for the eqilibrim of an elastic bar (above)

More information

Reaction-Diusion Systems with. 1-Homogeneous Non-linearity. Matthias Buger. Mathematisches Institut der Justus-Liebig-Universitat Gieen

Reaction-Diusion Systems with. 1-Homogeneous Non-linearity. Matthias Buger. Mathematisches Institut der Justus-Liebig-Universitat Gieen Reaction-Dision Systems ith 1-Homogeneos Non-linearity Matthias Bger Mathematisches Institt der Jsts-Liebig-Uniersitat Gieen Arndtstrae 2, D-35392 Gieen, Germany Abstract We describe the dynamics of a

More information

J. Klein, R. Schwanzl, R. M. Vogt. It has been known for a long time that an (n? 1)-connected CW -complex

J. Klein, R. Schwanzl, R. M. Vogt. It has been known for a long time that an (n? 1)-connected CW -complex Co-Mltiplication and Sspension J. Klein, R. Schanzl, R. M. Vogt 1 Introdction It has been knon for a long time that an (n? 1)-connected CW -complex of dimension 2n? 1 has the homotopy type of a sspension.

More information

Modelling by Differential Equations from Properties of Phenomenon to its Investigation

Modelling by Differential Equations from Properties of Phenomenon to its Investigation Modelling by Differential Eqations from Properties of Phenomenon to its Investigation V. Kleiza and O. Prvinis Kanas University of Technology, Lithania Abstract The Panevezys camps of Kanas University

More information

Control Systems

Control Systems 6.5 Control Systems Last Time: Introdction Motivation Corse Overview Project Math. Descriptions of Systems ~ Review Classification of Systems Linear Systems LTI Systems The notion of state and state variables

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

Lateral Load Capacity of Piles

Lateral Load Capacity of Piles Lateral Load Capacity of Piles M. T. DAVSSON, Department of Civil Engineering, University of llinois, Urbana Pile fondations sally find resistance to lateral loads from (a) passive soil resistance on the

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

A Model-Free Adaptive Control of Pulsed GTAW

A Model-Free Adaptive Control of Pulsed GTAW A Model-Free Adaptive Control of Plsed GTAW F.L. Lv 1, S.B. Chen 1, and S.W. Dai 1 Institte of Welding Technology, Shanghai Jiao Tong University, Shanghai 00030, P.R. China Department of Atomatic Control,

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

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

Effects Of Symmetry On The Structural Controllability Of Neural Networks: A Perspective

Effects Of Symmetry On The Structural Controllability Of Neural Networks: A Perspective 16 American Control Conference (ACC) Boston Marriott Copley Place Jly 6-8, 16. Boston, MA, USA Effects Of Symmetry On The Strctral Controllability Of Neral Networks: A Perspective Andrew J. Whalen 1, Sean

More information

Model Discrimination of Polynomial Systems via Stochastic Inputs

Model Discrimination of Polynomial Systems via Stochastic Inputs Model Discrimination of Polynomial Systems via Stochastic Inpts D. Georgiev and E. Klavins Abstract Systems biologists are often faced with competing models for a given experimental system. Unfortnately,

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

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

Predicting Popularity of Twitter Accounts through the Discovery of Link-Propagating Early Adopters

Predicting Popularity of Twitter Accounts through the Discovery of Link-Propagating Early Adopters Predicting Poplarity of Titter Acconts throgh the Discoery of Link-Propagating Early Adopters Daichi Imamori Gradate School of Informatics, Kyoto Uniersity Sakyo, Kyoto 606-850 Japan imamori@dl.soc.i.kyoto-.ac.jp

More information

Konyalioglu, Serpil. Konyalioglu, A.Cihan. Ipek, A.Sabri. Isik, Ahmet

Konyalioglu, Serpil. Konyalioglu, A.Cihan. Ipek, A.Sabri. Isik, Ahmet The Role of Visalization Approach on Stdent s Conceptal Learning Konyaliogl, Serpil Department of Secondary Science and Mathematics Edcation, K.K. Edcation Faclty, Atatürk University, 25240- Erzrm-Trkey;

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

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

1 Overview. 2 Extreme Points. AM 221: Advanced Optimization Spring 2016

1 Overview. 2 Extreme Points. AM 221: Advanced Optimization Spring 2016 AM 22: Advanced Optimization Spring 206 Prof. Yaron Singer Lecture 7 February 7th Overview In the previous lectures we saw applications of duality to game theory and later to learning theory. In this lecture

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

Andrew W. Moore Professor School of Computer Science Carnegie Mellon University

Andrew W. Moore Professor School of Computer Science Carnegie Mellon University Spport Vector Machines Note to other teachers and sers of these slides. Andrew wold be delighted if yo fond this sorce material sefl in giving yor own lectres. Feel free to se these slides verbatim, or

More information

Least-squares collocation with covariance-matching constraints

Least-squares collocation with covariance-matching constraints J Geodesy DOI 1.17/s19-7-133-5 ORIGINAL ARTICLE Least-sqares collocation with covariance-matching constraints Christopher Kotsakis Received: 18 Agst 26 / Accepted: 28 December 26 Springer-Verlag 27 Abstract

More information

Simulation investigation of the Z-source NPC inverter

Simulation investigation of the Z-source NPC inverter octoral school of energy- and geo-technology Janary 5 20, 2007. Kressaare, Estonia Simlation investigation of the Z-sorce NPC inverter Ryszard Strzelecki, Natalia Strzelecka Gdynia Maritime University,

More information

Collective Motion From Consensus With Cartesian Coordinate Coupling

Collective Motion From Consensus With Cartesian Coordinate Coupling 1330 IEEE TRANSACTIONS ON AUTOMATIC CONTROL, VOL. 54, NO. 6, JUNE 2009 Collective Motion From Consenss With Cartesian Coordinate Copling Wei Ren, Member, IEEE Abstract Collective motions inclding rendezvos,

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

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

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

Multi-Voltage Floorplan Design with Optimal Voltage Assignment

Multi-Voltage Floorplan Design with Optimal Voltage Assignment Mlti-Voltage Floorplan Design with Optimal Voltage Assignment ABSTRACT Qian Zaichen Department of CSE The Chinese University of Hong Kong Shatin,N.T., Hong Kong zcqian@cse.chk.ed.hk In this paper, we stdy

More information

Spring 2017 CO 250 Course Notes TABLE OF CONTENTS. richardwu.ca. CO 250 Course Notes. Introduction to Optimization

Spring 2017 CO 250 Course Notes TABLE OF CONTENTS. richardwu.ca. CO 250 Course Notes. Introduction to Optimization Spring 2017 CO 250 Course Notes TABLE OF CONTENTS richardwu.ca CO 250 Course Notes Introduction to Optimization Kanstantsin Pashkovich Spring 2017 University of Waterloo Last Revision: March 4, 2018 Table

More information

SECTION 6.7. The Dot Product. Preview Exercises. 754 Chapter 6 Additional Topics in Trigonometry. 7 w u 7 2 =?. 7 v 77w7

SECTION 6.7. The Dot Product. Preview Exercises. 754 Chapter 6 Additional Topics in Trigonometry. 7 w u 7 2 =?. 7 v 77w7 754 Chapter 6 Additional Topics in Trigonometry 115. Yo ant to fly yor small plane de north, bt there is a 75-kilometer ind bloing from est to east. a. Find the direction angle for here yo shold head the

More information

CONVERGENCE OF THE HOMOLOGY SPECTRAL SEQUENCE OF A COSIMPLICIAL SPACE. 1. Introduction

CONVERGENCE OF THE HOMOLOGY SPECTRAL SEQUENCE OF A COSIMPLICIAL SPACE. 1. Introduction CONVERGENCE OF THE HOMOLOGY SPECTRAL SEQUENCE OF A COSIMPLICIAL SPACE BROOKE E. SHIPLEY 1. Introdction In this paper e stdy the convergence properties of the homology spectral seqence of a cosimplicial

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

DILUTE GAS-LIQUID FLOWS WITH LIQUID FILMS ON WALLS

DILUTE GAS-LIQUID FLOWS WITH LIQUID FILMS ON WALLS Forth International Conference on CFD in the Oil and Gas, Metallrgical & Process Indstries SINTEF / NTNU Trondheim, Noray 6-8 Jne 005 DILUTE GAS-LIQUID FLOWS WITH LIQUID FILMS ON WALLS John MORUD 1 1 SINTEF

More information

Image and Multidimensional Signal Processing

Image and Multidimensional Signal Processing Image and Mltidimensional Signal Processing Professor William Hoff Dept of Electrical Engineering &Compter Science http://inside.mines.ed/~whoff/ Forier Transform Part : D discrete transforms 2 Overview

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

Lumped-Parameter Model for Foundation on Layer

Lumped-Parameter Model for Foundation on Layer Missori University of Science and Technology Scholars' Mine International Conferences on Recent Advances in Geotechnical Earthqake Engineering and Soil Dynamics 1991 - Second International Conference on

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

Research Article Permanence of a Discrete Predator-Prey Systems with Beddington-DeAngelis Functional Response and Feedback Controls

Research Article Permanence of a Discrete Predator-Prey Systems with Beddington-DeAngelis Functional Response and Feedback Controls Hindawi Pblishing Corporation Discrete Dynamics in Natre and Society Volme 2008 Article ID 149267 8 pages doi:101155/2008/149267 Research Article Permanence of a Discrete Predator-Prey Systems with Beddington-DeAngelis

More information

FEA Solution Procedure

FEA Solution Procedure EA Soltion Procedre (demonstrated with a -D bar element problem) MAE 5 - inite Element Analysis Several slides from this set are adapted from B.S. Altan, Michigan Technological University EA Procedre for

More information

Prediction of Transmission Distortion for Wireless Video Communication: Analysis

Prediction of Transmission Distortion for Wireless Video Communication: Analysis Prediction of Transmission Distortion for Wireless Video Commnication: Analysis Zhifeng Chen and Dapeng W Department of Electrical and Compter Engineering, University of Florida, Gainesville, Florida 326

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

Lectures 6, 7 and part of 8

Lectures 6, 7 and part of 8 Lectures 6, 7 and part of 8 Uriel Feige April 26, May 3, May 10, 2015 1 Linear programming duality 1.1 The diet problem revisited Recall the diet problem from Lecture 1. There are n foods, m nutrients,

More information

A Regulator for Continuous Sedimentation in Ideal Clarifier-Thickener Units

A Regulator for Continuous Sedimentation in Ideal Clarifier-Thickener Units A Reglator for Continos Sedimentation in Ideal Clarifier-Thickener Units STEFAN DIEHL Centre for Mathematical Sciences, Lnd University, P.O. Box, SE- Lnd, Sweden e-mail: diehl@maths.lth.se) Abstract. The

More information

Lecture #21. c T x Ax b. maximize subject to

Lecture #21. c T x Ax b. maximize subject to COMPSCI 330: Design and Analysis of Algorithms 11/11/2014 Lecture #21 Lecturer: Debmalya Panigrahi Scribe: Samuel Haney 1 Overview In this lecture, we discuss linear programming. We first show that the

More information

arxiv: v2 [cs.ds] 17 Oct 2014

arxiv: v2 [cs.ds] 17 Oct 2014 On Uniform Capacitated k-median Beyond the Natral LP Relaxation Shi Li Toyota Technological Institte at Chicago shili@ttic.ed arxiv:1409.6739v2 [cs.ds] 17 Oct 2014 Abstract In this paper, we stdy the niform

More information

PIPELINE MECHANICAL DAMAGE CHARACTERIZATION BY MULTIPLE MAGNETIZATION LEVEL DECOUPLING

PIPELINE MECHANICAL DAMAGE CHARACTERIZATION BY MULTIPLE MAGNETIZATION LEVEL DECOUPLING PIPELINE MECHANICAL DAMAGE CHARACTERIZATION BY MULTIPLE MAGNETIZATION LEVEL DECOUPLING INTRODUCTION Richard 1. Davis & 1. Brce Nestleroth Battelle 505 King Ave Colmbs, OH 40201 Mechanical damage, cased

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

Analysis of the average depth in a suffix tree under a Markov model

Analysis of the average depth in a suffix tree under a Markov model Analysis of the average depth in a sffix tree nder a Markov model Jlien Fayolle, Mark Daniel Ward To cite this version: Jlien Fayolle, Mark Daniel Ward. Analysis of the average depth in a sffix tree nder

More information

Constructive Root Bound for k-ary Rational Input Numbers

Constructive Root Bound for k-ary Rational Input Numbers Constrctive Root Bond for k-ary Rational Inpt Nmbers Sylvain Pion, Chee Yap To cite this version: Sylvain Pion, Chee Yap. Constrctive Root Bond for k-ary Rational Inpt Nmbers. 19th Annal ACM Symposim on

More information

Execution time certification for gradient-based optimization in model predictive control

Execution time certification for gradient-based optimization in model predictive control Exection time certification for gradient-based optimization in model predictive control Giselsson, Ponts Pblished in: [Host pblication title missing] 2012 Link to pblication Citation for pblished version

More information