Section 1.3: A Simple Inventory System

Size: px
Start display at page:

Download "Section 1.3: A Simple Inventory System"

Transcription

1 Section 1.3: A Simple Inventory System Discrete-Event Simulation: A First Course c 2006 Pearson Ed., Inc Discrete-Event Simulation: A First Course Section 1.3: A Simple Inventory System 1/ 27

2 Section 1.3: A Simple Inventory System customers. demand items.. facility. order items.. supplier Distributes items from current inventory to customers Customer demand is discrete Simple one type of item Discrete-Event Simulation: A First Course Section 1.3: A Simple Inventory System 2/ 27

3 Inventory Policy Transaction Reporting Inventory review after each transaction Significant labor may be required Less likely to experience shortage Periodic Inventory Review Inventory review is periodic Items are ordered, if necessary, only at review times (s, S) are the min,max inventory levels, 0 s < S We assume periodic inventory review Search for (s,s) that minimize cost Discrete-Event Simulation: A First Course Section 1.3: A Simple Inventory System 3/ 27

4 Conceptual Model Inventory System Costs Holding cost: for items in inventory Shortage cost: for unmet demand Setup cost: fixed cost when order is placed Item cost: per-item order cost Ordering cost: sum of setup and item costs Additional Assumptions Back ordering is possible No delivery lag Initial inventory level is S Terminal inventory level is S Discrete-Event Simulation: A First Course Section 1.3: A Simple Inventory System 4/ 27

5 Specification Model Time begins at t = 0 Review times are t = 0,1,2,... l i 1 : inventory level at beginning of i th interval o i 1 : amount ordered at time t = i 1, (o i 1 0) d i : demand quantity during i th interval, (d i 0) Inventory at end of interval can be negative Discrete-Event Simulation: A First Course Section 1.3: A Simple Inventory System 5/ 27

