set CANDIDATE; set ZONE; param revenue{candidate, ZONE} >= 0; var Assign{CANDIDATE, ZONE} binary;

Size: px
Start display at page:

Download "set CANDIDATE; set ZONE; param revenue{candidate, ZONE} >= 0; var Assign{CANDIDATE, ZONE} binary;"

Transcription

1 Assignment Problem Data Zone j = Candidate i = c ij = annual sales volume in $million if candidate i is assigned to zone j 1

2 6! = ! = ! = A size-24 assignment problem would require 1.1 billion centuries to enumerate at 1 billion assignments per second. The greedy solution is pessimal, with value $91 million. The optimal solution is (1,4), (2,5), (3,6), (4,1), (5,3), (6,2), with value $124 million. The solution on page 13 has a value of $121 million. 1-1

3 Assignment Problem Formulation Let c ij be as above. Let x ij = { 1 if candidate i is assigned to zone j 0 otherwise. n n Maximize c ij x ij i=1 j=1 subject to n x ij = 1 for j = 1,...,n i=1 n x ij = 1 for i = 1,...,n j=1 x ij = 0 or 1 for i = 1,...,n, j = 1,...,n 2

4 Assignment Problem Formulation (AMPL) set CANDIDATE; set ZONE; param revenue{candidate, ZONE} >= 0; var Assign{CANDIDATE, ZONE} binary; maximize Total_revenue: sum{i in CANDIDATE, j in ZONE} revenue[i, j] * Assign[i, j]; subject to Zone_limit{i in CANDIDATE}: sum{j in ZONE} Assign[i, j] = 1; subject to Cand_limit{j in ZONE}: sum{i in CANDIDATE} Assign[i, j] = 1; set CANDIDATE := Ann Bob Carol Debbie Ed Frank; set ZONE := NE NC NW SE SC SW; param revenue: NE NC NW SE SC SW := Ann Bob Carol Debbie Ed Frank ; 3

5 Components of an Optimization Model A set or sets of objects, and possibly derived sets of relations between objects. Attributes of the elements of the sets, some parameters and some decision variables. All attributes have units associated with them. Each attribute is stored as a vector, indexed by the elements of the associated set. An objective function to be maximized or minimized by selecting values for the decision variables. Constraints on the relationships among values of the decision variables. Values of the parameters. 4

6 A Product Mix Problem A bookcase requires three hours of work, one unit of metal, and four units of wood, and it brings in a net prot of $19. A desk requires two hours of work, one unit of metal, and three units of wood, and it brings in a net prot of $13. A chair requires one hour of work, one unit of metal, and three units of wood, and it brings in a net prot of $12. A bedframe requires two hours of work, one unit of metal, and three units of wood, and it brings in a net prot of $17. Only 225 hours of labor, 117 units of metal, and 420 units of wood are available per day. 5

7 Mathematical Program For parameters b i (and possibly other parameters hidden in the denitions of f and g i ) and decision variables x j : Min (or Max) f(x1,x2,...,x n ) subject to g i (x1,x2,...,x n ) = b i i= 1,2,...,m 6

8 Linearity Assumptions Divisibility Allowable values of a decision variable x j lie in some interval of real numbers l j x j u j (where l j = and u j = are allowed). Proportionality A function f(x1,x2,...,x n ) has the property that f(cx1,cx2,...,cx n ) = cf(x1,x2,...,x n ) for any constant c. Additivity A function f(x1,x2,...,x n ) has the property that f(x1 + y1,x2 + y2,...,x n + y n ) = f(x1,x2,...,x n ) + f(y1,y2,...,y n ) for any values (x1,x2,...,x n ) and (y1,y2,...,y n ) of the decision variables. A function function f that satises additivity and proportionality is called linear. (Note that divisibility is a property of the decision variables, not the function.) A linear function can always be written in the form f(x1,x2,...,x n ) = c1x1 + c2x2 + + c n x n. where c1,c2,...,c n are constants. A mathematical program is called a linear program if the objective function f and all constraint functions g i are linear and all decision variables are divisible. 7

9 Linear Program For parameters c j, a ij, and b i, and decision variables x j : Min (or Max) subject to n c j x j n a ij x j j=1 j=1 = b i x j 0 j = 1,2,...,n i = 1, 2,...m 8

10 Blending Problem Blend silicon and nitrogen to produce two types of fertilizer. Fertilizer 1 must be at least 40% nitrogen and sells for $70/lb. Fertilizer 2 must be at least 70% silicon and sells for $40/lb. Can purchase up to 80 lb of nitrogen at $15/lb and up to 100 lb of silicon at $10/lb. Assuming all product can be sold, maximize prot. 9

11 Diet Problem Four foods (brownies, chocolate ice cream, cola, and cheesecake). Brownies cost $.50 each, provide 400 Calories, 3 oz of chocolate, 2 oz of sugar, and 2 ounces of fat. Ice cream costs $.20 per scoop, and a scoop provides 200 Calories, 2 oz of chocolate, 2 oz of sugar, and 4 ounces of fat. Cola costs $.30 per glass, and a glass provides 150 Calories and 4 oz of sugar. Cheesecake costs $.80 per slice, and provides 500 Calories, 4 ounces of sugar, and 5 ounces of fat. My diet requires 1000 Calories, 6 oz of chocolate, 10 oz of sugar, and 8 oz of fat. Find a diet that meets my nutritional needs at the lowest cost. 10

12 Transportation Problem Power plants 1, 2, and 3 supply 35 million kwh, 50 million kwh, and 40 million kwh, respectively. Cities 1, 2, 3, and 4 require 45, 20, 30, and 30 million kwh, respectively. Cost of delivery ($ per million kwh) depends on origin and destination. City Plant

13 Multiperiod Production Planning A dynamic model takes account of changing conditions over time. A static model applies to a single period or moment. Demand in coming quarters: 40 boats in rst, 60 in second, 75 in third, 25 in fourth. Demand must be met on time. Starting inventory of 10 boats. In any quarter, boats can be produced to sell or produced to inventory. Inventory carrying charge is $20 per boat per period. Production on regular time is $400 per boat, and on overtime is $450 per boat. Regular-time capacity is 40 boats per period, but unlimited overtime is available. How many small sailboats in each quarter to meet demand at minimum cost? 12

14 Reporting Solutions to Applied Problems 1. A brief \executive summary" reporting your recommended course of action and any implications, in the language of the original problem, answering all questions raised in the problem statement. 2. The mathematical model, including The symbol dictionary, including units associated with all symbols; The mathematical formulation, including objective and constraints, with explanations. Any tables showing parameter values. 3. The AMPL model (with judicious use of names and comments). 4. AMPL reports to support your recommendations. 13

ECE 307- Techniques for Engineering Decisions

ECE 307- Techniques for Engineering Decisions ECE 307- Techniques for Engineering Decisions Lecture 4. Dualit Concepts in Linear Programming George Gross Department of Electrical and Computer Engineering Universit of Illinois at Urbana-Champaign DUALITY

More information

Chapter 3 Introduction to Linear Programming PART 1. Assoc. Prof. Dr. Arslan M. Örnek

Chapter 3 Introduction to Linear Programming PART 1. Assoc. Prof. Dr. Arslan M. Örnek Chapter 3 Introduction to Linear Programming PART 1 Assoc. Prof. Dr. Arslan M. Örnek http://homes.ieu.edu.tr/~aornek/ise203%20optimization%20i.htm 1 3.1 What Is a Linear Programming Problem? Linear Programming

More information

Linear Programming. Xi Chen. Department of Management Science and Engineering International Business School Beijing Foreign Studies University

Linear Programming. Xi Chen. Department of Management Science and Engineering International Business School Beijing Foreign Studies University Linear Programming Xi Chen Department of Management Science and Engineering International Business School Beijing Foreign Studies University Xi Chen (chenxi0109@bfsu.edu.cn) Linear Programming 1 / 148

More information

Linear Programming. Dr. Xiaosong DING

Linear Programming. Dr. Xiaosong DING Linear Programming Dr. Xiaosong DING Department of Management Science and Engineering International Business School Beijing Foreign Studies University Dr. DING (xiaosong.ding@hotmail.com) Linear Programming

More information

Linear Programming. Formulating and solving large problems. H. R. Alvarez A., Ph. D. 1

Linear Programming. Formulating and solving large problems.   H. R. Alvarez A., Ph. D. 1 Linear Programming Formulating and solving large problems http://academia.utp.ac.pa/humberto-alvarez H. R. Alvarez A., Ph. D. 1 Recalling some concepts As said, LP is concerned with the optimization of

More information

AM 121 Introduction to Optimization: Models and Methods Example Questions for Midterm 1

AM 121 Introduction to Optimization: Models and Methods Example Questions for Midterm 1 AM 121 Introduction to Optimization: Models and Methods Example Questions for Midterm 1 Prof. Yiling Chen Fall 2018 Here are some practice questions to help to prepare for the midterm. The midterm will

More information

e) Find the average revenue when 100 units are made and sold.

