SlideShare uma empresa Scribd logo
1 de 34
Operations Research
… and Mathematical Models
Originating during World War II, Operations Research (OR) is the discipline
that deals with application of analytical methods to improve decision-
making. Although its usage is broad-based, specific uses of this science is in
the areas of Supply Chain and Manufacturing planning, Transportation and
Logistics, Floor and Network Planning, Allocation, Scheduling and Strategic
Planning. Operations Research involves representation of real-world
business problems as mathematical formulations that could be solved
heuristically or optimally using variety of tools and techniques. This session
will touch on the methods and models involved within the science of OR.
https://en.wikipedia.org/wiki/Operations_research
In the World War II era, operational research
was defined as "a scientific method of
providing executive departments with a
quantitative basis for decisions regarding the
operations under their control."[7]
[7] "Operational Research in the British Army 1939–1945, October 1947, Report C67/3/4/48, UK National Archives file WO291/1301
Some applications
• Airline, Gate Scheduling
• Telecommunications/Road/Rail Network Design
• Organization Supply Chain Strategy (DC, Plant,..)
• Just-in-Time Manufacturing Planning
• Retail Shop floor Layout
• Revenue, Pricing and Promotions
• Demand Forecasting
• Project Planning
• Economics – Micro/Macro
COMPLEX WORLD OF SUPPLY
CHAINS
Traditional and Modern Supply Chains
Manufacturing Supply Chain
C
U
S
T
O
M
E
R
S
Retail Supply Chain
FAMOUS SUPPLY CHAINS
BOEING
Moving Assembly Line for 777
1. http://www.boeing.com/news/releases/2006/q4/061107b_nr.html,
2. http://www.youtube.com/watch?v=AiKIC8ztqhY
http://download.intel.com/newsroom/kits/22nm/pdfs/Global-Intel-Manufacturing_FactSheet.pdf
MATH IN THE MADNESS
Optimization Terminology
• Optimal
– finding "best available" values of some objective function given a
defined domain
• Heuristics
– experience-based techniques for problem solving, learning, and discovery
that gives a solution which is not guaranteed to be optimal. (Ex: Search)
• Decomposition
– complex problem or system is broken down into parts that are easier to
solve optimally or otherwise
• Relaxation
– approximation of a difficult problem by a nearby problem that is easier to
solve. A solution of the relaxed problem provides information about the
original problem.
• Combinatorial
– the set of feasible solutions is discrete or can be reduced to discrete, and
in which the goal is to find the best solution
Linear Programming (LP)
• Optimize (Minimize of Maximize) a
Linear Objective function (Red Line)
• Subject to Linear equality or
inequality constraints (Pink area)
• Optimal solution lies at one of the
corners (graphically)
• Simplex method and duality
LP Example: Buying Cabinets
You need to buy some filing cabinets. You know that
• Cabinet X costs $10 per unit, requires six square feet of
floor space, and holds eight cubic feet of files.
• Cabinet Y costs $20 per unit, requires eight square feet of floor space, and
holds twelve cubic feet of files.
• You have been given $140 for this purchase, though you don't have to
spend that much.
• The office has room for no more than 72 square feet of cabinets.
How many of which model should you buy, in order to maximize storage
volume?
The question asks for the number of cabinets to buy, so the variables are:
x: # of model X cabinets purchased; y: # of model Y cabinets purchased;
x > 0 and y > 0.
consider costs and floor space (the "footprint" of each unit), while maximizing
the storage volume, so costs and floor space will be the constraints, while
volume will be the optimization equation.
Buying Cabinets: Solution
MAXIMIZE volume: V = 8x + 12y,
Subject to:
cost:
10x + 20y < 140, or y < –( 1/2 )x + 7
space:
6x + 8y < 72, or y < –( 3/4 )x + 9
When you test the corner points
at (8, 3), (0, 7), and (12, 0), you
should obtain a maximal volume
of100 cubic feet by buying eight of
model X and three of model Y.
LP: Primal and Dual
• Mirror images
– Objective Function  RHS
– ‘<=‘  ‘>’ etc
– Every feasible primal cornerpoint/constraint is dual infeasible and vice
versa
– Optimal is the point where Primal and Dual are feasible
– Solving with fewer constraints will be faster. [Large scale problems]
Non-Linear Programming (NLP)
• Objective and Constraint
functions are non-linear
functions
• Local Maxima and Minima
• Branch and Bound Technique
with heuristics
• Iterative techniques
Maximize f (x1, x2, . . . , xn),
subject to:
g1(x1, x2, . . . , xn) b1,
...
...
gm(x1, x2, . . . , xn) bm,
http://www.sce.carleton.ca/faculty/chinneck/po/Chapter%2016.pdf
NLP Example: Transportation
• Order – Item(s) that needs to be transported from Origin to
Destination, either directly or through other via-points using
one or more transportation modes
• Direction - Inbound, Outbound, Return/Reverse
• Mode – Truckload, Less-than-Truckload, Express (Air),
Parcel/Package, Shipping/Marine, Rail, Multi-Modal
• Points - Origin, Destination, Crossdocks, Distributors (DC),
Zone Skip, Transshipment, Warehouse, Truck stop
• Routing – Lanes, Shipping Schedules, Intermodal, In-Transit
Planning, Milk runs, Grocery Store Model, Travelling
Salesperson, Minimal Spanning Tree, Shortest Path
Inbound, Outbound, Backhaul
• Inbound logistics concentrates on purchasing
and arranging inbound movement of materials,
parts and/or finished inventory from suppliers
to manufacturing or assembly plants,
warehouses or retail stores.
• Multiple Pickups, single delivery (milk runs)
• Ex: Automotive, Chip/IC Manufacturing,
Discrete/Process Manufacturing Industries
• Outbound logistics is related to the storage and
movement of the final product and the related
information flows from the end of the
production line to the end user.
• Single pickup, multiple delivery (grocery store)
• Ex: Retail, FMCG sectors
• Backhaul includes hauling some cargo back
instead of driving empty
Integer Programming
• Discrete Solution space
• NP – Non-Deterministic
Polynomial time
• Solution approaches
– Linear Relaxation
– Branch and Bound
– Heuristics – Tabu search, Simulated
Annealing, Hill Climbing, Ant
Colony
• Mixed Integer Problem