6 Inventory Level Considerations Inventory level is reviewed at t = i 1 If at least s, no order is placed If less than s, inventory is replenished to S { 0 li 1 s o i 1 = S l i 1 l i 1 < s Items are delivered immediately At end of i th interval, inventory diminished by d i l i = l i 1 + o i 1 d i Discrete-Event Simulation: A First Course Section 1.3: A Simple Inventory System 6/ 27

7 Time Evolution of Inventory Level Algorithm l 0 = S; /* the initial inventory level is S */ i = 0; while (more demand to process ) { i++; if (l i 1 < s) o i 1 = S - l i 1 ; else o i 1 = 0; d i = GetDemand(); l i = l i 1 + o i 1 - d i ; } n = i; o n = S - l n ; l n = S; /* the terminal inventory level is S */ return l 1, l 2,..., l n and o 1, o 2,..., o n ; Discrete-Event Simulation: A First Course Section 1.3: A Simple Inventory System 7/ 27

8 Example 1.3.1: SIS with Sample Demands Let (s, S) = (20, 60) and consider n = 12 time intervals i : d i : l i 80 S 40 s i Discrete-Event Simulation: A First Course Section 1.3: A Simple Inventory System 8/ 27

9 Output Statistics What statistics to compute? Average demand and average order d = 1 n n i=1 d i ō = 1 n n o i. i=1 For Example data d = ō = 305/ items per time interval Discrete-Event Simulation: A First Course Section 1.3: A Simple Inventory System 9/ 27

10 Flow Balance Average demand and order must be equal Ending inventory level is S Over the simulated period, all demand is satisfied Average flow of items in equals average flow of items out customers. d facility. ō supplier The inventory system is flow balanced Discrete-Event Simulation: A First Course Section 1.3: A Simple Inventory System 10/ 27

11 Constant Demand Rate Holding and shortage costs are proportional to time-averaged inventory levels Must know inventory level for all t Assume the demand rate is constant between review times l(t) 80 S 40 s t Discrete-Event Simulation: A First Course Section 1.3: A Simple Inventory System 11/ 27

12 Inventory Level as a Function of Time The inventory level at any time t in i th interval is l(t) = l i 1 (t i + 1)d i if demand rate is constant between review times l i 1 (i 1, l i 1 ) l(t) l i 1 d i l(t) = l i 1 (t i + 1)d i (i, l i 1 d i). i 1 l i 1 = l i 1 + o i 1 represents inventory level after review i t Discrete-Event Simulation: A First Course Section 1.3: A Simple Inventory System 12/ 27

13 Inventory Decrease Is Not Linear Inventory level at any time t is an integer l(t) should be rounded to an integer value l(t) is a stair-step, rather than linear, function l(t) l i 1 l i 1 d i (i 1, l i 1 ) l(t) = l i 1 (t i + 1)d i (i, l i 1 d i). i 1 i t Discrete-Event Simulation: A First Course Section 1.3: A Simple Inventory System 13/ 27

14 Time-Averaged Inventory Level l(t) is the basis for computing the time-averaged inventory level Case 1: If l(t) remains non-negative over i th interval i l+ i = l(t)dt i 1 Case 2: If l(t) becomes negative at some time τ τ l+ i = l(t)dt i 1 l i i = l(t)dt τ l + i l i is the time-averaged holding level is the time-averaged shortage level Discrete-Event Simulation: A First Course Section 1.3: A Simple Inventory System 14/ 27

15 Case 1: No Back Ordering No shortage during i th time interval iff. d i l i 1 i 1 i 0 l i 1 d i l i 1 l(t) t. (i 1, l i 1 ) (i, l i 1 d i) Time-averaged holding level: area of a trapezoid l+ i = i i 1 l(t)dt = l i 1 + (l i 1 d i) 2 = l i d i Discrete-Event Simulation: A First Course Section 1.3: A Simple Inventory System 15/ 27

16 Case 2: Back Ordering Inventory becomes negative iff. d i > l i 1 i 1 τ i l i 1 d i 0 s l i 1 l(t) t. (i 1, l i 1 ) (i, l i 1 d i) Discrete-Event Simulation: A First Course Section 1.3: A Simple Inventory System 16/ 27

17 Case 2: Back Ordering (Cont.) l(t) becomes negative at time t = τ = i 1 + (l i 1 /d i) Time-averaged holding and shortage levels for i th interval computed as the areas of triangles l i τ l+ i = i 1 i = τ l(t)dt = = (l i 1 )2 2d i l(t)dt = = (d i l i 1 )2 2d i Discrete-Event Simulation: A First Course Section 1.3: A Simple Inventory System 17/ 27

18 Time-Averaged Inventory Level Time-averaged holding level and time-averaged shortage level l+ = 1 n n i=1 l+ i l = 1 n n i=1 l i Note that time-averaged shortage level is positive The time-averaged inventory level is l = 1 n n 0 l(t)dt = l + l Discrete-Event Simulation: A First Course Section 1.3: A Simple Inventory System 18/ 27

19 Computational Model sis1 is a trace-driven computational model of the SIS Computes the statistics d, ō, l +, l and the order frequency ū ū = number of orders n Consistency check: compute ō and d separately, then compare Discrete-Event Simulation: A First Course Section 1.3: A Simple Inventory System 19/ 27

20 Example 1.3.4: Executing sis1 Trace file sis1.dat contains data for n = 100 time intervals With (s,s) = (20,80) ō = d = ū = 0.39 l+ = l = 0.25 After Chapter 2, we will generate data randomly (no trace file) Discrete-Event Simulation: A First Course Section 1.3: A Simple Inventory System 20/ 27

21 Operating Costs A facility s cost of operation is determined by: c item : unit cost of new item c setup : fixed cost for placing an order c hold : cost to hold one item for one time interval c short : cost of being short one item for one time interval Discrete-Event Simulation: A First Course Section 1.3: A Simple Inventory System 21/ 27

22 Case Study Automobile dealership that uses weekly periodic inventory review The facility is the showroom and surrounding areas The items are new cars The supplier is the car manufacturer...customers are people convinced by clever advertising that their lives will be improved significantly if they purchase a new car from this dealer. (S. Park) Simple (one type of car) inventory system Discrete-Event Simulation: A First Course Section 1.3: A Simple Inventory System 22/ 27

23 Example 1.3.5: Case Study Materialized Limited to a maximum of S = 80 cars Inventory reviewed every Monday If inventory falls below s = 20, order cars sufficient to restore to S For now, ignore delivery lag Costs: Item cost is c item = $8000 per item Setup cost is c setup = $1000 Holding cost is c hold = $25 per week Shortage cost is c hold = $700 per week Discrete-Event Simulation: A First Course Section 1.3: A Simple Inventory System 23/ 27

24 Per-Interval Average Operating Costs The average operating costs per time interval are item cost : c item ō setup cost : c setup ū holding cost : c hold l + shortage cost : c short l The average total operating cost per time interval is their sum For the stats and costs of the hypothetical dealership: item cost : $ = $234, 320 per week setup cost : $ = $390 per week holding cost : $ = $1, 060 per week shortage cost : $ = $175 per week Discrete-Event Simulation: A First Course Section 1.3: A Simple Inventory System 24/ 27

25 Cost Minimization By varying s (and possibly S), an optimal policy can be determined Optimal minimum average cost Note that ō = d, and d depends only on the demands Hence, item cost is independent of (s,s) Average dependent cost is avg setup cost + avg holding cost + avg shortage cost Discrete-Event Simulation: A First Course Section 1.3: A Simple Inventory System 25/ 27

26 Experimentation Let S be fixed, and let the demand sequence be fixed If s is systematically increased, we expect: average setup cost and holding cost will increase as s increases average shortage cost will decrease as s increases average dependent cost will have U shape, yielding an optimum From results (next slide), minimum cost is $1550 at s = 22 Discrete-Event Simulation: A First Course Section 1.3: A Simple Inventory System 26/ 27

27 Example 1.3.7: Simulation Results setup cost s holding cost s shortage cost total cost s s Discrete-Event Simulation: A First Course Section 1.3: A Simple Inventory System 27/ 27

A Simple Inventory System

A Simple Inventory System A Smple Inventory System Lawrence M. Leems and Stephen K. Park, Dscrete-Event Smulaton: A Frst Course, Prentce Hall, 2006 Hu Chen Computer Scence Vrgna State Unversty Petersburg, Vrgna February 8, 2017

More information

Section 3.3: Discrete-Event Simulation Examples

Section 3.3: Discrete-Event Simulation Examples Section 33: Discrete-Event Simulation Examples Discrete-Event Simulation: A First Course c 2006 Pearson Ed, Inc 0-13-142917-5 Discrete-Event Simulation: A First Course Section 33: Discrete-Event Simulation

More information

Coordinated Replenishments at a Single Stocking Point

Coordinated Replenishments at a Single Stocking Point Chapter 11 Coordinated Replenishments at a Single Stocking Point 11.1 Advantages and Disadvantages of Coordination Advantages of Coordination 1. Savings on unit purchase costs.. Savings on unit transportation

More information

Section 6.3: Discrete Random Variable Applications

Section 6.3: Discrete Random Variable Applications Section 6.3: Discrete Random Variable Applications Discrete-Event Simulation: A First Course c 2006 Pearson Ed., Inc. 0-13-142917-5 Discrete-Event Simulation: A First Course Section 6.3: Discrete Random

More information

2001, Dennis Bricker Dept of Industrial Engineering The University of Iowa. DP: Producing 2 items page 1

2001, Dennis Bricker Dept of Industrial Engineering The University of Iowa. DP: Producing 2 items page 1 Consider a production facility which can be devoted in each period to one of two products. For simplicity, we assume that the production rate is deterministic and that production is always at full capacity.

More information

Stochastic inventory system with two types of services

Stochastic inventory system with two types of services Int. J. Adv. Appl. Math. and Mech. 2() (204) 20-27 ISSN: 2347-2529 Available online at www.ijaamm.com International Journal of Advances in Applied Mathematics and Mechanics Stochastic inventory system

More information

An Optimal Rotational Cyclic Policy for a Supply Chain System with Imperfect Matching Inventory and JIT Delivery

An Optimal Rotational Cyclic Policy for a Supply Chain System with Imperfect Matching Inventory and JIT Delivery Proceedings of the 010 International onference on Industrial Engineering and Operations Management Dhaa, Bangladesh, January 9 10, 010 An Optimal Rotational yclic Policy for a Supply hain System with Imperfect

More information

Program Name: PGDBA Production and Operations Management Assessment Name: POM - Exam Weightage: 70 Total Marks: 70

Program Name: PGDBA Production and Operations Management Assessment Name: POM - Exam Weightage: 70 Total Marks: 70 Program Name: PGDBA Subject: Production and Operations Management Assessment Name: POM - Exam Weightage: 70 Total Marks: 70 Duration: 60 mins Instructions (Start of Assessment): Marks: 70 Time: 60 Minutes

More information

Time. 3 p3 Time. (a) (b)

Time. 3 p3 Time. (a) (b) A Hybrid Algorithm for Solving the Economic Lot and Delivery Scheduling Problem in the Common Cycle Case Suquan Ju Jens Clausen Informatics and Mathematical Modelling echnical University of Denmark 2800

More information

Inventory optimization of distribution networks with discrete-event processes by vendor-managed policies

Inventory optimization of distribution networks with discrete-event processes by vendor-managed policies Inventory optimization of distribution networks with discrete-event processes by vendor-managed policies Simona Sacone and Silvia Siri Department of Communications, Computer and Systems Science University

More information

Markov Chains. Chapter 16. Markov Chains - 1

Markov Chains. Chapter 16. Markov Chains - 1 Markov Chains Chapter 16 Markov Chains - 1 Why Study Markov Chains? Decision Analysis focuses on decision making in the face of uncertainty about one future event. However, many decisions need to consider

More information

Demand Forecasting. for. Microsoft Dynamics 365 for Operations. User Guide. Release 7.1. April 2018

Demand Forecasting. for. Microsoft Dynamics 365 for Operations. User Guide. Release 7.1. April 2018 Demand Forecasting for Microsoft Dynamics 365 for Operations User Guide Release 7.1 April 2018 2018 Farsight Solutions Limited All Rights Reserved. Portions copyright Business Forecast Systems, Inc. This

More information

SYMBIOSIS CENTRE FOR DISTANCE LEARNING (SCDL) Subject: production and operations management

SYMBIOSIS CENTRE FOR DISTANCE LEARNING (SCDL) Subject: production and operations management Sample Questions: Section I: Subjective Questions 1. What are the inputs required to plan a master production schedule? 2. What are the different operations schedule types based on time and applications?

More information

Forecasting. Operations Analysis and Improvement Spring

Forecasting. Operations Analysis and Improvement Spring Forecasting Operations Analysis and Improvement 2015 Spring Dr. Tai-Yue Wang Industrial and Information Management Department National Cheng Kung University 1-2 Outline Introduction to Forecasting Subjective

More information

Copyright 2010 Pearson Education, Inc. Publishing as Prentice Hall.

Copyright 2010 Pearson Education, Inc. Publishing as Prentice Hall. 13 Forecasting PowerPoint Slides by Jeff Heyl For Operations Management, 9e by Krajewski/Ritzman/Malhotra 2010 Pearson Education 13 1 Forecasting Forecasts are critical inputs to business plans, annual

More information

CHAPTER IX OPTIMIZATION OF INTEGRATED VENDOR-BUYER PRODUCTION INVENTORY MODEL WITH BACKORDERING WITH TRANSPORTATION COST IN AN UNCERTAIN ENVIRONMENT

CHAPTER IX OPTIMIZATION OF INTEGRATED VENDOR-BUYER PRODUCTION INVENTORY MODEL WITH BACKORDERING WITH TRANSPORTATION COST IN AN UNCERTAIN ENVIRONMENT CHAPTER IX OPTIMIZATION OF INTEGRATED VENDOR-BUYER PRODUCTION INVENTORY MODEL WITH BACKORDERING WITH TRANSPORTATION COST IN AN UNCERTAIN ENVIRONMENT This chapter develops an integrated single-vendor, single-uyer

More information

Antti Salonen PPU Le 2: Forecasting 1

Antti Salonen PPU Le 2: Forecasting 1 - 2017 1 Forecasting Forecasts are critical inputs to business plans, annual plans, and budgets Finance, human resources, marketing, operations, and supply chain managers need forecasts to plan: output

More information

PPU411 Antti Salonen. Forecasting. Forecasting PPU Forecasts are critical inputs to business plans, annual plans, and budgets

PPU411 Antti Salonen. Forecasting. Forecasting PPU Forecasts are critical inputs to business plans, annual plans, and budgets - 2017 1 Forecasting Forecasts are critical inputs to business plans, annual plans, and budgets Finance, human resources, marketing, operations, and supply chain managers need forecasts to plan: output

More information

Antti Salonen KPP Le 3: Forecasting KPP227

Antti Salonen KPP Le 3: Forecasting KPP227 - 2015 1 Forecasting Forecasts are critical inputs to business plans, annual plans, and budgets Finance, human resources, marketing, operations, and supply chain managers need forecasts to plan: output

More information

Multi level inventory management decisions with transportation cost consideration in fuzzy environment. W. Ritha, S.

Multi level inventory management decisions with transportation cost consideration in fuzzy environment. W. Ritha, S. Annals of Fuzzy Mathematics and Informatics Volume 2, No. 2, October 2011, pp. 171-181 ISSN 2093 9310 http://www.afmi.or.kr @FMI c Kyung Moon Sa Co. http://www.kyungmoon.com Multi level inventory management

More information

Operations Management

Operations Management Operations Management Chapter 4 Forecasting PowerPoint presentation to accompany Heizer/Render Principles of Operations Management, 7e Operations Management, 9e 2008 Prentice Hall, Inc. 4 1 Outline Global

More information

Hand Simulations. Christos Alexopoulos and Dave Goldsman 9/2/14. Georgia Institute of Technology, Atlanta, GA, USA 1 / 26

Hand Simulations. Christos Alexopoulos and Dave Goldsman 9/2/14. Georgia Institute of Technology, Atlanta, GA, USA 1 / 26 1 / 26 Hand Simulations Christos Alexopoulos and Dave Goldsman Georgia Institute of Technology, Atlanta, GA, USA 9/2/14 2 / 26 Outline 1 Monte Carlo Integration 2 Making Some π 3 Single-Server Queue 4

More information

15 yaş üstü istihdam ( )

15 yaş üstü istihdam ( ) Forecasting 1-2 Forecasting 23 000 15 yaş üstü istihdam (2005-2008) 22 000 21 000 20 000 19 000 18 000 17 000 - What can we say about this data? - Can you guess the employement level for July 2013? 1-3

More information

RS Metrics CME Group Copper Futures Price Predictive Analysis Explained

RS Metrics CME Group Copper Futures Price Predictive Analysis Explained RS Metrics CME Group Copper Futures Price Predictive Analysis Explained Disclaimer ALL DATA REFERENCED IN THIS WHITE PAPER IS PROVIDED AS IS, AND RS METRICS DOES NOT MAKE AND HEREBY EXPRESSLY DISCLAIMS,

More information

On Modeling the Tactical Planning of Oil Pipeline Networks

On Modeling the Tactical Planning of Oil Pipeline Networks On Modeling the Tactical Planning of Oil Pipeline Networks Daniel Felix Ferber PETROBRAS ICAPS Introduction The supply chain at Petrobras: Pipeline Networks Oil refined commodities Multi-commodity Multi-period

More information

Mechanical Engineering 101

Mechanical Engineering 101 Mechanical Engineering 101 University of alifornia, Berkeley Lecture #16 1 Today s lecture MRP scheduling LFL EOQ/EMQ POQ apacity planning 2 Formulae I it max{ 0, I i t 1 SR GR, it it } NR it max 0, GR

More information

Industrial Engineering Prof. Inderdeep Singh Department of Mechanical & Industrial Engineering Indian Institute of Technology, Roorkee

Industrial Engineering Prof. Inderdeep Singh Department of Mechanical & Industrial Engineering Indian Institute of Technology, Roorkee Industrial Engineering Prof. Inderdeep Singh Department of Mechanical & Industrial Engineering Indian Institute of Technology, Roorkee Module - 04 Lecture - 05 Sales Forecasting - II A very warm welcome

More information

6. DYNAMIC PROGRAMMING I

6. DYNAMIC PROGRAMMING I 6. DYNAMIC PROGRAMMING I weighted interval scheduling segmented least squares knapsack problem RNA secondary structure Lecture slides by Kevin Wayne Copyright 2005 Pearson-Addison Wesley Copyright 2013

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

Advances in Continuous Replenishment Systems. Edmund W. Schuster. Massachusetts Institute of Technology

Advances in Continuous Replenishment Systems. Edmund W. Schuster. Massachusetts Institute of Technology Advances in Continuous Replenishment Systems Edmund W. Schuster Massachusetts Institute of Technology TRADITIONAL REPLENISHMENT SYSTEM DEMAND FLOW SUPPLIER DISTRIBUTOR WAREHOUSE RETAIL STORES CONSUMER

More information

Chapter 7 Forecasting Demand

Chapter 7 Forecasting Demand Chapter 7 Forecasting Demand Aims of the Chapter After reading this chapter you should be able to do the following: discuss the role of forecasting in inventory management; review different approaches

More information

Single-part-type, multiple stage systems

Single-part-type, multiple stage systems MIT 2.853/2.854 Introduction to Manufacturing Systems Single-part-type, multiple stage systems Stanley B. Gershwin Laboratory for Manufacturing and Productivity Massachusetts Institute of Technology Single-stage,

More information

Neutrosophic EOQ Model with Price Break

Neutrosophic EOQ Model with Price Break eutrosophic Sets and Systems, Vol. 9, 8 4 University of ew Mexico eutrosophic EOQ Model with Price Break M. Mullai Assistant Professor of Mathematics, Alagappa University, Karaikudi, Tamilnadu, India.

More information

An Inventory Model for Gompertz Distribution Deterioration Rate with Ramp Type Demand Rate and Shortages

An Inventory Model for Gompertz Distribution Deterioration Rate with Ramp Type Demand Rate and Shortages International Journal of Statistics and Systems ISSN 0973-675 Volume, Number (07), pp. 363-373 Research India Publications http://www.ripublication.com An Inventory Model for Gompertz Distribution Deterioration

More information

Edexcel GCE Core Mathematics C1 Advanced Subsidiary

Edexcel GCE Core Mathematics C1 Advanced Subsidiary Centre No. Candidate No. Paper Reference(s) 6663/01 Edexcel GCE Core Mathematics C1 Advanced Subsidiary Monday 13 May 2013 Afternoon Time: 1 hour 30 minutes Materials required for examination Mathematical

More information

2 4 Substituting 2 into gives 2(2) 4. + x + x +...= + + x ! 4! Substituting x= 0 and =1 into (1 + x ) + x = 0, gives 0

2 4 Substituting 2 into gives 2(2) 4. + x + x +...= + + x ! 4! Substituting x= 0 and =1 into (1 + x ) + x = 0, gives 0 Talor Series 6C 1 Differentiating = +, with respect to, gives = 1+ (1) Differentiating (1) gives = () =, = 1 into = +, gives = + (1), so = 1 1 = into (1) gives =1+ = into gives () = () = = Sousing the

More information

AP STATISTICS: Summer Math Packet

AP STATISTICS: Summer Math Packet Name AP STATISTICS: Summer Math Packet DIRECTIONS: Complete all problems on this packet. Packet due by the end of the first week of classes. Attach additional paper if needed. Calculator may be used. 1.

More information

2-2 Logic ANSWER: A week has seven days, and there are 20 hours in a day. is false, because q is false. 3. ANSWER:

2-2 Logic ANSWER: A week has seven days, and there are 20 hours in a day. is false, because q is false. 3. ANSWER: Use the following statements to write a compound statement for each conjunction or disjunction. Then find its truth value. Explain your reasoning. p : A week has seven days. q: There are 20 hours in a

More information

An optimal solution for economic production quantity models with deteriorating items and time-varying production cost

An optimal solution for economic production quantity models with deteriorating items and time-varying production cost 2013c12 $ Ê Æ Æ 117ò 14Ï Dec., 2013 Operations Research Transactions Vol.17 No.4 An optimal solution for economic production quantity models with deteriorating items and time-varying production cost BAI

More information

The Single and Multi-Item Transshipment Problem with Fixed Transshipment Costs

The Single and Multi-Item Transshipment Problem with Fixed Transshipment Costs The Single and Multi-Item Transshipment Problem with Fixed Transshipment Costs Reut Noham, Michal Tzur Department of Industrial Engineering, Tel-Aviv University, Tel Aviv, Israel Received 1 October 2013;

More information

Faster Primal-Dual Algorithms for the Economic Lot-Sizing Problem

Faster Primal-Dual Algorithms for the Economic Lot-Sizing Problem Acknowledgment: Thomas Magnanti, Retsef Levi Faster Primal-Dual Algorithms for the Economic Lot-Sizing Problem Dan Stratila RUTCOR and Rutgers Business School Rutgers University Mihai Pătraşcu AT&T Research

More information

Period Order Quantity

Period Order Quantity IE6404 - Chapter 5 Dynamic Lot Sizing Techniques 1 Dynamic Lot Sizing Methods Simple Rules Period order quantity Fixed period demand Lot for lot (L4L) Heuristic Methods Silver-Meal method (SM) Least Unit

More information

An EOQ Model with Temporary Stock Dependent Demand with Random Lag

An EOQ Model with Temporary Stock Dependent Demand with Random Lag International Journal of Computer Science & Communication Vol. 1, No., July-December 010, pp. 43-47 An EOQ Model with Temporary Stock Dependent Demand with Random Lag P.S.R.K.Prasad 1 & K.V.S.Sarma 1 Narayana

More information

Location theory and clusters. Dr. Hans Koster Assistant professor

Location theory and clusters. Dr. Hans Koster Assistant professor Dr. Hans Koster Assistant professor 1 Internal economies of scale (EofS) can lead to Trading cities (EofS in transport) Factory cities (EofS in production) But where do cities emerge? Why is Colombo located

More information

Stochastic (Random) Demand Inventory Models

Stochastic (Random) Demand Inventory Models Stochastic (Random) Demand Inventory Models George Liberopoulos 1 The Newsvendor model Assumptions/notation Single-period horizon Uncertain demand in the period: D (parts) assume continuous random variable

More information

Industrial Processes I Manufacturing Economics

Industrial Processes I Manufacturing Economics Industrial Processes I Manufacturing Economics Equipment Cost Rate (Example 1) A production machine is purchased for an initial cost plus installation of $500,000. Its anticipated life = 7 yrs. The machine

More information

A Branch and Bound Algorithm for the Project Duration Problem Subject to Temporal and Cumulative Resource Constraints

A Branch and Bound Algorithm for the Project Duration Problem Subject to Temporal and Cumulative Resource Constraints A Branch and Bound Algorithm for the Project Duration Problem Subject to Temporal and Cumulative Resource Constraints Christoph Schwindt Institut für Wirtschaftstheorie und Operations Research University

More information

Discussion 03 Solutions

Discussion 03 Solutions STAT Discussion Solutions Spring 8. A new flavor of toothpaste has been developed. It was tested by a group of people. Nine of the group said they liked the new flavor, and the remaining indicated they

More information

NANYANG TECHNOLOGICAL UNIVERSITY SEMESTER I EXAMINATION MH4702/MAS446/MTH437 Probabilistic Methods in OR

NANYANG TECHNOLOGICAL UNIVERSITY SEMESTER I EXAMINATION MH4702/MAS446/MTH437 Probabilistic Methods in OR NANYANG TECHNOLOGICAL UNIVERSITY SEMESTER I EXAMINATION 2013-201 MH702/MAS6/MTH37 Probabilistic Methods in OR December 2013 TIME ALLOWED: 2 HOURS INSTRUCTIONS TO CANDIDATES 1. This examination paper contains

More information

Production Planning and Control

Production Planning and Control Production Planning and Control MAERIAL REQUIREMEN PLANNING Haeryip Sihombing BMFP 453 4 Universiti eknikal Malaysia Melaka (UeM) HAERY SIHOMBING First widely available software implementation of a manufacturing

More information

Research Article A Partial Backlogging Inventory Model for Deteriorating Items with Fluctuating Selling Price and Purchasing Cost

Research Article A Partial Backlogging Inventory Model for Deteriorating Items with Fluctuating Selling Price and Purchasing Cost Advances in Operations Research Volume 2012, Article ID 385371, 15 pages doi:10.1155/2012/385371 Research Article A Partial Backlogging Inventory Model for Deteriorating Items with Fluctuating Selling

More information

ISyE 6201: Manufacturing Systems Instructor: Spyros Reveliotis Spring 2006 Solutions to Homework 1

ISyE 6201: Manufacturing Systems Instructor: Spyros Reveliotis Spring 2006 Solutions to Homework 1 ISyE 601: Manufacturing Systems Instructor: Spyros Reveliotis Spring 006 Solutions to Homework 1 A. Chapter, Problem 4. (a) D = 60 units/wk 5 wk/yr = 310 units/yr h = ic = 0.5/yr $0.0 = $0.005/ yr A =

More information

The Real Mystery of Demand Planning

The Real Mystery of Demand Planning The Real Mystery of Demand Planning Jeff Metersky Chainalytics Contents 1. Why Benchmark Demand Planning 2. Challenges with Existing Approaches 3. Introduction to Sales & Operations Variability Consortium

More information

Graph the linear inequality. 1) x + 2y 6