e) Find the average revenue when 100 units are made and sold. Math 142 Week in Review Set of Problems Week 7 1) Find the derivative, y ', if a) y=x 5 x 3/2 e 4 b) y= 1 5 x 4 c) y=7x 2 0.5 5 x 2 d) y=x 2 1.5 x 10 x e) y= x7 5x 5 2 x 4 2) The price-demand function

More information

END3033 Operations Research I Sensitivity Analysis & Duality. to accompany Operations Research: Applications and Algorithms Fatih Cavdur

END3033 Operations Research I Sensitivity Analysis & Duality. to accompany Operations Research: Applications and Algorithms Fatih Cavdur END3033 Operations Research I Sensitivity Analysis & Duality to accompany Operations Research: Applications and Algorithms Fatih Cavdur Introduction Consider the following problem where x 1 and x 2 corresponds

More information

LINEAR PROGRAMMING MODULE Part 1 - Model Formulation INTRODUCTION

LINEAR PROGRAMMING MODULE Part 1 - Model Formulation INTRODUCTION Name: LINEAR PROGRAMMING MODULE Part 1 - Model Formulation INTRODUCTION In general, a mathematical model is either deterministic or probabilistic. For example, the models and algorithms shown in the Graph-Optimization

More information

Chapter 4. Copyright 2010 Pearson Education, Inc. Publishing as Prentice Hall 4-1

Chapter 4. Copyright 2010 Pearson Education, Inc. Publishing as Prentice Hall 4-1 Linear Programming: Modeling Examples Chapter 4 4-1 Chapter Topics A Product Mix Example A Diet Example An Investment Example A Marketing Example A Transportation Example A Blend Example A Multiperiod