IP Example: Services Business
You have to decide how many resources to put on
projects A and B (ProjA, ProjB):
• Revenue per project (RevA, RevB)
• Each project requires resources (ResA, ResB)
• You have constrained resources (ResTotal)
• Cost of each resource costs (CostA, CostB)
ProjA, ProjB are 0,1 Integer Variables
ResA, ResB are Integer Variables
IP Formulation
Objective:
Maximize Revenue: ProjA*RevA + ProjB*RevB
Constraints:
Resources: ProjA*ResA + ProjB*ResB <= ResTotal
Variables that does not affect the above
Objective:
Cost: ProjA*CostA + ProjB*CostB
Slack Variables: Cost of not using a Resource,
Network Flow
• Given a “Source” (A) and a
“Sink” (G), determine the
maximum quantity that can
flow, given edge capacities
• Maximum telephone calls on
a network, maximum
vehicles on a road
• Project Planning and
Scheduling
• Two-directional flow
capacity
Capacity in A-> D direction
Capacity in D->A direction
Practical Application of Maximum Flow
• Tyson Foods, IBP Merger in 2001
– Combine Transportation Networks
– Optimize Fleet Carriers (Strategic), Residual Carriers
(Contract and Spot Carriers)
• Approach
– Mine trips data from previous 3 years
– Generate Aggregates (Min, Max, Avg) for each Lane/Start
DOW/End DOW
– Run Flow problem iteratively for each start location and
start day of week [Modeled as a single node]
• Result (Cost optimization)
– Propose Routing Loops for Fleet Carriers
– Propose Residual Flow and suggested rates for Contract
Negotiations
Stochastic Programming
• Uncertain outcomes, Probabilistic models
• Time Series – Change in value over time
• Two-stage – Optimal Certain stage 1, followed
by recourse for random event
• Ex: Stock, Exchange Rate, Heart Rate
• Pricing and Promotions
– Target Pricing, Decoy Pricing, Freemium,
Psychological Pricing, Pay-as-you-want, value
pricing
DEEP DIVE –
AN EXAMPLE
Optimize Gates, Trucks/Trips,
Machines/Forklift,
People/Shifts, minimize cost
Math Modelling – Location Constraints
• Problem Statement – A small Warehouse location
has the following constraints
– The location is open 10:00 AM - 5:00 PM Mon
– It can accommodate only 2 Trucks every hour
– It can only serve 2000 KG of material each hour
• Given:
– 10 Trips picking up goods from the warehouse, each
with different potential start times and corresponding
costs. Each trip carriers 500 KG
• Objective:
– Date/Time Schedule the 10 trips with the lowest
overall cost such that all location constraints are
honored
Objective Function
• Minimize total cost of solution
Minimize obj:
1000 x1 + 1234 x2 + 1343 x3 ….+ 2123 x10 + ….
[Cost of unique Trip and Start Time combination]
[All variables are made linear: 0 ≤ xi ≤ 1. Fractional results are converted to its closest
integer{0,1}. This makes the problem easier to solve. This is called Linear Programming
(LP) Relaxation.]
• Add Above (50,000 - Soft) and Below (3,000 -
Soft) Target Penalty variables
3000 x221 + 50000 x222 + 3000 x223 + 50000 x224
+……
* Integer programs are complicated to solve. Linear programs can be solved in polynomial time
Trip Constraints
• A trip can only start at one of its possible start
times
Subject To
C1: x1 + x21 + x33 + x112 = 1 [x1, x21, x33 and x112 represent
4 different times trip can pickup at the location]
C2: x2 + x22 + x34 + x 113 = 1
…
…
Capacity Constraints
• Location can serve two trips in each hour bucket
• Location can serve trips totaling 2000 KG in each hour bucket
C101: x2 + x26 + x32 + x64 + x76 =2
[Each constraint corresponds to a specific 1-hour bucket. Each of the variables correspond to a trip at a
particular pickup time that falls in that one hour bucket. If that trip is selected, it contributes a trip
count of 1 to the Bucket Capacity of 2 trips]
C102: 500x1 + 500x13 + 500x55 + 500x84 + 500x96 =2000
[Each constraint corresponds to a specific 1-hour bucket. Each of the variables correspond to a trip at a
particular pickup time that falls in that one hour bucket. If that trip is selected, it contributes 500
KG to the Bucket Capacity of 2000 KGS]
…
…
* Concept of Slack variables to accommodate lesser quantity than capacity
Balancing Constraints
• To create a balanced workload and prevent
peaks. Helps ramp-up and ramp-down labor
resources
C201: x187 – x188 – x189 + x190 >=0
[The difference between adjacent time bucket assignments should be kept low].
Creates a pattern such as this ….
0
0.5
1
1.5
2
2.5
9 10 11 12 1 2 3 4 5
Series1
Some key aspects in use at iLabs
• Linear Regression Models
• Naïve Bayesian
• Attribute Selection
• MetaHeuristics
• Resource Scheduling
• Project Scheduling with Profit
Optimization – Set Covering Problem
• Microsoft Excel Solver Add-in – Can
solve Linear (Simplex), Non-Linear and
Evolutionary algorithms
(http://www.wikihow.com/Use-Solver-in-Microsoft-Excel)

Mais conteúdo relacionado

Mais procurados

Simulation & Modeling - Smilulation Queuing System
Simulation & Modeling - Smilulation Queuing SystemSimulation & Modeling - Smilulation Queuing System
Simulation & Modeling - Smilulation Queuing SystemMaruf Rion
 
Methods of Production : Job, Batch & Mass Productiion
Methods of Production : Job, Batch & Mass ProductiionMethods of Production : Job, Batch & Mass Productiion
Methods of Production : Job, Batch & Mass ProductiionHarinadh Karimikonda
 
Linear Programming Problems {Operation Research}
Linear Programming Problems {Operation Research}Linear Programming Problems {Operation Research}
Linear Programming Problems {Operation Research}FellowBuddy.com
 
Dynamic Programming
Dynamic ProgrammingDynamic Programming
Dynamic Programmingcontact2kazi
 
world-class-manufacturing
world-class-manufacturingworld-class-manufacturing
world-class-manufacturingPrasad Bidwai
 
MBA | QA II | Overview | Operations Research Part 1
MBA | QA II | Overview | Operations Research Part 1MBA | QA II | Overview | Operations Research Part 1
MBA | QA II | Overview | Operations Research Part 1BHAVIKA KADIYA
 
Job shop scheduling
Job shop schedulingJob shop scheduling
Job shop schedulingSujeet TAMBE
 
Hungarian Method
Hungarian MethodHungarian Method
Hungarian MethodAritra7469
 
Operation research (definition, phases)
Operation research (definition, phases)Operation research (definition, phases)
Operation research (definition, phases)DivyaKS12
 
System modeling and simulation full notes by sushma shetty (www.vtulife.com)
System modeling and simulation full notes by sushma shetty (www.vtulife.com)System modeling and simulation full notes by sushma shetty (www.vtulife.com)
System modeling and simulation full notes by sushma shetty (www.vtulife.com)Vivek Maurya
 
Project On Facility Layout
Project On Facility LayoutProject On Facility Layout
Project On Facility LayoutMOHD ARISH
 
Canonical form and Standard form of LPP
Canonical form and Standard form of LPPCanonical form and Standard form of LPP
Canonical form and Standard form of LPPSundar B N
 
Game theory (Operation Research)
Game theory (Operation Research)Game theory (Operation Research)
Game theory (Operation Research)kashif ayaz
 

Mais procurados (20)

Vam
VamVam
Vam
 
Line balancing & EOQ
Line balancing & EOQLine balancing & EOQ
Line balancing & EOQ
 
Simulation & Modeling - Smilulation Queuing System
Simulation & Modeling - Smilulation Queuing SystemSimulation & Modeling - Smilulation Queuing System
Simulation & Modeling - Smilulation Queuing System
 
Methods of Production : Job, Batch & Mass Productiion
Methods of Production : Job, Batch & Mass ProductiionMethods of Production : Job, Batch & Mass Productiion
Methods of Production : Job, Batch & Mass Productiion
 
Linear Programming Problems {Operation Research}
Linear Programming Problems {Operation Research}Linear Programming Problems {Operation Research}
Linear Programming Problems {Operation Research}
 
WCM (World Class Manufacturing)
WCM (World Class Manufacturing)WCM (World Class Manufacturing)
WCM (World Class Manufacturing)
 
Dynamic Programming
Dynamic ProgrammingDynamic Programming
Dynamic Programming
 
world-class-manufacturing
world-class-manufacturingworld-class-manufacturing
world-class-manufacturing
 
Aggregate planning
Aggregate planningAggregate planning
Aggregate planning
 
MBA | QA II | Overview | Operations Research Part 1
MBA | QA II | Overview | Operations Research Part 1MBA | QA II | Overview | Operations Research Part 1
MBA | QA II | Overview | Operations Research Part 1
 
Job shop scheduling
Job shop schedulingJob shop scheduling
Job shop scheduling
 
Operational reseach ppt
Operational reseach pptOperational reseach ppt
Operational reseach ppt
 
Hungarian Method
Hungarian MethodHungarian Method
Hungarian Method
 
Operation research (definition, phases)
Operation research (definition, phases)Operation research (definition, phases)
Operation research (definition, phases)
 
System modeling and simulation full notes by sushma shetty (www.vtulife.com)
System modeling and simulation full notes by sushma shetty (www.vtulife.com)System modeling and simulation full notes by sushma shetty (www.vtulife.com)
System modeling and simulation full notes by sushma shetty (www.vtulife.com)
 
Transportation problems
Transportation problemsTransportation problems
Transportation problems
 
Project On Facility Layout
Project On Facility LayoutProject On Facility Layout
Project On Facility Layout
 
Canonical form and Standard form of LPP
Canonical form and Standard form of LPPCanonical form and Standard form of LPP
Canonical form and Standard form of LPP
 
Game theory (Operation Research)
Game theory (Operation Research)Game theory (Operation Research)
Game theory (Operation Research)
 
graphical method
graphical method graphical method
graphical method
 

Semelhante a Operations Research and Mathematical Modeling

Model-Based User Interface Optimization: Part I INTRODUCTION - At SICSA Summe...
Model-Based User Interface Optimization: Part I INTRODUCTION - At SICSA Summe...Model-Based User Interface Optimization: Part I INTRODUCTION - At SICSA Summe...
Model-Based User Interface Optimization: Part I INTRODUCTION - At SICSA Summe...Aalto University
 
6 data envelopment_analysis
6 data envelopment_analysis6 data envelopment_analysis
6 data envelopment_analysisFEG
 
Supply Chain Management - Optimization technology
Supply Chain Management - Optimization technologySupply Chain Management - Optimization technology
Supply Chain Management - Optimization technologyNurhazman Abdul Aziz
 
Logistics - Operational Planning - for XLRI PGCLSM
Logistics - Operational Planning - for XLRI PGCLSMLogistics - Operational Planning - for XLRI PGCLSM
Logistics - Operational Planning - for XLRI PGCLSMVinodh Soundarajan
 
lecture-4-location-models-2.pdf
lecture-4-location-models-2.pdflecture-4-location-models-2.pdf
lecture-4-location-models-2.pdfKIRANEC2
 
Crossdocking concept in supply chain management
Crossdocking concept in supply chain managementCrossdocking concept in supply chain management
Crossdocking concept in supply chain managementchetank211
 
Dynamic Dispatch Waves for Same-day Delivery
Dynamic Dispatch Waves for Same-day DeliveryDynamic Dispatch Waves for Same-day Delivery
Dynamic Dispatch Waves for Same-day DeliveryAlan Erera
 
Applying Linear Optimization Using GLPK
Applying Linear Optimization Using GLPKApplying Linear Optimization Using GLPK
Applying Linear Optimization Using GLPKJeremy Chen
 
Operations Research.pptx
Operations Research.pptxOperations Research.pptx
Operations Research.pptxbanhi.guha
 
Case Study for Plant Layout :: A modern analysis
Case Study for Plant Layout :: A modern analysisCase Study for Plant Layout :: A modern analysis
Case Study for Plant Layout :: A modern analysisSarang Bhutada
 
LINEAR PROGRAMMING
LINEAR PROGRAMMINGLINEAR PROGRAMMING
LINEAR PROGRAMMINGrashi9
 
Operations Research ppt
Operations Research pptOperations Research ppt
Operations Research pptbheema raju
 
Optimization Computing Platform for the Construction Industry
Optimization Computing Platform for the Construction IndustryOptimization Computing Platform for the Construction Industry
Optimization Computing Platform for the Construction IndustryKostas Dimitriou
 
Aggregation Heuristics for the Open Pit Scheduling Problem
Aggregation Heuristics for the Open Pit Scheduling ProblemAggregation Heuristics for the Open Pit Scheduling Problem
Aggregation Heuristics for the Open Pit Scheduling ProblemPatricio Reyes
 

Semelhante a Operations Research and Mathematical Modeling (20)

Model-Based User Interface Optimization: Part I INTRODUCTION - At SICSA Summe...
Model-Based User Interface Optimization: Part I INTRODUCTION - At SICSA Summe...Model-Based User Interface Optimization: Part I INTRODUCTION - At SICSA Summe...
Model-Based User Interface Optimization: Part I INTRODUCTION - At SICSA Summe...
 
OR Ndejje Univ (1).pptx
OR Ndejje Univ (1).pptxOR Ndejje Univ (1).pptx
OR Ndejje Univ (1).pptx
 
OR Ndejje Univ.pptx
OR Ndejje Univ.pptxOR Ndejje Univ.pptx
OR Ndejje Univ.pptx
 
6 data envelopment_analysis
6 data envelopment_analysis6 data envelopment_analysis
6 data envelopment_analysis
 
Supply Chain Management - Optimization technology
Supply Chain Management - Optimization technologySupply Chain Management - Optimization technology
Supply Chain Management - Optimization technology
 
Ch12
Ch12Ch12
Ch12
 
Logistics - Operational Planning - for XLRI PGCLSM
Logistics - Operational Planning - for XLRI PGCLSMLogistics - Operational Planning - for XLRI PGCLSM
Logistics - Operational Planning - for XLRI PGCLSM
 
lecture-4-location-models-2.pdf
lecture-4-location-models-2.pdflecture-4-location-models-2.pdf
lecture-4-location-models-2.pdf
 
Ballou13
Ballou13Ballou13
Ballou13
 
linear programming
linear programminglinear programming
linear programming
 
Crossdocking concept in supply chain management
Crossdocking concept in supply chain managementCrossdocking concept in supply chain management
Crossdocking concept in supply chain management
 
Warehousing.ppt
Warehousing.pptWarehousing.ppt
Warehousing.ppt
 
Dynamic Dispatch Waves for Same-day Delivery
Dynamic Dispatch Waves for Same-day DeliveryDynamic Dispatch Waves for Same-day Delivery
Dynamic Dispatch Waves for Same-day Delivery
 
Applying Linear Optimization Using GLPK
Applying Linear Optimization Using GLPKApplying Linear Optimization Using GLPK
Applying Linear Optimization Using GLPK
 
Operations Research.pptx
Operations Research.pptxOperations Research.pptx
Operations Research.pptx
 
Case Study for Plant Layout :: A modern analysis
Case Study for Plant Layout :: A modern analysisCase Study for Plant Layout :: A modern analysis
Case Study for Plant Layout :: A modern analysis
 
LINEAR PROGRAMMING
LINEAR PROGRAMMINGLINEAR PROGRAMMING
LINEAR PROGRAMMING
 
Operations Research ppt
Operations Research pptOperations Research ppt
Operations Research ppt
 
Optimization Computing Platform for the Construction Industry
Optimization Computing Platform for the Construction IndustryOptimization Computing Platform for the Construction Industry
Optimization Computing Platform for the Construction Industry
 
Aggregation Heuristics for the Open Pit Scheduling Problem
Aggregation Heuristics for the Open Pit Scheduling ProblemAggregation Heuristics for the Open Pit Scheduling Problem
Aggregation Heuristics for the Open Pit Scheduling Problem
 

Mais de Vinodh Soundarajan

Use latest technology to solve Traditional Supply Chain Problems - a brainsto...
Use latest technology to solve Traditional Supply Chain Problems - a brainsto...Use latest technology to solve Traditional Supply Chain Problems - a brainsto...
Use latest technology to solve Traditional Supply Chain Problems - a brainsto...Vinodh Soundarajan
 
IT Warehouse Management - XLRI PGCLSM
IT Warehouse Management - XLRI PGCLSMIT Warehouse Management - XLRI PGCLSM
IT Warehouse Management - XLRI PGCLSMVinodh Soundarajan
 
Optimal retail distribution_for_v2
Optimal retail distribution_for_v2Optimal retail distribution_for_v2
Optimal retail distribution_for_v2Vinodh Soundarajan
 

Mais de Vinodh Soundarajan (6)

Use latest technology to solve Traditional Supply Chain Problems - a brainsto...
Use latest technology to solve Traditional Supply Chain Problems - a brainsto...Use latest technology to solve Traditional Supply Chain Problems - a brainsto...
Use latest technology to solve Traditional Supply Chain Problems - a brainsto...
 
IT Warehouse Management - XLRI PGCLSM
IT Warehouse Management - XLRI PGCLSMIT Warehouse Management - XLRI PGCLSM
IT Warehouse Management - XLRI PGCLSM
 
Optimal retail distribution_for_v2
Optimal retail distribution_for_v2Optimal retail distribution_for_v2
Optimal retail distribution_for_v2
 
Setting up a Pvt. Ltd Company
Setting up a Pvt. Ltd CompanySetting up a Pvt. Ltd Company
Setting up a Pvt. Ltd Company
 
World of supply chains
World of supply chainsWorld of supply chains
World of supply chains
 
Transportation network models
Transportation network modelsTransportation network models
Transportation network models
 

Último

Thermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VThermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VDineshKumar4165
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Bookingdharasingh5698
 
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Bookingroncy bisnoi
 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...roncy bisnoi
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdfKamal Acharya
 
Online banking management system project.pdf
Online banking management system project.pdfOnline banking management system project.pdf
Online banking management system project.pdfKamal Acharya
 
Call for Papers - International Journal of Intelligent Systems and Applicatio...
Call for Papers - International Journal of Intelligent Systems and Applicatio...Call for Papers - International Journal of Intelligent Systems and Applicatio...
Call for Papers - International Journal of Intelligent Systems and Applicatio...Christo Ananth
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Dr.Costas Sachpazis
 
chapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringchapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringmulugeta48
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Call Girls in Nagpur High Profile
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSISrknatarajan
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Christo Ananth
 
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfKamal Acharya
 

Último (20)

Thermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VThermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - V
 
Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024
 
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
 
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
 
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdf
 
Online banking management system project.pdf
Online banking management system project.pdfOnline banking management system project.pdf
Online banking management system project.pdf
 
Call for Papers - International Journal of Intelligent Systems and Applicatio...
Call for Papers - International Journal of Intelligent Systems and Applicatio...Call for Papers - International Journal of Intelligent Systems and Applicatio...
Call for Papers - International Journal of Intelligent Systems and Applicatio...
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
 
chapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringchapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineering
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
 
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 
Roadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and RoutesRoadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and Routes
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSIS
 
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
 
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
 
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
 

Operations Research and Mathematical Modeling

  • 1. Operations Research … and Mathematical Models Originating during World War II, Operations Research (OR) is the discipline that deals with application of analytical methods to improve decision- making. Although its usage is broad-based, specific uses of this science is in the areas of Supply Chain and Manufacturing planning, Transportation and Logistics, Floor and Network Planning, Allocation, Scheduling and Strategic Planning. Operations Research involves representation of real-world business problems as mathematical formulations that could be solved heuristically or optimally using variety of tools and techniques. This session will touch on the methods and models involved within the science of OR.
  • 2.
  • 3. https://en.wikipedia.org/wiki/Operations_research In the World War II era, operational research was defined as "a scientific method of providing executive departments with a quantitative basis for decisions regarding the operations under their control."[7] [7] "Operational Research in the British Army 1939–1945, October 1947, Report C67/3/4/48, UK National Archives file WO291/1301
  • 4. Some applications • Airline, Gate Scheduling • Telecommunications/Road/Rail Network Design • Organization Supply Chain Strategy (DC, Plant,..) • Just-in-Time Manufacturing Planning • Retail Shop floor Layout • Revenue, Pricing and Promotions • Demand Forecasting • Project Planning • Economics – Micro/Macro
  • 5. COMPLEX WORLD OF SUPPLY CHAINS
  • 6. Traditional and Modern Supply Chains
  • 10. BOEING Moving Assembly Line for 777 1. http://www.boeing.com/news/releases/2006/q4/061107b_nr.html, 2. http://www.youtube.com/watch?v=AiKIC8ztqhY
  • 12.
  • 13. MATH IN THE MADNESS
  • 14. Optimization Terminology • Optimal – finding "best available" values of some objective function given a defined domain • Heuristics – experience-based techniques for problem solving, learning, and discovery that gives a solution which is not guaranteed to be optimal. (Ex: Search) • Decomposition – complex problem or system is broken down into parts that are easier to solve optimally or otherwise • Relaxation – approximation of a difficult problem by a nearby problem that is easier to solve. A solution of the relaxed problem provides information about the original problem. • Combinatorial – the set of feasible solutions is discrete or can be reduced to discrete, and in which the goal is to find the best solution
  • 15. Linear Programming (LP) • Optimize (Minimize of Maximize) a Linear Objective function (Red Line) • Subject to Linear equality or inequality constraints (Pink area) • Optimal solution lies at one of the corners (graphically) • Simplex method and duality
  • 16. LP Example: Buying Cabinets You need to buy some filing cabinets. You know that • Cabinet X costs $10 per unit, requires six square feet of floor space, and holds eight cubic feet of files. • Cabinet Y costs $20 per unit, requires eight square feet of floor space, and holds twelve cubic feet of files. • You have been given $140 for this purchase, though you don't have to spend that much. • The office has room for no more than 72 square feet of cabinets. How many of which model should you buy, in order to maximize storage volume? The question asks for the number of cabinets to buy, so the variables are: x: # of model X cabinets purchased; y: # of model Y cabinets purchased; x > 0 and y > 0. consider costs and floor space (the "footprint" of each unit), while maximizing the storage volume, so costs and floor space will be the constraints, while volume will be the optimization equation.
  • 17. Buying Cabinets: Solution MAXIMIZE volume: V = 8x + 12y, Subject to: cost: 10x + 20y < 140, or y < –( 1/2 )x + 7 space: 6x + 8y < 72, or y < –( 3/4 )x + 9 When you test the corner points at (8, 3), (0, 7), and (12, 0), you should obtain a maximal volume of100 cubic feet by buying eight of model X and three of model Y.
  • 18. LP: Primal and Dual • Mirror images – Objective Function  RHS – ‘<=‘  ‘>’ etc – Every feasible primal cornerpoint/constraint is dual infeasible and vice versa – Optimal is the point where Primal and Dual are feasible – Solving with fewer constraints will be faster. [Large scale problems]
  • 19. Non-Linear Programming (NLP) • Objective and Constraint functions are non-linear functions • Local Maxima and Minima • Branch and Bound Technique with heuristics • Iterative techniques Maximize f (x1, x2, . . . , xn), subject to: g1(x1, x2, . . . , xn) b1, ... ... gm(x1, x2, . . . , xn) bm, http://www.sce.carleton.ca/faculty/chinneck/po/Chapter%2016.pdf
  • 20. NLP Example: Transportation • Order – Item(s) that needs to be transported from Origin to Destination, either directly or through other via-points using one or more transportation modes • Direction - Inbound, Outbound, Return/Reverse • Mode – Truckload, Less-than-Truckload, Express (Air), Parcel/Package, Shipping/Marine, Rail, Multi-Modal • Points - Origin, Destination, Crossdocks, Distributors (DC), Zone Skip, Transshipment, Warehouse, Truck stop • Routing – Lanes, Shipping Schedules, Intermodal, In-Transit Planning, Milk runs, Grocery Store Model, Travelling Salesperson, Minimal Spanning Tree, Shortest Path
  • 21. Inbound, Outbound, Backhaul • Inbound logistics concentrates on purchasing and arranging inbound movement of materials, parts and/or finished inventory from suppliers to manufacturing or assembly plants, warehouses or retail stores. • Multiple Pickups, single delivery (milk runs) • Ex: Automotive, Chip/IC Manufacturing, Discrete/Process Manufacturing Industries • Outbound logistics is related to the storage and movement of the final product and the related information flows from the end of the production line to the end user. • Single pickup, multiple delivery (grocery store) • Ex: Retail, FMCG sectors • Backhaul includes hauling some cargo back instead of driving empty
  • 22. Integer Programming • Discrete Solution space • NP – Non-Deterministic Polynomial time • Solution approaches – Linear Relaxation – Branch and Bound – Heuristics – Tabu search, Simulated Annealing, Hill Climbing, Ant Colony • Mixed Integer Problem 
  • 23. IP Example: Services Business You have to decide how many resources to put on projects A and B (ProjA, ProjB): • Revenue per project (RevA, RevB) • Each project requires resources (ResA, ResB) • You have constrained resources (ResTotal) • Cost of each resource costs (CostA, CostB) ProjA, ProjB are 0,1 Integer Variables ResA, ResB are Integer Variables
  • 24. IP Formulation Objective: Maximize Revenue: ProjA*RevA + ProjB*RevB Constraints: Resources: ProjA*ResA + ProjB*ResB <= ResTotal Variables that does not affect the above Objective: Cost: ProjA*CostA + ProjB*CostB Slack Variables: Cost of not using a Resource,
  • 25. Network Flow • Given a “Source” (A) and a “Sink” (G), determine the maximum quantity that can flow, given edge capacities • Maximum telephone calls on a network, maximum vehicles on a road • Project Planning and Scheduling • Two-directional flow capacity Capacity in A-> D direction Capacity in D->A direction
  • 26. Practical Application of Maximum Flow • Tyson Foods, IBP Merger in 2001 – Combine Transportation Networks – Optimize Fleet Carriers (Strategic), Residual Carriers (Contract and Spot Carriers) • Approach – Mine trips data from previous 3 years – Generate Aggregates (Min, Max, Avg) for each Lane/Start DOW/End DOW – Run Flow problem iteratively for each start location and start day of week [Modeled as a single node] • Result (Cost optimization) – Propose Routing Loops for Fleet Carriers – Propose Residual Flow and suggested rates for Contract Negotiations
  • 27. Stochastic Programming • Uncertain outcomes, Probabilistic models • Time Series – Change in value over time • Two-stage – Optimal Certain stage 1, followed by recourse for random event • Ex: Stock, Exchange Rate, Heart Rate • Pricing and Promotions – Target Pricing, Decoy Pricing, Freemium, Psychological Pricing, Pay-as-you-want, value pricing
  • 28. DEEP DIVE – AN EXAMPLE Optimize Gates, Trucks/Trips, Machines/Forklift, People/Shifts, minimize cost
  • 29. Math Modelling – Location Constraints • Problem Statement – A small Warehouse location has the following constraints – The location is open 10:00 AM - 5:00 PM Mon – It can accommodate only 2 Trucks every hour – It can only serve 2000 KG of material each hour • Given: – 10 Trips picking up goods from the warehouse, each with different potential start times and corresponding costs. Each trip carriers 500 KG • Objective: – Date/Time Schedule the 10 trips with the lowest overall cost such that all location constraints are honored
  • 30. Objective Function • Minimize total cost of solution Minimize obj: 1000 x1 + 1234 x2 + 1343 x3 ….+ 2123 x10 + …. [Cost of unique Trip and Start Time combination] [All variables are made linear: 0 ≤ xi ≤ 1. Fractional results are converted to its closest integer{0,1}. This makes the problem easier to solve. This is called Linear Programming (LP) Relaxation.] • Add Above (50,000 - Soft) and Below (3,000 - Soft) Target Penalty variables 3000 x221 + 50000 x222 + 3000 x223 + 50000 x224 +…… * Integer programs are complicated to solve. Linear programs can be solved in polynomial time
  • 31. Trip Constraints • A trip can only start at one of its possible start times Subject To C1: x1 + x21 + x33 + x112 = 1 [x1, x21, x33 and x112 represent 4 different times trip can pickup at the location] C2: x2 + x22 + x34 + x 113 = 1 … …
  • 32. Capacity Constraints • Location can serve two trips in each hour bucket • Location can serve trips totaling 2000 KG in each hour bucket C101: x2 + x26 + x32 + x64 + x76 =2 [Each constraint corresponds to a specific 1-hour bucket. Each of the variables correspond to a trip at a particular pickup time that falls in that one hour bucket. If that trip is selected, it contributes a trip count of 1 to the Bucket Capacity of 2 trips] C102: 500x1 + 500x13 + 500x55 + 500x84 + 500x96 =2000 [Each constraint corresponds to a specific 1-hour bucket. Each of the variables correspond to a trip at a particular pickup time that falls in that one hour bucket. If that trip is selected, it contributes 500 KG to the Bucket Capacity of 2000 KGS] … … * Concept of Slack variables to accommodate lesser quantity than capacity
  • 33. Balancing Constraints • To create a balanced workload and prevent peaks. Helps ramp-up and ramp-down labor resources C201: x187 – x188 – x189 + x190 >=0 [The difference between adjacent time bucket assignments should be kept low]. Creates a pattern such as this …. 0 0.5 1 1.5 2 2.5 9 10 11 12 1 2 3 4 5 Series1
  • 34. Some key aspects in use at iLabs • Linear Regression Models • Naïve Bayesian • Attribute Selection • MetaHeuristics • Resource Scheduling • Project Scheduling with Profit Optimization – Set Covering Problem • Microsoft Excel Solver Add-in – Can solve Linear (Simplex), Non-Linear and Evolutionary algorithms (http://www.wikihow.com/Use-Solver-in-Microsoft-Excel)