Graph the linear inequality. 1) x + 2y 6 Assignment 7.1-7.3 Name MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Graph the linear inequality. 1) x + 2y 6 1) 1 2) x + y < -3 2) 2 Graph the

More information

Calculation exercise 1 MRP, JIT, TOC and SOP. Dr Jussi Heikkilä

Calculation exercise 1 MRP, JIT, TOC and SOP. Dr Jussi Heikkilä Calculation exercise 1 MRP, JIT, TOC and SOP Dr Jussi Heikkilä Problem 1: MRP in XYZ Company fixed lot size Item A Period 1 2 3 4 5 6 7 8 9 10 Gross requirements 71 46 49 55 52 47 51 48 56 51 Scheduled

More information

Arkansas Council of Teachers of Mathematics Algebra II State Contest 2016

Arkansas Council of Teachers of Mathematics Algebra II State Contest 2016 Arkansas Council of Teachers of Mathematics Algebra II State Contest 016 Work the multiple choice questions first, selecting the single best response from those provided and entering it on your scantron

More information

Buyer - Vendor incentive inventory model with fixed lifetime product with fixed and linear back orders

Buyer - Vendor incentive inventory model with fixed lifetime product with fixed and linear back orders National Journal on Advances in Computing & Management Vol. 5 No. 1 April 014 1 Buyer - Vendor incentive inventory model with fixed lifetime product with fixed and linear back orders M.Ravithammal 1 R.