More information

The Simplex Algorithm and Goal Programming

The Simplex Algorithm and Goal Programming The Simplex Algorithm and Goal Programming In Chapter 3, we saw how to solve two-variable linear programming problems graphically. Unfortunately, most real-life LPs have many variables, so a method is

More information

Introduction to LP. Types of Linear Programming. There are five common types of decisions in which LP may play a role

Introduction to LP. Types of Linear Programming. There are five common types of decisions in which LP may play a role Linear Programming RK Jana Lecture Outline Introduction to Linear Programming (LP) Historical Perspective Model Formulation Graphical Solution Method Simplex Method Introduction to LP Continued Today many

More information

OPERATIONS RESEARCH LECTURE NOTES

OPERATIONS RESEARCH LECTURE NOTES OPERATIONS RESEARCH LECTURE NOTES Y. İlker Topcu, Ph.D. Acknowledgements: We would like to acknowledge Prof. W.L. Winston's "Operations Research: Applications and Algorithms" and Prof. J.E. Beasley's lecture

More information

Applications of Systems of Linear Inequalities

Applications of Systems of Linear Inequalities Applications of Systems of Linear Inequalities Finite Math 26 April 2017 Finite Math Applications of Systems of Linear Inequalities 26 April 2017 1 / 17 Quiz What does it mean for a feasible region to

More information

Tutorial Letter 201/1/2018

Tutorial Letter 201/1/2018 /1/2018 Tutorial Letter 201/1/2018 Basic Numeracy BNU1501 Semester 1 Department of Decision Sciences Important information: Solutions to Assignment 01 Bar code ASSIGNMENT 01: Solutions Answers 1. [4] 6.

More information

Math 141:512. Practice Exam 1 (extra credit) Due: February 6, 2019

