Documents Found!
As seen in
Less Work, Better Grades
Join
Course Hero
Access
best resources
Ace
your classes
Ace your courses with Course Hero!

Submit your homework question or assignment here:
352 Tutors are online
 
We are so confident that you will love our service, we will answer your first homework question for FREE!
*  Attach Assignment (optional):
 
Study Smarter, Score Higher
 
Document Content (unformatted)
Course Hero has millions of student submitted documents similar to the one below including study guides, homework solutions, papers, exam answer keys and textbook solutions.
Selection Variable Node Selection IE418: Integer Programming Je Linderoth Department of Industrial and Systems Engineering Lehigh University 2nd February 2005 Je Linderoth Variable Selection Node Selection IE418 Integer Programming Boring Stu Extra Linux Class: 8AM 11AM, Wednesday February 9. Room ??? Accounts and Passwords http://coral.ie.lehigh.edu has user information Please use ipxx account when solving your IP problems in COR@L! Use yppasswd to change your password Homework: Due 2/9. (One week warning) Make a copy of your answers before you hand them in A Even better, use LTEXto write up your answers! A special present for you! Je Linderoth IE418 Integer Programming Variable Selection Node Selection Please don t call on me! Name some keys to solving integer programs Relaxations Formulation Formulation so the Relaxation is good Small M s good. Big M s baaaaaaaaaaaaaaaaaaaad....... How does branch-and-bound work? Je Linderoth Variable Selection Node Selection IE418 Integer Programming LP-based Branch and Bound Algorithm 1 To start, derive an lower bound L using a heuristic method (if possible). Put the original problem on the candidate list. Select a problem S from the candidate list and solve the LP relaxation to obtain the bound u(S) If the LP is infeasible node can be pruned. Otherwise, if u(S) L node can be pruned. Otherwise, if u(S) > L and the solution is feasible for the MILP set L u(S). Otherwise, branch. Add the new subproblems to the list. 2 3 4 If the candidate list in nonempty, go to Step 2. Otherwise, the algorithm is completed. Je Linderoth IE418 Integer Programming Variable Selection Node Selection Let s Do An Example maximize z = 5x1 + 4x2 + x3 + 7x4 subject to x1 + x2 5 x3 + x4 3 x1 x3 + x4 16 10x1 + 6x2 45 x1 , x2 0 x1 , x2 , x3 , x4 Z Je Linderoth Variable Selection Node Selection IE418 Integer Programming Solving the Example with B&B Your picture(s) here... Je Linderoth IE418 Integer Programming Variable Selection Node Selection Why? Strong Branching Pseudo Costs Branching Finale Priorities and SOS The Goal of Branching We want to divide the current problem into two or more subproblems that are easier than the original. We would like to choose the branching that minimizes the sum of the solution times of all the created subproblems. This is the solution of the entire subtree rooted at the node. How do we know how long it will take to solve each subproblem? Answer: We don t. Idea: Try to predict the di culty of a subproblem. Je Linderoth Variable Selection Node Selection IE418 Integer Programming Why? Strong Branching Pseudo Costs Branching Finale Priorities and SOS A Good Branching Imagine that when I branch, the value of the linear programming relaxation changes a lot! I can prune the node, or should be able to prune it quickly So, for a given potential branching, I would like to know the upper bound that would result from processing each subproblem. The branching that changes these bounds the most is the best branching. Be Creative! What are some ideas you have for deciding on a branching variable? Je Linderoth IE418 Integer Programming Variable Selection Node Selection Why? Strong Branching Pseudo Costs Branching Finale Priorities and SOS Predicting the Di culty of a Subproblem How can I (quickly?) estimate the upper bounds that would result? Partially solve the LP relaxation in each of the subproblems by performing a given number of dual simplex pivots. Since we are using dual simplex, this gives us a valid bound. Why? This technique is usually called strong branching. A cheaper alternative is to use pseudo-costs. Je Linderoth Variable Selection Node Selection IE418 Integer Programming Why? Strong Branching Pseudo Costs Branching Finale Priorities and SOS Strong Branching Details In the case of strong branching, it may be too expensive to evaluate all possible candidates for branching. How do we choose the candidates to evaluate? We choose them based on an estimate of their e ectiveness that is very cheap to evaluate. One method is to choose inequalities whose left hand side is furthest from being an integer For 0-1 variables, this means those whose values are closest to 0.5. We might also account for the size of the objective function coe cient. Je Linderoth IE418 Integer Programming Variable Selection Node Selection Why? Strong Branching Pseudo Costs Branching Finale Priorities and SOS Strong Branching Details The number of candidates to evaluate must be determined empirically. E ective branching is more important near the top of the tree. We might want to evaluate more candidates near the top of the tree. More candidates almost always results in smaller trees, but the expense eventually causes an increase in running time. How many dual simplex pivots should we do? Je Linderoth Variable Selection Node Selection IE418 Integer Programming Why? Strong Branching Pseudo Costs Branching Finale Priorities and SOS Using Pseudo Costs The pseudo-cost of a variable is an estimate of the per-unit change in the objective function from forcing the value of the variable to be rounded up or down. Like a gradient! For each variable xj , we maintain an up and a down pseudo-cost, denoted Pj+ and Pj . Let fj be the current (fractional) value of variable xj . An estimate of the change in objective function in each of the subproblems resulting from branching on xj is given by + Dj = Pj+ (1 fj ), Dj = Pj fj . The question is how to get the pseudo-costs. Je Linderoth IE418 Integer Programming Variable Selection Node Selection Why? Strong Branching Pseudo Costs Branching Finale Priorities and SOS Obtaining and Updating Pseudo Costs Typically, the pseudo-costs are obtained from empirical data. We observe the actual change that occurs after branching on each one of the variables and use that as the pseudo-cost. We can either choose to update the pseudo-cost as the calculation progresses or just use the rst pseudo-cost found. Several authors have noted that the pseudo-costs tend to remain fairly constant. The only remaining question is how to initialize. Possibilities: Use the objective function coe cient. Use the of average all known pseudo-costs. Explicity initialize the pseudocosts using strong branching Je Linderoth Variable Selection Node Selection IE418 Integer Programming Why? Strong Branching Pseudo Costs Branching Finale Priorities and SOS What Does The Most Mean If we are doing typical variable branching, we create two children and have estimates of the amount the bound will change for each child How do we combine the two nunbers together to form one measure of goodness for a potential branch? Suggest to branch on the variable + + j = arg max{ 1 min{Dj , Dj } + 2 max{Dj , Dj }. 2 = 0 we want to maximize the minimum degradation on the branch ( 1 , 2 ) = (2, 1) seems pretty good Je Linderoth IE418 Integer Programming Variable Selection Node Selection Why? Strong Branching Pseudo Costs Branching Finale Priorities and SOS Putting it All Together Here are the choices we ve discussed in branching: Should we use strong branching or pseudo-costs? Pseudo-costs How should we initialize? How should we update? Strong branching How do we choose the list of branching candidates? How many pivots to do on each? Once we have the bound estimates, how do we choose the nal branching? Ultimately, we must use empirical evidence and intuition to answer these questions. Je Linderoth Variable Selection Node Selection IE418 Integer Programming Why? Strong Branching Pseudo Costs Branching Finale Priorities and SOS Priorities How Much Do You Know? You are smarter than integer programming! If you have problem speci c knowledge, use it to determine which variable to branch ong Branch on the important variables rst First decide which warehouses to open, then decide the vehicle routing Branch on earlier (time-based) decisions rst. There are mechanisms for giving the variables a priority order, so that if two variables are fractional, the one with the high priority is branched on rst Or, rst branch on all these variables before you branch on the next class, etc. Je Linderoth IE418 Integer Programming Variable Selection Node Selection Why? Strong Branching Pseudo Costs Branching Finale Priorities and SOS GUB/SOS1 Branching xj {0, 1} j 10000 xj = 1 j=1 Which branching do you think would be better? 1 2 x1 = 1 & x1 = 0( 500 j=1 xj =1& 10000 j=2 = 1), 10000 j=501 xj = 1 or The answer is It depends But the answer is almost assuredly (2). It is probably even better to look at the (infeasible) LP relaxation and put 1/2 on each side (Just don t break it in the middle). IE418 Integer Programming Je Linderoth Variable Selection Node Selection Why? Strong Branching Pseudo Costs Branching Finale Priorities and SOS SOS2 Branching { 1 , 2 , ... 100 } is an SOS2 Suppose: 1 = 0.2 6 = 0.1 8 = 0.3 10 = 0.1 17 = 0.05 99 = 0.25 If k > 0, then feasible solutions have 1 = = k 1 = 0, or k+1 = = 100 = 0 Pk 1 j=1 j = 0 Pn j=k+1 j = 0 The $64 Question How would you branch? Plus the (infeasible) point is excluded on both branches. Je Linderoth IE418 Integer Programming Variable Selection Node Selection Why? Best First Depth-First Best Estimate Choices in Branch and Bound Node Selection Another important parameter to consider in branch and bound is the strategy for selecting the next subproblem to be processed. In choosing a search strategy, we might consider two di erent goals: Minimizing overall solution time. Finding a good feasible solution quickly. Je Linderoth Variable Selection Node Selection IE418 Integer Programming Why? Best First Depth-First Best Estimate The Best First Approach One way to minimize overall solution time is to try to minimize the size of the search tree. We can achieve this choose the subproblem with the best bound (highest upper bound if we are maximizing). A candidate node is said to be critical if its bound exceeds the value of an optimal solution solution to the IP. Every critical node will be processed no matter what the search order. Best rst is guaranteed to examine only critical nodes, thereby minimizing the size of the search tree. Je Linderoth IE418 Integer Programming Variable Selection Node Selection Why? Best First Depth-First Best Estimate Drawbacks of Best First Doesn t necessarily nd feasible solutions quickly Feasible solutions are more likely to be found deep in the tree Node setup costs The linear program being solved may change quite a bit more one iteration to the next Memory usage. It can require a lot of memory to store the candidate list Je Linderoth Variable Selection Node Selection IE418 Integer Programming Why? Best First Depth-First Best Estimate The Depth First Approach The depth rst approach is to always choose the deepest node to process next. Just dive until you prune, then back up and go the other way This avoids most of the problems with best rst: The number of candidate nodes is minimized (saving memory). The node set-up costs are minimized LPs change very little from one iteration to the next Feasible solutions are usually found quickly Unfortunately, if the initial lower bound is not very good, then we may end up processing lots of non-critical nodes. We want to avoid this extra expense if possible. Je Linderoth IE418 Integer Programming Variable Selection Node Selection Why? Best First Depth-First Best Estimate Estimate-based Strategies: Finding Feasible Solutions Let s focus on a strategy for nding feasible solutions quickly. One approach is to try to estimate the value of the optimal solution to each subproblem and pick the best. For any subproblem Si , let si = j min(fj , 1 fj ) be the sum of the integer infeasibilities, i zU be the upper bound, and zL the global lower bound. Also, let S0 be the root subproblem. The best projection criterion is Ei = i zU + 0 zL zU s0 si The best estimate criterion uses the pseudo-costs to obtain i Ei = zU + j min Pj fj , Pj+ (1 fj ) Je Linderoth Variable Selection Node Selection IE418 Integer Programming Why? Best First Depth-First Best Estimate Next Time: You should read (as review, and for more information) N&W II.4.1, II.4.2 Introduction to IP software Who knows what an MPS le is? Je Linderoth IE418 Integer Programming
Find millions of documents here - Study Guides, Homework Solutions, Papers, Exam Answer Keys and more. Course Hero has millions of course related materials that will enable you to learn better, faster and get an A in all your courses.
Below is a small sample set of documents:

Lehigh >> IE >> 170 (Fall, 2008)
All-Pairs Shortest Paths Floyd-Warshall Transitive Closure All-Pairs Shortest Paths Floyd-Warshall Transitive Closure Taking Stock IE170: Algorithms in Systems Engineering: Lecture 23 Jeff Linderoth Department of Industrial and Systems Engineering ...
Lehigh >> IE >> 170 (Fall, 2008)
Graph Theory Breadth First Search Graph Theory Breadth First Search Taking Stock IE170: Algorithms in Systems Engineering: Lecture 15 Jeff Linderoth Department of Industrial and Systems Engineering Lehigh University Last Time DP for Lot Sizing Gr...
Lehigh >> IE >> 170 (Fall, 2008)
9 P,0.0,1.0 N,1.0,0.0 A,1.0,2.0 I,2.0,1.0 C,3.0,0.0 B,3.0,2.0 E,5.0,0.0 S,5.0,2.0 T,6.0,1.0 P,A,10.0 P,N,12.0 A,N,9.0 A,B,8.0 N,I,3.0 N,C,1.0 I,C,3.0 B,I,7.0 B,S,8.0 B,E,5.0 C,E,6.0 S,E,9.0 S,T,2.0 E,T,11.0...
Lehigh >> IE >> 418 (Fall, 2008)
0 -84 41 -35 -63 40 -88 -49 15 -36 -84 0 -16 62 -104 -63 -29 -70 13 -38 41 -16 0 26 67 3 -108 -107 33 -46 -35 62 26 0 -97 81 -91 45 -36 -104 -63 -104 67 -97 0 62 68 -42 -17 4 40 -63 3 81 62 0 -25 -51 42 15 -88 -29 -108 -91 68 -25 0 -43 -84 -70 ...
Lehigh >> IE >> 170 (Fall, 2008)
5 S,0.0,1.0 P,2.0,0.0 A,4.0,1.0 B,3.0,2.0 T,1.0,2.0 S,P,-1.0 S,T,4.0 P,A,2.0 P,B,2.0 P,T,3.0 A,B,-3.0 B,T,5.0 B,P,1.0 ...
Lehigh >> IE >> 170 (Fall, 2008)
7 1 2 3 5 7 11 13 ...
Lehigh >> IE >> 170 (Fall, 2008)
Taking Stock IE170: Algorithms in Systems Engineering: Lecture 27 Jeff Linderoth Department of Industrial and Systems Engineering Lehigh University Last Time Easy Quiz This Time Numerical Linear Algebra Matrix representations April 9, 2007 Jeff ...
Lehigh >> IE >> 170 (Fall, 2008)
Spanning Trees Algorithms Spanning Trees Algorithms Taking Stock IE170: Algorithms in Systems Engineering: Lecture 19 Jeff Linderoth Department of Industrial and Systems Engineering Lehigh University Last Time Minimum Spanning Trees This Time Mo...
Lehigh >> IE >> 170 (Fall, 2008)
Taking Stock IE170: Algorithms in Systems Engineering: Lecture 11 Jeff Linderoth Department of Industrial and Systems Engineering Lehigh University Last Time Easiest Quiz Ever This Time Intro to Dynamic Programming February 9, 2007 Jeff Linderot...
Lehigh >> IE >> 170 (Fall, 2008)
Sums Arithmetic Series IE170: Algorithms in Systems Engineering: Lecture 2 Jeff Linderoth Department of Industrial and Systems Engineering Lehigh University n 1 + 2 + + n = k=1 k= n(n + 1) 2 Sum Of Squares n k2 = k=0 n(n + 1)(2n + 1) 6 Janu...
Lehigh >> IE >> 170 (Fall, 2008)
Bellman Ford Single Source Shortest Path on a DAG Dijkstra Bellman Ford Single Source Shortest Path on a DAG Dijkstra Taking Stock IE170: Algorithms in Systems Engineering: Lecture 22 Jeff Linderoth Department of Industrial and Systems Engineering ...
Lehigh >> IE >> 170 (Fall, 2008)
Heaps Heap Sort Heaps Heap Sort Taking Stock IE170: Algorithms in Systems Engineering: Lecture 9 Jeff Linderoth Department of Industrial and Systems Engineering Lehigh University Last Time Binary Search Trees Java Collections Interfaces: Maps Hea...
Lehigh >> IE >> 170 (Fall, 2008)
Solving Linear Systems IE170: Algorithms in Systems Engineering: Lecture 30 Jeff Linderoth Department of Industrial and Systems Engineering Lehigh University Last time we learned about how to solve systems Ax = b, when A was symmetric and positive-...
Lehigh >> IE >> 170 (Fall, 2008)
Graph Theory Breadth First Search Graph Theory Breadth First Search Taking Stock IE170: Algorithms in Systems Engineering: Lecture 16 Jeff Linderoth Department of Industrial and Systems Engineering Lehigh University Last Time The Wonderful World ...
Lehigh >> IE >> 170 (Fall, 2008)
Shortest Paths The Algorithms Shortest Paths The Algorithms Taking Stock IE170: Algorithms in Systems Engineering: Lecture 20 Jeff Linderoth Department of Industrial and Systems Engineering Lehigh University Last Time Minimum Spanning Trees Strong...
Lehigh >> IE >> 170 (Fall, 2008)
Capital Budgeting Assembly Line Balancing Capital Budgeting Assembly Line Balancing Taking Stock IE170: Algorithms in Systems Engineering: Lecture 12 Jeff Linderoth Department of Industrial and Systems Engineering Lehigh University Last Time Intr...
Lehigh >> IE >> 170 (Fall, 2008)
Taking Stock IE170: Algorithms in Systems Engineering: Lecture 29 Jeff Linderoth Department of Industrial and Systems Engineering Lehigh University Last Time Matrix Review This Time Solving Triangular Systems Solving Symmetric Positive Definite Sy...
Lehigh >> IE >> 170 (Fall, 2008)
I Hate A-Rod! IE170: Algorithms in Systems Engineering: Lecture 31 Jeff Linderoth Department of Industrial and Systems Engineering Lehigh University April 20, 2007 Jeff Linderoth (Lehigh University) IE170:Lecture 31 Lecture Notes 1 / 14 Jeff L...
Lehigh >> IE >> 170 (Fall, 2008)
Hashes Red-Black Trees Hashes Red-Black Trees Taking Stock Last Time Hashes (Intro to) Binary Search Trees More on Java Collections Interfaces Jeff Linderoth Department of Industrial and Systems Engineering Lehigh University IE170: Algorithms in S...
Lehigh >> IE >> 170 (Fall, 2008)
DFS Review Topological Sort Strongly Connected Components DFS Review Topological Sort Strongly Connected Components Taking Stock IE170: Algorithms in Systems Engineering: Lecture 18 Jeff Linderoth Department of Industrial and Systems Engineering Le...
Lehigh >> IE >> 170 (Fall, 2008)
Linear Algebra Review Another Look at Matrix Multiplication Important Notation IE170: Algorithms in Systems Engineering: Lecture 28 Jeff Linderoth Department of Industrial and Systems Engineering Lehigh University If A Rmn , then Aj is the j th c...
Lehigh >> IE >> 170 (Fall, 2008)
Taking Stock IE170: Algorithms in Systems Engineering: Lecture 25 Jeff Linderoth Department of Industrial and Systems Engineering Lehigh University Last Time Flows This Time (Cardinality) Matching Homework and Review March 30, 2007 Jeff Linderot...
Lehigh >> IE >> 170 (Fall, 2008)
5 1 0 3 4 2 ...
Lehigh >> IE >> 170 (Fall, 2008)
7 5 0 4 3 6 2 1 ...
Lehigh >> IE >> 170 (Fall, 2008)
5 42 666 -1 0 3 ...
Lehigh >> IE >> 170 (Fall, 2008)
5 S,0.0,1.0 P,1.0,2.0 A,1.0,0.0 B,2.0,2.0 T,2.0,0.0 S,P,4.0 S,A,1.0 P,A,1.0 B,P,-3.0 A,B,1.0 A,T,2.0 B,T,-1.0 ...
Lehigh >> IE >> 170 (Fall, 2008)
9 A,0.0,1.0 H,1.0,0.0 B,1.0,2.0 I,2.0,1.0 G,3.0,0.0 C,3.0,2.0 F,5.0,0.0 D,5.0,2.0 E,6.0,1.0 A,B,4.0 A,H,8.0 B,H,11.0 B,C,8.0 H,I,7.0 H,G,1.0 I,G,6.0 I,C,2.0 G,F,2.0 C,F,4.0 C,D,7.0 D,F,14.0 D,E,9.0 E,F,10.0 ...
Lehigh >> IE >> 418 (Fall, 2008)
0 -30 76 -42 -101 43 28 -15 -79 -69 -77 -23 -2 5 86 -79 37 -56 8 -66 -53 50 -46 -37 -66 -51 -14 65 -1 -62 79 -104 4 -11 -78 -99 -8 -30 -81 42 -70 -88 -38 78 82 52 -49 68 -68 -70 58 -48 -30 36 -82 64 19 79 -32 -56 -15 -7 16 -11 51 -22 40 -63 -4 72 38 ...
Lehigh >> IE >> 418 (Fall, 2008)
Facet Proving Dual Descriptions Last Results Facet Proving Dual Descriptions Last Results Key Things We Learned Last Time IE418: Integer Programming Jeff Linderoth Department of Industrial and Systems Engineering Lehigh University A face F is sai...
Lehigh >> IE >> 417 (Fall, 2009)
Last Time: Conjugate Gradient Solving Ax = b IE417: Nonlinear Programming: Lecture 10 Jeff Linderoth Department of Industrial and Systems Engineering Lehigh University Or nn min (x) = 1/2 xT Ax - bT x, with A S+ def Conjugate Gradient Algorithm...
Lehigh >> IE >> 170 (Fall, 2008)
This Time IE170: Algorithms in Systems Engineering: Lecture 32 A whirlwind tour of computational complexity Jeff Linderoth Department of Industrial and Systems Engineering Lehigh University You are not responsible for this material on the final, bu...
Lehigh >> IE >> 417 (Fall, 2009)
Today\'s Outline IE417: Nonlinear Programming: Lecture 2 Jeff Linderoth Department of Industrial and Systems Engineering Lehigh University Say Cheese! Take 2 Some Quick Definitions Taylor\'s Theorem Optimality Conditions for Unconstrained Optimizatio...
Lehigh >> IE >> 170 (Fall, 2008)
IE170 Lab #1 Prof Jeff Linderoth IE 170 Lab #1: Getting Started Due Date: January 22, 2006. 1PM. 1 Description and Objectives In this lab, we will set up our working environment for future labs, familiarize ourselves with Eclipse, and write som...
Lehigh >> IE >> 170 (Fall, 2008)
IE170 Lab #4 Mustafa R. Kilin & Jeff Linderoth c IE 170 Lab #4: Heaps and Heapsort Due Date: February 12, 2006. 11AM. 1 Description and Objectives In this lab, we will implement a clever partially ordered data structure called a heap, and use a...
Lehigh >> IE >> 3 (Fall, 2009)
IE 495 Stochastic Programming Problem Set #2 - Solutions 1 Math Time z = min 2y1 + y2 Consider the problem (P): subject to y1 + y2 y1 y1 , y2 1.1 Problem Show that P has complete recourse. Answer: Write P as 1 - x1 - x1 - x2 0 min 2y1 + y...
Lehigh >> IE >> 495 (Fall, 2008)
IE 495 Stochastic Programming Problem Set #2 - Solutions 1 Math Time z = min 2y1 + y2 Consider the problem (P): subject to y1 + y2 y1 y1 , y2 1.1 Problem Show that P has complete recourse. Answer: Write P as 1 - x1 - x1 - x2 0 min 2y1 + y...
Lehigh >> IE >> 418 (Fall, 2008)
UpLifting Downlifting General Lifting UpLifting Downlifting General Lifting Last Time. conv(knap) = conv({x Bn | jN aj xj b}) IE418: Integer Programming Jeff Linderoth Department of Industrial and Systems Engineering Lehigh University CN | jC...
Lehigh >> IE >> 418 (Fall, 2008)
Face(t)s A Big Theorem Examples Face(t)s A Big Theorem Examples Key Things We Learned Last Time IE418: Integer Programming Jeff Linderoth Department of Industrial and Systems Engineering Lehigh University If {x Rn | Ax = b} = , the maximum numbe...
Lehigh >> IE >> 418 (Fall, 2008)
Matching Chvtal-Gomory a Mixed Integer Rounding Matching Chvtal-Gomory a Mixed Integer Rounding Matching Let\'s Consider a New Graph Problem Matching. IE418: Integer Programming Jeff Linderoth Department of Industrial and Systems Engineering Lehig...
Lehigh >> IE >> 418 (Fall, 2008)
Ingredients of Complexity Ingredient #1: Problems Ingredient #2: Easy or Hard Classes and Certificates IE418: Integer Programming Jeff Linderoth Department of Industrial and Systems Engineering Lehigh University 16th February 2005 Jeff Linderoth I...
Lehigh >> IE >> 417 (Fall, 2009)
Today\'s Outline IE417: Nonlinear Programming: Lecture 1 Jeff Linderoth Department of Industrial and Systems Engineering Lehigh University About this class. About me About you Say Cheese! Quiz Number 0 Background Material What is Nonlinear Programm...
Lehigh >> DMD >> 1 (Fall, 2008)
IMPUTING SPEED RECORDS DONALD M. DAVIS A fellow long-distance runner and I recently compiled records for Pennsylvania residents of each age and sex at 50 km, 50 miles, 100 km, 100 miles, and 24 hours. ([1]) The 50 km distance does not have as many h...
Lehigh >> BCM >> 0 (Fall, 2009)
Membership in the local chapter is $18.00 for the first year and $20.00 for renewal years. Student membership for full-time students (college and below) is $10. Renewals are on a calendar year basis with all memberships becoming due January 1. Please...
Lehigh >> BCM >> 0 (Fall, 2009)
...
Lehigh >> BCM >> 0 (Fall, 2009)
...
Lehigh >> BCM >> 0 (Fall, 2009)
ORDER FORM BIRDS OF THE LEHIGH VALLEY AND VICINITY Mail this form to: LVAS, P.O. Box 290, Emmaus, PA 18049 Please make checks payable to LVAS. Name _ Address _ __ _ _ Telephone number (day) _ (evening) _ Birds of the Lehigh Valley _ copies @ $12.00...
Lehigh >> BCM >> 0 (Fall, 2009)
Newsletter of The Lehigh Valley Audubon Society A Chapter of The National Audubon Society THE OSPREY VOLUME XXXIII NUMBER 1 January 2009 MESSAGE FROM YOUR PRESIDENT Hello Everyone and Happy New Year! Are you looking for something to do to help fi...
Lehigh >> BCM >> 0 (Fall, 2009)
Newsletter of The Lehigh Valley Audubon Society A Chapter of The National Audubon Society THE OSPREY VOLUME XXXII NUMBER 2 April 2008 MESSAGE FROM YOUR PRESIDENT It\'s hard to believe that its time for another newsletter, that it is spring time, t...
Lehigh >> BCM >> 0 (Fall, 2009)
PSYCHOLOGY 210 Fall 2005 Experimental Research Methods and Laboratory (4) WI Location: Class time: Instructor: Office: Phone: Email: Office Hours: Teaching Assistant: Office: Phone: Email: Office Hours: Classes: Whitaker Lab 203 Laboratory work: Chan...
Lehigh >> BCM >> 0 (Fall, 2009)
Student Presentation Guide 1. Preliminary: Provide a slide with a descriptive name for your project and the name(s) of the student researcher(s) below it. 2. Intro: describe the general topic/question of your research, being sure to motivate why thi...
Lehigh >> RVB >> 2 (Fall, 2009)
Procedural Circuit Simulation with decida Richard V. H. Booth Agere Systems, Allentown, PA decida Device and Circuit Data Analysis http:/decida.org Platform for Procedural Circuit Simulation M.S. Toth and R.V. Booth, \"A Designer-Customizable De...
Lehigh >> RHS >> 2 (Fall, 2009)
IE 409 Time Series Analysis Lecture 6 Covers Sections 3.1 3.2 in the text ARMA(p,q) Models Xt = Zt + 1Xt-1 + 2Xt-2 +.+ pXt-p 1Zt-1+Zt-2+.+ qZt-q Xt - 1Xt-1 - 2Xt-2 -.- pXt-p = Zt + 1Zt-1+Zt-2+.+ qZt-q (1- 1B- 2B2 -.- pBp)Xt =(1+ 1B+ 2B2 +.+ q...
Lehigh >> EJK >> 0 (Fall, 2008)
LETTER #30 Sunday 31 Dec 1995 Dear Everyone: After spending most of the week traveling and acting like tourists, we are back home for a very quiet New Year\'s Eve, just the two of us and probably a bowl of popcorn. Before describing our travels I wi...
Lehigh >> EJK >> 0 (Fall, 2008)
LETTER #1 13 June 1995 Dear Everyone, I am writing this at the end of our training in Philadelphia which extended from Sunday afternoon through Tuesday. The program aims to allay our fears about the Peace Corps service (something that has not been ...
Lehigh >> AI >> 2008 (Fall, 2009)
Ch. 15 Probabilistic Reasoning Over Time Supplemental slides for CSE 327 Prof. Jeff Heflin Umbrella World Example P(R0)=<0.5,0.5> Rt-1 T F Raint-1 P(Rt) 0.7 0.3 Raint Rt T F Umbrellat-1 Umbrellat P(Ut) 0.9 0.2 Umbrellat+1 Raint+1 Filtering (Umbrel...
Lehigh >> AI >> 2008 (Fall, 2009)
CSE 327, Spring 2008 Final Study Guide Final Time and Place: Wednesday, Apr. 30, 7-10pm Packard 360 Format: You can expect the following types of questions: true/false, short answer, and smaller versions of homework problems. Although you will hav...
Lehigh >> AGENTS >> 2007 (Fall, 2009)
CSE 431, Fall 2007 Program #2: Package World Agents Due: Tuesday, Oct. 30 For this assignment, you will design a team of homogeneous agents that will cooperate in order to achieve a simple package delivery task. The agents are situated in a 50x50 gr...
Lehigh >> PROGLANG >> 2003 (Fall, 2009)
CSE 262, Fall 2003 Programming Assignment #3: Java Due at the beginning of the class on December 5 This assignment requires you to develop an object oriented software system in Java that will keep track of pets treated and boarded in an animal hospit...
Lehigh >> AGENTS >> 2007 (Fall, 2009)
CSE 431, Fall 2007 Research Paper Critique Depending on which paper you choose to critique, this homework is due at the beginning of class between Tuesday, Nov. 27 and Thursday, December 6. An important skill for any graduate student is the ability ...
Lehigh >> AI >> 2008 (Fall, 2009)
CSE 327, Spring 2008 Homework #1: Chapters 1, 2, 3 The following exercises are due at the beginning of class on February 1. Please type your answers or neatly write them on your own paper. Each exercise will be graded for correctness, so start early...
Lehigh >> SW >> 2008 (Fall, 2009)
CSE 428. Semantic Web Topics Fall 2008 Professor Jeff Heflin Course Description: In this course you will learn what the Semantic Web is, and what its proponents believe it will eventually be able to do. You will be introduced to many useful Semantic ...
Lehigh >> AI >> 2009 (Fall, 2009)
Ch. 3 Search Supplemental slides for CSE 327 Prof. Jeff Heflin 8-puzzle Successor Function 7 5 8 3 2 4 6 1 blank-right 7 5 8 2 6 3 1 4 blank-left 7 2 5 8 3 4 6 1 blank-up 7 5 8 2 3 blank-down 4 6 1 7 5 8 2 3 4 6 1 8-puzzle Search Tree initial ...
Lehigh >> AI >> 2006 (Fall, 2009)
Ch. 3 Search Supplemental slides for CSE 327 Prof. Jeff Heflin Problem Solving Agent Algorithm function SIMPLE-PROBLEM-SOLVING-AGENT(percept) returns an action static: seq, an action sequence, initially empty state, some description of the current ...
Lehigh >> AI >> 2002 (Fall, 2009)
CSC 327, Spring 2002 Homework #1: Chapters 3,4 and 5 The following exercises are due at the beginning of class on February 14. 1. Do exercise 3.3(e) from the book (p. 87). 2. Given the map in Figure 3.3 of the book (p. 62), use breadth-first search ...
Lehigh >> AI >> 2003 (Fall, 2009)
CSE 327. Artificial Intelligence: Theory and Practice Spring 2003 Professor Jeff Heflin Course Description: This course will provide a general introduction to Artificial Intelligence (AI). We will discuss what AI is, survey some of the major results ...
Lehigh >> AI >> 2003 (Fall, 2009)
CSE 327, Spring 2003 Homework #1: Chapters 2,3,4 and 6 The following exercises are due at the beginning of class on February 10. 1. [5 points each part, 20 points total] Do exercise 2.5 from the book (p. 57) 2. [10 points] Do exercise 3.7(d) from th...
Lehigh >> AGENTS >> 2002 (Fall, 2009)
CSC 498. Intelligent Agents Fall 2002 Professor Jeff Heflin Course Description: Intelligent agents are software programs that can autonomously perform tasks for users. The ideal agent can perceive its environment, communicate with other agents, and t...
Lehigh >> AI >> 2004 (Fall, 2009)
CSE 327. Artificial Intelligence: Theory and Practice Spring 2004 Professor Jeff Heflin Course Description: This course will provide a general introduction to Artificial Intelligence (AI). We will discuss what AI is, survey some of the major results ...
Lehigh >> AI >> 2005 (Fall, 2009)
CSE 327, Spring 2005 Homework #1: Chapters 1, 2, 3, and 4 The following exercises are due at the beginning of class on February 7. Each exercise will be graded for correctness, so please start early and be sure you are confident in your answers. 1. ...
Lehigh >> AI >> 2006 (Fall, 2009)
CSE 327. Artificial Intelligence: Theory and Practice Spring 2006 Professor Jeff Heflin Course Description: This course will provide a general introduction to Artificial Intelligence (AI). We will discuss what AI is, survey some of the major results ...
What are you waiting for?