More information

Essential Academic Skills Subtest III: Mathematics (003)

Essential Academic Skills Subtest III: Mathematics (003) Essential Academic Skills Subtest III: Mathematics (003) NES, the NES logo, Pearson, the Pearson logo, and National Evaluation Series are trademarks in the U.S. and/or other countries of Pearson Education,

More information

CHAPTER-3 MULTI-OBJECTIVE SUPPLY CHAIN NETWORK PROBLEM

CHAPTER-3 MULTI-OBJECTIVE SUPPLY CHAIN NETWORK PROBLEM CHAPTER-3 MULTI-OBJECTIVE SUPPLY CHAIN NETWORK PROBLEM 3.1 Introduction A supply chain consists of parties involved, directly or indirectly, in fulfilling customer s request. The supply chain includes

More information

Edexcel GCE Core Mathematics C1 Advanced Subsidiary

Edexcel GCE Core Mathematics C1 Advanced Subsidiary Centre No. Candidate No. Paper Reference 6 6 6 3 0 1 Paper Reference(s) 6663/01 Edexcel GCE Core Mathematics C1 Advanced Subsidiary Wednesday 16 May 2012 Morning Time: 1 hour 30 minutes Materials required

More information

Chapter 7: Hypothesis Testing - Solutions

Chapter 7: Hypothesis Testing - Solutions Chapter 7: Hypothesis Testing - Solutions 7.1 Introduction to Hypothesis Testing The problem with applying the techniques learned in Chapter 5 is that typically, the population mean (µ) and standard deviation