Math 141:512. Practice Exam 1 (extra credit) Due: February 6, 2019 Math 141:512 Due: February 6, 2019 Practice Exam 1 (extra credit) This is an open book, extra credit practice exam which covers the material that Exam 1 will cover (Sections 1.3, 1.4, 2.1, 2.2, 2.3, 2.4,

More information

MTH 65-Steiner Exam #1 Review: , , 8.6. Non-Calculator sections: (Solving Systems), Chapter 5 (Operations with Polynomials)

MTH 65-Steiner Exam #1 Review: , , 8.6. Non-Calculator sections: (Solving Systems), Chapter 5 (Operations with Polynomials) Non-Calculator sections: 4.1-4.3 (Solving Systems), Chapter 5 (Operations with Polynomials) The following problems are examples of the types of problems you might see on the non-calculator section of the

More information

Chapter Four: Linear Programming: Modeling Examples PROBLEM SUMMARY 4-1

Chapter Four: Linear Programming: Modeling Examples PROBLEM SUMMARY 4-1 Instant download and all chapters Solutions Manual Introduction to Management Science 11th Edition Bernard W. Taylor III https://testbankdata.com/download/solutions-manual-introduction-managementscience-11th-edition-bernard-w-taylor-iii/

More information

Deterministic Operations Research, ME 366Q and ORI 391 Chapter 2: Homework #2 Solutions

Deterministic Operations Research, ME 366Q and ORI 391 Chapter 2: Homework #2 Solutions Deterministic Operations Research, ME 366Q and ORI 391 Chapter 2: Homework #2 Solutions 11. Consider the following linear program. Maximize z = 6x 1 + 3x 2 subject to x 1 + 2x 2 2x 1 + x 2 20 x 1 x 2 x

More information

Equations and Solutions

Equations and Solutions MAT 171 Precalculus Algebra Dr. Claude Moore Cape Fear Community College CHAPTER 1: Graphs, Functions, and Models 1.1 Introduction to Graphing 1.2 Functions and Graphs 1.3 Linear Functions, Slope, and

More information

IOE510/MATH561/OMS518: Linear Programming I

IOE510/MATH561/OMS518: Linear Programming I IOE510/MATH561/OMS518: Linear Programming I Lectures: Mondays and Wednesdays, 9:00-10:30 AM, IOE 1680 Instructor: Prof. Marina A. Epelman GSI: Katharina Ley Office hours: See CTools for most current info

More information

2. Linear Programming Problem

2. Linear Programming Problem . Linear Programming Problem. Introduction to Linear Programming Problem (LPP). When to apply LPP or Requirement for a LPP.3 General form of LPP. Assumptions in LPP. Applications of Linear Programming.6

More information

LP03 Chapter 5. A prime number is a natural number greater that 1 that has only itself and 1 as factors. 2, 3, 5, 7, 11, 13, 17, 19, 23, 29,

LP03 Chapter 5. A prime number is a natural number greater that 1 that has only itself and 1 as factors. 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, LP03 Chapter 5 Prime Numbers A prime number is a natural number greater that 1 that has only itself and 1 as factors. 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, Question 1 Find the prime factorization of 120.

More information

Lec12p1, ORF363/COS323. The idea behind duality. This lecture

Lec12p1, ORF363/COS323. The idea behind duality. This lecture Lec12 Page 1 Lec12p1, ORF363/COS323 This lecture Linear programming duality + robust linear programming Intuition behind the derivation of the dual Weak and strong duality theorems Max-flow=Min-cut Primal/dual

More information

Math 410 Test 1. Name: Class: Date: Show your work.

Math 410 Test 1. Name: Class: Date: Show your work. Name: Class: Date: Math 40 Test Show your work.. Solve the equation, if possible. Answer no solution if appropriate. Answer R if all real numbers are a solution. 3 y y = y + 3 y =. Solve the equation and

More information

ISE 330 Introduction to Operations Research: Deterministic Models. What is Linear Programming? www-scf.usc.edu/~ise330/2007. August 29, 2007 Lecture 2

ISE 330 Introduction to Operations Research: Deterministic Models. What is Linear Programming? www-scf.usc.edu/~ise330/2007. August 29, 2007 Lecture 2 ISE 330 Introduction to Operations Research: Deterministic Models www-scf.usc.edu/~ise330/007 August 9, 007 Lecture What is Linear Programming? Linear Programming provides methods for allocating limited

More information

Graphical and Computer Methods

Graphical and Computer Methods Chapter 7 Linear Programming Models: Graphical and Computer Methods Quantitative Analysis for Management, Tenth Edition, by Render, Stair, and Hanna 2008 Prentice-Hall, Inc. Introduction Many management

More information

Review for Final Review

Review for Final Review Topics Review for Final Review 1. Functions and equations and graphing: linear, absolute value, quadratic, polynomials, rational (first 1/3 of semester) 2. Simple Interest, compounded interest, and continuously

More information

Applications of differential calculus Relative maxima/minima, points of inflection

Applications of differential calculus Relative maxima/minima, points of inflection Exercises 15 Applications of differential calculus Relative maxima/minima, points of inflection Objectives - be able to determine the relative maxima/minima of a function. - be able to determine the points

More information

Linear programming: introduction and examples

Linear programming: introduction and examples Linear programming: introduction and examples G. Ferrari Trecate Dipartimento di Ingegneria Industriale e dell Informazione Università degli Studi di Pavia Industrial Automation Ferrari Trecate (DIS) Linear

More information

Optimisation. 3/10/2010 Tibor Illés Optimisation

Optimisation. 3/10/2010 Tibor Illés Optimisation Optimisation Lectures 3 & 4: Linear Programming Problem Formulation Different forms of problems, elements of the simplex algorithm and sensitivity analysis Lecturer: Tibor Illés tibor.illes@strath.ac.uk

More information

1 Reminders. In-class exam in two weeks (Sept 28/29) Assignments are posted after every class. Lecture is for big picture

1 Reminders. In-class exam in two weeks (Sept 28/29) Assignments are posted after every class. Lecture is for big picture 1 Reminders In-class exam in two weeks (Sept 28/29) pen and paper; no calculator; no notes practice problems are already posted online MLP test on same topics: take before 10/4 Assignments are posted after

More information

MATH 2070 Test 3 (Sections , , & )

MATH 2070 Test 3 (Sections , , & ) Multiple Choice: Use a #2 pencil and completely fill in each bubble on your scantron to indicate the answer to each question. Each question has one correct answer. If you indicate more than one answer,

More information

2. Place the following numbers in order from smallest to largest:

2. Place the following numbers in order from smallest to largest: MAT08 Final Exam Review Note to students: The final exam for this course will consist of 0 multiple-choice questions and a few open-ended questions. You may use a calculator on the exam, but no notes of

More information

Chapter 1 Linear Equations

Chapter 1 Linear Equations . Lines. True. True. If the slope of a line is undefined, the line is vertical. 7. The point-slope form of the equation of a line x, y is with slope m containing the point ( ) y y = m ( x x ). Chapter

More information

The Simplex Algorithm

The Simplex Algorithm The Simplex Algorithm How to Convert an LP to Standard Form Before the simplex algorithm can be used to solve an LP, the LP must be converted into a problem where all the constraints are equations and

More information

6. 5x Division Property. CHAPTER 2 Linear Models, Equations, and Inequalities. Toolbox Exercises. 1. 3x = 6 Division Property

6. 5x Division Property. CHAPTER 2 Linear Models, Equations, and Inequalities. Toolbox Exercises. 1. 3x = 6 Division Property CHAPTER Linear Models, Equations, and Inequalities CHAPTER Linear Models, Equations, and Inequalities Toolbox Exercises. x = 6 Division Property x 6 = x =. x 7= Addition Property x 7= x 7+ 7= + 7 x = 8.

More information

SEN301 OPERATIONS RESEARCH I LECTURE NOTES

SEN301 OPERATIONS RESEARCH I LECTURE NOTES SEN30 OPERATIONS RESEARCH I LECTURE NOTES SECTION II (208-209) Y. İlker Topcu, Ph.D. & Özgür Kabak, Ph.D. Acknowledgements: We would like to acknowledge Prof. W.L. Winston's "Operations Research: Applications

More information

Section 4.1 Solving Systems of Linear Inequalities

Section 4.1 Solving Systems of Linear Inequalities Section 4.1 Solving Systems of Linear Inequalities Question 1 How do you graph a linear inequality? Question 2 How do you graph a system of linear inequalities? Question 1 How do you graph a linear inequality?

More information

Chapter 2: Solving Equations and Inequalities

Chapter 2: Solving Equations and Inequalities Chapter : Solving Equations and Inequalities Prep Test 1.. 1 = = 1 1. (16) = 80 = 10 8 8. 90% = 90(0.01) = 0.9. 0. = 0.(100%) = % 6. x x 1 ( ) ( ) 1 = (16) + 16 1 = 8 + 1 = 6. 10x 8. 9 9. 6x (6 x) = 6x

More information

Assuming that all items produced are sold, find the cost C as a function of the price p.

Assuming that all items produced are sold, find the cost C as a function of the price p. Math 165 - Reviewing Chapter 5 Name SHORT ANSWER. Write the word or phrase that best completes each statement or answers the question. For the given functions f and g, find the requested composite function

More information

Financial Optimization ISE 347/447. Lecture 21. Dr. Ted Ralphs

Financial Optimization ISE 347/447. Lecture 21. Dr. Ted Ralphs Financial Optimization ISE 347/447 Lecture 21 Dr. Ted Ralphs ISE 347/447 Lecture 21 1 Reading for This Lecture C&T Chapter 16 ISE 347/447 Lecture 21 2 Formalizing: Random Linear Optimization Consider the

More information

Systems of Equations and Inequalities

Systems of Equations and Inequalities 7 Systems of Equations and Inequalities CHAPTER OUTLINE Introduction Figure 1 Enigma machines like this one, once owned by Italian dictator Benito Mussolini, were used by government and military officials

More information

ISyE 2030 Practice Test 1

ISyE 2030 Practice Test 1 1 NAME ISyE 2030 Practice Test 1 Summer 2005 This test is open notes, open books. You have exactly 90 minutes. 1. Some Short-Answer Flow Questions (a) TRUE or FALSE? One of the primary reasons why theoretical

More information

1. (20 points) Finding critical points, maximums, minimums.

1. (20 points) Finding critical points, maximums, minimums. Math 030 (Section 02) Test #3 June 2 st, 200 Name: ANSWER KEY Be sure to show your work!. (20 points) Finding critical points, maximums, minimums. (a) Let f(x) = 2x 3 + 5x 2 4x 3. Find min/max on [, 2]

More information

Introduction to Operations Research. Linear Programming

Introduction to Operations Research. Linear Programming Introduction to Operations Research Linear Programming Solving Optimization Problems Linear Problems Non-Linear Problems Combinatorial Problems Linear Problems Special form of mathematical programming

More information

GCSE Mathematics Specification Paper 1 Higher Tier

GCSE Mathematics Specification Paper 1 Higher Tier For AQA Name Class GCSE Mathematics Specification Paper 1 Higher Tier H Churchill Paper 1E 1 hour 30 minutes Materials For this paper you must have: mathematical instruments You must not use a calculator

More information

Math 125 Fall 2011 Exam 2 - Solutions

Math 125 Fall 2011 Exam 2 - Solutions Math 5 Fall 0 Exam - Solutions. (0 points) Suppose an economy consists of three industries: natural gas, oil, and electricity. For each $ of natural gas produced, $0.0 of natural gas is consumed, $0.0

More information

DM559/DM545 Linear and integer programming

DM559/DM545 Linear and integer programming Department of Mathematics and Computer Science University of Southern Denmark, Odense March 26, 2018 Marco Chiarandini DM559/DM545 Linear and integer programming Sheet 1, Spring 2018 [pdf format] This

More information

[ ] 1 [ B] 7.2 Matrix Algebra Pre Calculus. 7.2 MATRIX ALGEBRA (Day 1)

[ ] 1 [ B] 7.2 Matrix Algebra Pre Calculus. 7.2 MATRIX ALGEBRA (Day 1) 7. Matrix Algebra Pre Calculus 7. MATRIX ALGEBRA (Day 1) Learning Targets: 1. Use matrices to represent data.. Add or Subtract matrices without a calculator. 3. Multiply a scalar by a matrix without a

More information

Introduction to optimization and operations research

Introduction to optimization and operations research Introduction to optimization and operations research David Pisinger, Fall 2002 1 Smoked ham (Chvatal 1.6, adapted from Greene et al. (1957)) A meat packing plant produces 480 hams, 400 pork bellies, and

More information

Section 5.3: Linear Inequalities

Section 5.3: Linear Inequalities 336 Section 5.3: Linear Inequalities In the first section, we looked at a company that produces a basic and premium version of its product, and we determined how many of each item they should produce fully

More information

Equation Solving Principles. Equations and Solutions. Zeros of Linear Functions. August 30, 2012

Equation Solving Principles. Equations and Solutions. Zeros of Linear Functions. August 30, 2012 MAT 171 Precalculus Algebra Dr. Claude Moore Cape Fear Community College CHAPTER 1: Graphs, Functions, and Models 1.1 Introduction to Graphing 1.2 Functions and Graphs 1.3 Linear Functions, Slope, and

More information

3. Replace any row by the sum of that row and a constant multiple of any other row.

3. Replace any row by the sum of that row and a constant multiple of any other row. Section. Solution of Linear Systems by Gauss-Jordan Method A matrix is an ordered rectangular array of numbers, letters, symbols or algebraic expressions. A matrix with m rows and n columns has size or

More information

Introduction to Operations Research Prof G. Srinivasan Department of Management Studies Indian Institute of Technology, Madras

Introduction to Operations Research Prof G. Srinivasan Department of Management Studies Indian Institute of Technology, Madras Introduction to Operations Research Prof G. Srinivasan Department of Management Studies Indian Institute of Technology, Madras Module 01 Linear Programming Introduction and formulations Lecture - 01 Product

More information

Introduction to Operations Research

Introduction to Operations Research Introduction to Operations Research Linear Programming Solving Optimization Problems Linear Problems Non-Linear Problems Combinatorial Problems Linear Problems Special form of mathematical programming

More information

SECTION 5.1: Polynomials

SECTION 5.1: Polynomials 1 SECTION 5.1: Polynomials Functions Definitions: Function, Independent Variable, Dependent Variable, Domain, and Range A function is a rule that assigns to each input value x exactly output value y =

More information

A Mathematical (Mixed-Integer) Programming Formulation for. Microbrewery. Spyros A. Reveliotis. Spring 2001

A Mathematical (Mixed-Integer) Programming Formulation for. Microbrewery. Spyros A. Reveliotis. Spring 2001 A Mathematical (Mixed-Integer) Programming Formulation for the Production Scheduling Problem in the McGuinness & Co. Microbrewery Spyros A. Reveliotis Spring 2001 This document provides an analytical formulation

More information

Chapter 2 Introduction to Optimization and Linear Programming

Chapter 2 Introduction to Optimization and Linear Programming Ch. 2 Introduction to Optimization and Linear Programming TB-9 Chapter 2 Introduction to Optimization and Linear Programming Multiple Choice 1. What most motivates a business to be concerned with efficient

More information

Chapter 5 Linear Programming (LP)

Chapter 5 Linear Programming (LP) Chapter 5 Linear Programming (LP) General constrained optimization problem: minimize f(x) subject to x R n is called the constraint set or feasible set. any point x is called a feasible point We consider

More information

1.4 CONCEPT QUESTIONS, page 49

1.4 CONCEPT QUESTIONS, page 49 .4 CONCEPT QUESTIONS, page 49. The intersection must lie in the first quadrant because only the parts of the demand and supply curves in the first quadrant are of interest.. a. The breakeven point P0(

More information

Linear Programming. H. R. Alvarez A., Ph. D. 1

Linear Programming. H. R. Alvarez A., Ph. D. 1 Linear Programming H. R. Alvarez A., Ph. D. 1 Introduction It is a mathematical technique that allows the selection of the best course of action defining a program of feasible actions. The objective of

More information

Determine whether the equation is a conditional equation, an identity, or a contradiction.

Determine whether the equation is a conditional equation, an identity, or a contradiction. Test Review-chap.4-.7,.,.4, 6., 6., 6. Name MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Determine whether the equation is a conditional equation,

More information

M340(921) Solutions Problem Set 6 (c) 2013, Philip D Loewen. g = 35y y y 3.

M340(921) Solutions Problem Set 6 (c) 2013, Philip D Loewen. g = 35y y y 3. M340(92) Solutions Problem Set 6 (c) 203, Philip D Loewen. (a) If each pig is fed y kilograms of corn, y 2 kilos of tankage, and y 3 kilos of alfalfa, the cost per pig is g = 35y + 30y 2 + 25y 3. The nutritional

More information

Optimization, Part 2 (november to december): mandatory for QEM-IMAEF, and for MMEF or MAEF who have chosen it as an optional course.

Optimization, Part 2 (november to december): mandatory for QEM-IMAEF, and for MMEF or MAEF who have chosen it as an optional course. Paris. Optimization, Part 2 (november to december): mandatory for QEM-IMAEF, and for MMEF or MAEF who have chosen it as an optional course. Philippe Bich (Paris 1 Panthéon-Sorbonne and PSE) Paris, 2016.

More information

Free Pre-Algebra Practice Cumulative Final Exam! page 1

Free Pre-Algebra Practice Cumulative Final Exam! page 1 Free Pre-Algebra Practice Cumulative Final Exam! page 1 Cumulative, Excluding Optional Sections Practice Final Exam Your instructor may choose a different selection of course topics to emphasize in your

More information

Applications of Systems of Linear Equations

Applications of Systems of Linear Equations 5.2 Applications of Systems of Linear Equations 5.2 OBJECTIVE 1. Use a system of equations to solve an application We are now ready to apply our equation-solving skills to solving various applications

More information

Math 5593 Linear Programming Problem Set 4

Math 5593 Linear Programming Problem Set 4 Math 93 Linear Programming Problem Set 4 University of Colorado Denver, Fall 20 Solutions (October 28, 20) Solution 4. (Multiperiod Production Model) [steelt.mod] set PROD; param T > 0; # products # number

More information

56:171 Operations Research Midterm Exam - October 26, 1989 Instructor: D.L. Bricker

56:171 Operations Research Midterm Exam - October 26, 1989 Instructor: D.L. Bricker 56:171 Operations Research Midterm Exam - October 26, 1989 Instructor: D.L. Bricker Answer all of Part One and two (of the four) problems of Part Two Problem: 1 2 3 4 5 6 7 8 TOTAL Possible: 16 12 20 10

More information

Operations Research: Introduction. Concept of a Model

Operations Research: Introduction. Concept of a Model Origin and Development Features Operations Research: Introduction Term or coined in 1940 by Meclosky & Trefthan in U.K. came into existence during World War II for military projects for solving strategic

More information

Intermediate Algebra. Exam 1 Review (Chapters 1, 2, and 3)

Intermediate Algebra. Exam 1 Review (Chapters 1, 2, and 3) Eam Review (Chapters,, and ) Intermediate Algebra Name. Epress the set in roster form. { N and 7}. Epress the set in set builder form. {-, 0,,,, }. Epress in set builder notation each set of numbers that

More information

Standardized Test Practice

Standardized Test Practice Standardized Test Practice. A store uses a matrix to show their inventory of jeans by waist size (in inches) and style of leg. What is a 3? A a. straight boot cut flared tapered 3 3 3 3 3 3 7 3 3 9 b.

More information

Example problem in Birge & Louveaux, Introduction to Stochastic Programming. SLPwR: Farmer Problem page 1 D.L.Bricker

Example problem in Birge & Louveaux, Introduction to Stochastic Programming. SLPwR: Farmer Problem page 1 D.L.Bricker Example problem in Birge & Louveaux, Introduction to Stochastic Programming SLPwR: Farmer Problem page 1 D.L.Bricker A farmer raises wheat, corn, and sugar beets on 500 acres of land. Before the planting

More information

Chapter 4 The Simplex Algorithm Part I

Chapter 4 The Simplex Algorithm Part I Chapter 4 The Simplex Algorithm Part I Based on Introduction to Mathematical Programming: Operations Research, Volume 1 4th edition, by Wayne L. Winston and Munirpallam Venkataramanan Lewis Ntaimo 1 Modeling

More information

Modeling Network Optimization Problems

Modeling Network Optimization Problems Modeling Network Optimization Problems John E. Mitchell http://www.rpi.edu/~mitchj Mathematical Models of Operations Research MATP4700 / ISYE4770 October 19, 01 Mitchell (MATP4700) Network Optimization

More information

MATH 2070 Test 3 (Sections , , & )

MATH 2070 Test 3 (Sections , , & ) Multiple Choice: Use a #2 pencil and completely fill in each bubble on your scantron to indicate the answer to each question. Each question has one correct answer. If you indicate more than one answer,

More information

MATH 2070 Test 3 (Sections , , & )

MATH 2070 Test 3 (Sections , , & ) Multiple Choice: Use a # pencil and completel fill in each bubble on our scantron to indicate the answer to each question. Each question has one correct answer. If ou indicate more than one answer, or

More information

CLASS XII CBSE MATHEMATICS MATRICES 1 Mark/2 Marks Questions

CLASS XII CBSE MATHEMATICS MATRICES 1 Mark/2 Marks Questions CLASS XII CBSE MATHEMATICS MATRICES 1 Mark/ Marks Questions 1) How many matrices of order 3 x 3 are possible with each entry as 0 or 1? ) Write a square matrix of order, which is both symmetric and skewsymmetric.