More information

On service level measures in stochastic inventory control

On service level measures in stochastic inventory control On service level measures in stochastic inventory control Dr. Roberto Rossi The University of Edinburgh Business School, The University of Edinburgh, UK roberto.rossi@ed.ac.uk Friday, June the 21th, 2013

More information

Optimal ordering policies for periodic-review systems with replenishment cycles

Optimal ordering policies for periodic-review systems with replenishment cycles European Journal of Operational Research 17 (26) 44 56 Production, Manufacturing and Logistics Optimal ordering policies for periodic-review systems with replenishment cycles Chi Chiang * Department of

More information

Inference About Means and Proportions with Two Populations

Inference About Means and Proportions with Two Populations Inference About Means and Proportions with Two Populations Content Inferences About the Difference Between Two Population Means: 1 and Known Inferences About the Difference Between Two Population Means:

More information

Joint probability distributions: Discrete Variables. Two Discrete Random Variables. Example 1. Example 1

Joint probability distributions: Discrete Variables. Two Discrete Random Variables. Example 1. Example 1 Joint probability distributions: Discrete Variables Two Discrete Random Variables Probability mass function (pmf) of a single discrete random variable X specifies how much probability mass is placed on

More information

AN EOQ MODEL FOR TWO-WAREHOUSE WITH DETERIORATING ITEMS, PERIODIC TIME DEPENDENT DEMAND AND SHORTAGES