More information

Section K MATH 211 Homework Due Friday, 8/30/96 Professor J. Beachy Average: 15.1 / 20. ), and f(a + 1).

Section K MATH 211 Homework Due Friday, 8/30/96 Professor J. Beachy Average: 15.1 / 20. ), and f(a + 1). Section K MATH 211 Homework Due Friday, 8/30/96 Professor J. Beachy Average: 15.1 / 20 # 18, page 18: If f(x) = x2 x 2 1, find f( 1 2 ), f( 1 2 ), and f(a + 1). # 22, page 18: When a solution of acetylcholine

More information

The Simplex Method. Formulate Constrained Maximization or Minimization Problem. Convert to Standard Form. Convert to Canonical Form

The Simplex Method. Formulate Constrained Maximization or Minimization Problem. Convert to Standard Form. Convert to Canonical Form The Simplex Method 1 The Simplex Method Formulate Constrained Maximization or Minimization Problem Convert to Standard Form Convert to Canonical Form Set Up the Tableau and the Initial Basic Feasible Solution

More information

Study Guide-Quarter 1 Test

Study Guide-Quarter 1 Test Study Guide-Quarter 1 Test This is a summary of the material covered in all the units you have studied this marking quarter. To make sure that you are fully prepared for this test, you should re-read your

More information

Linear programming I João Carlos Lourenço

Linear programming I João Carlos Lourenço Decision Support Models Linear programming I João Carlos Lourenço joao.lourenco@ist.utl.pt Academic year 2012/2013 Readings: Hillier, F.S., Lieberman, G.J., 2010. Introduction to Operations Research, 9th

More information

Introduction to Linear Programming (LP) Mathematical Programming (MP) Concept

Introduction to Linear Programming (LP) Mathematical Programming (MP) Concept Introduction to Linear Programming (LP) 1. Mathematical Programming Concept 2. LP Concept 3. Standard Form 4. Assumptions 5. Consequences of Assumptions 6. Solution Approach 7. Solution Methods 8. Typical

More information

Facility Location and Distribution System Planning. Thomas L. Magnanti

Facility Location and Distribution System Planning. Thomas L. Magnanti Facility Location and Distribution System Planning Thomas L. Magnanti Today s Agenda Why study facility location? Issues to be modeled Basic models Fixed charge problems Core uncapacitated and capacitated

More information

Notes: Deterministic Models in Operations Research

Notes: Deterministic Models in Operations Research Notes: Deterministic Models in Operations Research J.C. Chrispell Department of Mathematics Indiana University of Pennsylvania Indiana, PA, 15705, USA E-mail: john.chrispell@iup.edu http://www.math.iup.edu/~jchrispe