AN EOQ MODEL FOR TWO-WAREHOUSE WITH DETERIORATING ITEMS, PERIODIC TIME DEPENDENT DEMAND AND SHORTAGES IJMS, Vol., No. 3-4, (July-December 0), pp. 379-39 Serials Publications ISSN: 097-754X AN EOQ MODEL FOR TWO-WAREHOUSE WITH DETERIORATING ITEMS, PERIODIC TIME DEPENDENT DEMAND AND SHORTAGES Karabi Dutta

More information

Improving Supply Chain Performance: Real-Time Demand Information and Flexible Deliveries

Improving Supply Chain Performance: Real-Time Demand Information and Flexible Deliveries Improving Supply Chain Performance: Real-Time Demand Information and Flexible Deliveries Kevin H. Shang Sean X. Zhou Geert-Jan van Houtum The Fuqua School of Business, Duke University, Durham, North Carolina

More information

0-1 Knapsack Problem

0-1 Knapsack Problem KP-0 0-1 Knapsack Problem Define object o i with profit p i > 0 and weight w i > 0, for 1 i n. Given n objects and a knapsack capacity C > 0, the problem is to select a subset of objects with largest total

More information

PS5: Two Variable Statistics LT3: Linear regression LT4: The test of independence.

PS5: Two Variable Statistics LT3: Linear regression LT4: The test of independence. PS5: Two Variable Statistics LT3: Linear regression LT4: The test of independence. Example by eye. On a hot day, nine cars were left in the sun in a car parking lot. The length of time each car was left