More information

Doug Clark The Learning Center 100 Student Success Center learningcenter.missouri.edu Overview

Doug Clark The Learning Center 100 Student Success Center learningcenter.missouri.edu Overview Math 1400 Final Exam Review Saturday, December 9 in Ellis Auditorium 1:00 PM 3:00 PM, Saturday, December 9 Part 1: Derivatives and Applications of Derivatives 3:30 PM 5:30 PM, Saturday, December 9 Part

More information

Optimization. Broadly two types: Unconstrained and Constrained optimizations We deal with constrained optimization. General form:

Optimization. Broadly two types: Unconstrained and Constrained optimizations We deal with constrained optimization. General form: Optimization Broadly two types: Unconstrained and Constrained optimizations We deal with constrained optimization General form: Min or Max f(x) (1) Subject to g(x) ~ b (2) lo < x < up (3) Some important

More information

Pacing 2 days Begin with bar models as a concrete representation (engage NY), then. inverse operations to isolate and

Pacing 2 days Begin with bar models as a concrete representation (engage NY), then. inverse operations to isolate and 28 Determine whether mathematical statements of equality and inequalities are true or false. Write three different equations that have a solution of 0. Write each equation and prove it is accurate by solving

More information

Optimization. Using Analytic Solver Platform REVIEW BASED ON MANAGEMENT SCIENCE