More information

Name Date Class. 5 y x + 7

Name Date Class. 5 y x + 7 Name Date Class 7.EE.1 SELECTED RESPONSE Select the correct answer. 1. What property allows the expression.7x + 10. + 15.3x 8.x + 15.6 to be simplified to the equivalent expression 0x + 10. 8.x + 15.6?

More information

Advanced Forecast. For MAX TM. Users Manual

Advanced Forecast. For MAX TM. Users Manual Advanced Forecast For MAX TM Users Manual www.maxtoolkit.com Revised: June 24, 2014 Contents Purpose:... 3 Installation... 3 Requirements:... 3 Installer:... 3 Setup: spreadsheet... 4 Setup: External Forecast

More information

Discrete Event and Process Oriented Simulation (2)

Discrete Event and Process Oriented Simulation (2) B. Maddah ENMG 622 Simulation 11/04/08 Discrete Event and Process Oriented Simulation (2) Discrete event hand simulation of an (s, S) periodic review inventory system Consider a retailer who sells a commodity

More information

Applied Regression Modeling: A Business Approach Chapter 3: Multiple Linear Regression Sections

Applied Regression Modeling: A Business Approach Chapter 3: Multiple Linear Regression Sections Applied Regression Modeling: A Business Approach Chapter 3: Multiple Linear Regression Sections 3.4 3.6 by Iain Pardoe 3.4 Model assumptions 2 Regression model assumptions.............................................

More information

Multicriteria Decision Making

Multicriteria Decision Making Multicriteria Decision Making Goal Programming Multicriteria Decision Problems Goal Programming Goal Programming: Formulation and Graphical Solution 1 Goal Programming Goal programming may be used to solve

More information

FAIRNESS FOR INFINITE STATE SYSTEMS

FAIRNESS FOR INFINITE STATE SYSTEMS FAIRNESS FOR INFINITE STATE SYSTEMS Heidy Khlaaf University College London 1 FORMAL VERIFICATION Formal verification is the process of establishing whether a system satisfies some requirements (properties),

More information

A Hierarchy of Suboptimal Policies for the Multi-period, Multi-echelon, Robust Inventory Problem

A Hierarchy of Suboptimal Policies for the Multi-period, Multi-echelon, Robust Inventory Problem A Hierarchy of Suboptimal Policies for the Multi-period, Multi-echelon, Robust Inventory Problem Dimitris J. Bertsimas Dan A. Iancu Pablo A. Parrilo Sloan School of Management and Operations Research Center,

More information

Algebra 1 Winter Break Extra Credit Fall Semester 2013

Algebra 1 Winter Break Extra Credit Fall Semester 2013 Algebra Winter Break Extra Credit Fall Semester ( Homework Points Maximum) Due: Monday January, at the start of class Directions: Answer all questions, showing work for each problem on your own separate

More information

Core Mathematics C2 Advanced Subsidiary

Core Mathematics C2 Advanced Subsidiary Paper Reference(s) 6664/01 Edexcel GCE Core Mathematics C2 Advanced Subsidiary Monday 11 January 2010 Morning Time: 1 hour 30 minutes Materials required for examination Mathematical Formulae (Pink or Green)

More information

Chapter 16. Simple Linear Regression and Correlation

Chapter 16. Simple Linear Regression and Correlation Chapter 16 Simple Linear Regression and Correlation 16.1 Regression Analysis Our problem objective is to analyze the relationship between interval variables; regression analysis is the first tool we will

More information

Replenishment Planning for Stochastic Inventory System with Shortage Cost

Replenishment Planning for Stochastic Inventory System with Shortage Cost Replenishment Planning for Stochastic Inventory System with Shortage Cost Roberto Rossi UCC, Ireland S. Armagan Tarim HU, Turkey Brahim Hnich IUE, Turkey Steven Prestwich UCC, Ireland Inventory Control

More information

Online Appendices: Inventory Control in a Spare Parts Distribution System with Emergency Stocks and Pipeline Information

Online Appendices: Inventory Control in a Spare Parts Distribution System with Emergency Stocks and Pipeline Information Online Appendices: Inventory Control in a Spare Parts Distribution System with Emergency Stocks and Pipeline Information Christian Howard christian.howard@vti.se VTI - The Swedish National Road and Transport

More information

ParkServe. The Trust for Public Land s. Emmalee Dolfi Gabriel Patterson-King ESRI User Conference 2017

ParkServe. The Trust for Public Land s. Emmalee Dolfi Gabriel Patterson-King ESRI User Conference 2017 The Trust for Public Land s ParkServe Automating Large-Scale Data Transformation, QA/QC and Analysis Emmalee Dolfi Gabriel Patterson-King ESRI User Conference 2017 Our mission The Trust for Public Land

More information

4-2. Matrix Addition. Vocabulary. How Are Matrices Added? Lesson. Definition of Matrix Addition. Mental Math

4-2. Matrix Addition. Vocabulary. How Are Matrices Added? Lesson. Definition of Matrix Addition. Mental Math Lesson 4- Matrix Addition BIG IDEA Matrices with the same dimensions can be added in a very natural way. Vocabulary matrix addition, sum of two matrices scalar multiplication, scalar product difference

More information

The Inventory-Routing Problem with Transshipment

The Inventory-Routing Problem with Transshipment The Inventory-Routing Problem with Transshipment Leandro Callegari Coelho Jean-François Cordeau Gilbert Laporte March 2011 CIRRELT-2011-21 Bureaux de Montréal : Bureaux de Québec : Université de Montréal

More information

Chapter 4 - Writing Linear Functions

Chapter 4 - Writing Linear Functions Chapter 4 - Writing Linear Functions Write an equation of the line with the given slope and y-intercept. 1. slope: 3 y-intercept: 6 a. y = 6x + 3 c. y = 6x 3 b. y = 3m + 6 d. y = 3x 6 2. D REF: Algebra

More information

Section 1.2: A Single Server Queue

Section 1.2: A Single Server Queue Section 12: A Single Server Queue Discrete-Event Simulation: A First Course c 2006 Pearson Ed, Inc 0-13-142917-5 Discrete-Event Simulation: A First Course Section 12: A Single Server Queue 1/ 30 Section

More information

PhysicsAndMathsTutor.com. International Advanced Level Statistics S2 Advanced/Advanced Subsidiary

PhysicsAndMathsTutor.com. International Advanced Level Statistics S2 Advanced/Advanced Subsidiary Write your name here Surname Other names Pearson Edexcel International Advanced Level Centre Number Statistics S2 Advanced/Advanced Subsidiary Candidate Number Monday 22 June 2015 Morning Time: 1 hour

More information

LUNG CHEUNG GOVERNMENT SECONDARY SCHOOL Mock Examination 2006 / 2007 Mathematics and Statistics

LUNG CHEUNG GOVERNMENT SECONDARY SCHOOL Mock Examination 2006 / 2007 Mathematics and Statistics S.7 LUNG CHEUNG GOVERNMENT SECONDARY SCHOOL Mock Examination 006 / 007 Mathematics and Statistics Maximum Mark: 100 Date: 1 007 Time: 8 30 11 30 1. This paper consists of Section A and Section B.. Answer

More information

Lecture Prepared By: Mohammad Kamrul Arefin Lecturer, School of Business, North South University

Lecture Prepared By: Mohammad Kamrul Arefin Lecturer, School of Business, North South University Lecture 15 20 Prepared By: Mohammad Kamrul Arefin Lecturer, School of Business, North South University Modeling for Time Series Forecasting Forecasting is a necessary input to planning, whether in business,

More information

Paper Reference. Paper Reference(s) 6664/01 Edexcel GCE Core Mathematics C2 Advanced Subsidiary

Paper Reference. Paper Reference(s) 6664/01 Edexcel GCE Core Mathematics C2 Advanced Subsidiary Centre No. Candidate No. Paper Reference 6 6 6 4 0 1 Paper Reference(s) 6664/01 Edexcel GCE Core Mathematics C2 Advanced Subsidiary Monday 11 January 2010 Morning Time: 1 hour 30 minutes Materials required

More information

7.1 INTRODUCTION. In this era of extreme competition, each subsystem in different

7.1 INTRODUCTION. In this era of extreme competition, each subsystem in different 7.1 INTRODUCTION In this era of extreme competition, each subsystem in different echelons of integrated model thrives to improve their operations, reduce costs and increase profitability. Currently, the

More information

Fuzzy Inventory Control Problem With Weibull Deterioration Rate and Logarithmic Demand Rate

Fuzzy Inventory Control Problem With Weibull Deterioration Rate and Logarithmic Demand Rate Volume 7 No. 07, 5-44 ISSN: -8080 (printed version); ISSN: 4-95 (on-line version) url: http://www.ijpam.eu ijpam.eu Fuzzy Inventory Control Problem With Weibull Deterioration Rate and Logarithmic Demand

More information

19. Fixed costs and variable bounds

19. Fixed costs and variable bounds CS/ECE/ISyE 524 Introduction to Optimization Spring 2017 18 19. Fixed costs and variable bounds ˆ Fixed cost example ˆ Logic and the Big M Method ˆ Example: facility location ˆ Variable lower bounds Laurent

More information

Advanced/Advanced Subsidiary. You must have: Mathematical Formulae and Statistical Tables (Blue)

Advanced/Advanced Subsidiary. You must have: Mathematical Formulae and Statistical Tables (Blue) Write your name here Surname Other names Pearson Edexcel International Advanced Level Centre Number Statistics S2 Advanced/Advanced Subsidiary Candidate Number Monday 22 June 2015 Morning Time: 1 hour

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

Probability Distributions for Discrete RV

Probability Distributions for Discrete RV An example: Assume we toss a coin 3 times and record the outcomes. Let X i be a random variable defined by { 1, if the i th outcome is Head; X i = 0, if the i th outcome is Tail; Let X be the random variable

More information

Information System Design IT60105

Information System Design IT60105 Information System Design IT60105 Lecture 8 Use Case Diagrams Lecture #8 What is a use-case diagram? Example: On-line purchase (OLP) system Use-case diagram of OLP system Different components in a use-case

More information

physicsandmathstutor.com Paper Reference Core Mathematics C2 Advanced Subsidiary Monday 11 January 2010 Morning Time: 1 hour 30 minutes

physicsandmathstutor.com Paper Reference Core Mathematics C2 Advanced Subsidiary Monday 11 January 2010 Morning Time: 1 hour 30 minutes Centre No. Candidate No. Paper Reference 6 6 6 4 0 1 Paper Reference(s) 6664/01 Edexcel GCE Core Mathematics C2 Advanced Subsidiary Monday 11 January 2010 Morning Time: 1 hour 30 minutes Materials required

More information

Effect of repair cost on the rework decision-making in an economic production quantity model

Effect of repair cost on the rework decision-making in an economic production quantity model Effect of repair cost on the rework decision-making in an economic production quantity model Singa Wang Chiu Department of Business Administration Chaoyang University of Technology 68, Gifeng E. Rd. Wufeng,

More information

Applied Statistics I

Applied Statistics I Applied Statistics I Liang Zhang Department of Mathematics, University of Utah June 17, 2008 Liang Zhang (UofU) Applied Statistics I June 17, 2008 1 / 22 Random Variables Definition A dicrete random variable

More information