Optimization. Using Analytic Solver Platform REVIEW BASED ON MANAGEMENT SCIENCE Optimization Using Analytic Solver Platform REVIEW BASED ON MANAGEMENT SCIENCE What We ll Cover Today Introduction Session ΙΙ beta training program goals Classic Models for Common Business Situations Focus

More information

Modelling linear and linear integer optimization problems An introduction

Modelling linear and linear integer optimization problems An introduction Modelling linear and linear integer optimization problems An introduction Karen Aardal October 5, 2015 In optimization, developing and analyzing models are key activities. Designing a model is a skill

More information

Transportation Problem

Transportation Problem Transportation Problem. Production costs at factories F, F, F and F 4 are Rs.,, and respectively. The production capacities are 0, 70, 40 and 0 units respectively. Four stores S, S, S and S 4 have requirements

More information

Quadratic Application Problems

Quadratic Application Problems Name Quadratic Application Problems 1. A roof shingle is dropped from a rooftop that is 100 feet above the ground. The height y (in feet) of the dropped roof shingle is given by the function y = -16t 2

More information

SECTION 3.2: Graphing Linear Inequalities

SECTION 3.2: Graphing Linear Inequalities 6 SECTION 3.2: Graphing Linear Inequalities GOAL: Graphing One Linear Inequality Example 1: Graphing Linear Inequalities Graph the following: a) x + y = 4 b) x + y 4 c) x + y < 4 Graphing Conventions:

More information

SUMMARY OF PROPERTIES OF MATTER State Shape Volume Particles Compressibility Solid Definite Definite Densely packed Very slight

SUMMARY OF PROPERTIES OF MATTER State Shape Volume Particles Compressibility Solid Definite Definite Densely packed Very slight MATTER & ITS FORMS Matter is defined as anything that has mass and occupies space. Matter can be classified by its states: solid, liquid, and gas. Solid: Densely packed matter with definite shape and volume.

More information

DM559/DM545 Linear and integer programming

DM559/DM545 Linear and integer programming Department of Mathematics and Computer Science University of Southern Denmark, Odense April, 208 Marco Chiarandini DM559/DM545 Linear and integer programming Sheet 3, Spring 208 [pdf format] Included.

More information

Lecture 6: Sections 2.2 and 2.3 Polynomial Functions, Quadratic Models

Lecture 6: Sections 2.2 and 2.3 Polynomial Functions, Quadratic Models L6-1 Lecture 6: Sections 2.2 and 2.3 Polynomial Functions, Quadratic Models Polynomial Functions Def. A polynomial function of degree n is a function of the form f(x) = a n x n + a n 1 x n 1 +... + a 1

More information

MATH150-E01 Test #2 Summer 2016 Show all work. Name 1. Find an equation in slope-intercept form for the line through (4, 2) and (1, 3).

MATH150-E01 Test #2 Summer 2016 Show all work. Name 1. Find an equation in slope-intercept form for the line through (4, 2) and (1, 3). 1. Find an equation in slope-intercept form for the line through (4, 2) and (1, 3). 2. Let the supply and demand functions for sugar be given by p = S(q) = 1.4q 0.6 and p = D(q) = 2q + 3.2 where p is the

More information

Rate of Change and slope. Objective: To find rates of change from tables. To find slope.

Rate of Change and slope. Objective: To find rates of change from tables. To find slope. Linear Functions Rate of Change and slope Objective: To find rates of change from tables. To find slope. Objectives I can find the rate of change using a table. I can find the slope of an equation using

More information

MODELING (Integer Programming Examples)

MODELING (Integer Programming Examples) MODELING (Integer Programming Eamples) IE 400 Principles of Engineering Management Integer Programming: Set 5 Integer Programming: So far, we have considered problems under the following assumptions:

More information

Formulation Techniques. How To Build a Mathematical Model?

Formulation Techniques. How To Build a Mathematical Model? 1.1 Formulation Techniques Katta G. Murty Lecture slides How To Build a Mathematical Model? 1. Identify All Decision Variables Controllable parameters whose values can be controlled by decision maker,

More information