SlideShare a Scribd company logo
1 of 36
Exercise Problems for Chapter 5
Numerical example on page 203
Period
1
2
3
4
5
6
7
8
9
10
11
12
Month
Jan
Feb
Mar
Apr
May
Jun
Jul
Aug
Sep
Oct
Nov
Dec
Demand
10
62
12
130
154
129
88
52
124
160
238
41
A = $54r = $0.02/monthv = $20/box
Decide on replenishment time and quantities for the above
problem using the solution approaches listed below and
calculate carrying and setup costs, as well as total cost for each
approach.
a) 3-months’ demand replenishment
b) Fixed EOQ
c) Wagner-Whitin algorithm
d) Silver-Meal algorithm
e) Periodic order quantity
f) Lot-for-lot
g) Least unit cost
h) Part-period balancing
Toy Problem
Period
1
2
3
4
Demand
100
75
175
200
A = $50v = $5r = $0.01/month
Decide on replenishment time and quantities for the above
problem using the solution approaches listed below and
calculate carrying and setup costs, as well as total cost for each
approach.
a) 3-months’ demand replenishment
b) Fixed EOQ
c) Wagner-Whitin algorithm
d) Silver-Meal algorithm
e) Periodic order quantity
f) Lot-for-lot
g) Least unit cost
h) Part-period balancing
Problem 5.2
The demand pattern for a type of filter is given below. These
filters cost the company $4.75 each; ordering and carrying costs
are $35 and $0.24/yr, respectively. Use the Silver-Meal
heuristic to determine the sizes and timing of replenishment of
stock.
Jan
Feb
Mar
Apr
May
Jun
July
Aug
Sep
Oct
Nov
Dec
18
31
23
95
29
37
50
39
30
88
22
36
Problem 5.10
Consider a company facing a demand pattern provided below.
Each item costs $4.00. Ordering cost is $25 per order and
carrying inventory costs the company $0.05/month. Using a 3-
month decision rule total replenishment cost of the company is
$256.
Jan
Feb
Mar
Apr
May
Jun
July
Aug
Sep
Oct
Nov
Dec
20
40
110
120
60
30
20
30
80
120
130
40
a) Construct a replenishment schedule and calculate the
associated costs using the fixed EOQ method.
b) Repeat using Wagner-Whitin algorithm
c) Repeat using Silver-Meal heuristic
d) Repeat using LUC.
e) Repeat using PPB.
f) Repeat using POQ.
CSC-317-03 – Final Assignment
You are to develop a website that can receive input from a
vehicle via query URLs that will
record the input into a database and use that data to map its
relative position. This is an
INDIVIDUAL assignment.
Data Acquisition:
The following relative URL’s (or routes) are used by the vehicle
to provide data to the website:
/register?name=XXXX&width=###.###
Adds a new vehicle run to the system, should return a cookie
called USER=[name] that would
be included for the other commands. Width is the width of the
vehicle in cm.
It should overwrite any other “active” session for that named
vehicle
/wheels?left=###.###&right=###.###
Rescords the speed of the left and right wheel in cm/sec for that
vehicle in the current session
/echo?dist=###.###
Records the result of the echo sensor in cm for the vehicle in
the current session
/line?l1=##&l2=##&l3=##
Records the result of ONE or MORE l1, l2, l3, etc. Line sensors
on/off cm for the vehicle in the
current session
/other?[variable key:value pairs]
Records and other data sent in key:value pairs to be recorded
for the vehicle in the current
session
/end
End the current session for the vehicle
All of the above will also have a “time=#####” parameter for
relative time calculations. Time
will be in milliseconds.
All records should also be timestamped with the server’s date
and time.
User Interface:
/active
Shows a list of the active vehicle sessions and links to /map to
map their position and to
/datareview to show the data received to date.
/review
Shows a list of all sessions (active and complete) that can be
filtered by vehicle name, and by
time frame (i.e started before/after certain time). This list
should link to /datareview and /map
CSC-317-03 – Final Assignment
/datareview
Shows all the data sent to the server in chronological order.
The data can be filtered to show
only specific data fields (based on the data fields), like show
only left and right wheel data or
show l1 echo and right wheel, etc.
/map
Displays a graphical representation of the relative position of
the vehicle and its route. It can
be assumed that the vehicle travels within a 1000 x 1000 cm
grid. Calculation of position is
based on the data from the wheels which has been recorded in
cm/sec. Equal values applied to
both wheels indicate straight movement. Unequal values
indicates a change in direction.
Slower right wheel would indicate a turn right, slower left
wheel indicates a turn left.
To calculate the “dot” (position) multiply the average wheel
speed (between the last wheel
data and the current wheel data) by the delta of time (use
millisecond times) from the last
wheel data. That gives you how far each wheel moved. Calling
these LAL (left arc length) and
RAL (right arc length), we first need to handle special cases:
1) LAL and RAL are equal – meaning the car went straight (use
an error delta, such as a
1/10 of a mm to allow for data fluctuation).
2) LAL = (or is near) 0, while RAL is some significant (> error
) value, Vehicle making a sharp
left turn (pivoting on left wheel).
3) RAL = (or is near) 0, while LAL is some significant (> error
) value, Vehicle making a sharp
right turn (pivoting on right wheel).
4) RAL and LAL are (or near) 0 – Vehicle is stopped
The final cases are where both LAL and RAL are significant
values but not equal. If LAL is > RAL
then the formulas below should be used to calculate the radius
of the circle that contains the
RAL arc and the angle in degrees that the arc represent of that
circle.
��� =
�
360
2�(� + �)������ =
�
360
2��
� =
��� ∗ 360
2��
���� =
�
5������ − 18
If RAL is > LAL, invert the two values (RAL and LAL) in the
above equations.
From these values you should then be able to calculate the
delta-x and delta-y to determine the
new position.
CSC-317-03 – Final Assignment
Assignment:
Your assignment for this final project (this is your final) is to
develop the above website and use
the supplied script which will feed data into your site.
You will then navigate to the /active url (and take screen shots
of each screen) show the active
sessions. Click the link to bring you to the datareview for that
session. Take screen shots of the
screen with all data showing, then filter on just the dist values,
then on the wheel values
Navigate to the /review url (and take screen shots of each
screen) and show all sessions, then
filter on name showing just the sessions for a particular vehicle
name, then further filter by
date.
Finally show the /map url for at least one of the sessions.
Preferably two, one complete session
and one active session. If you are animating the display of the
map you can record that as an
MP4 file to include with your submission.
The Submission should include a writeup of what you did, the
tools used, and reference
material used, the screen shots and any other relevant
information. Please Include a title page
that has your name and student ID number on it. Also submit
all your source files.
Rubric:
Component Points
Data collection 15
Database storage 10
Session display with filtering (active and complete) 15
Data Review with filtering 15
Map 15
Animated Map +10
Screen shots / MP4 10
Writeup 10
Source File submission 10
CSC-317-03 – Final Assignment
Mapping Help
This diagram is to help you with the mapping of the vehicle.
In the diagram, the Green dot indicates the actual plot position
for the vehicle. This shows a
vehicle bearing right.
w is the width of the vehicle (passed in on register).
We start with the car at 0,0 and the left wheel would be at -
1/2w,0 and the right wheel at
1/2w,0. (You need to keep track of the left and right wheel
position throughout the plotting of
the vehicle). You calculate the LAL and RAL by taking the
average speed of the prior point and
current point multiplied by the time interval between the points.
Then use the formulas above
in the document to calculate r and theta. Then drop a
perpendicular line which will be the
change in y (delta y) - Δ� = �sin�. The line segment ri is
calculated by �! = �cos�and thus
the delta x is just Δ� = � −�!. Repeat these calculations for
the Left wheel by replacing r with
r+w.
Inventory and
Production Management
in Supply Chains
Fourth Edition
Inventory and
Production Management
in Supply Chains
Fourth Edition
Edward A. Silver
University of Calgary (retired), Alberta, Canada
David F. Pyke
University of San Diego, California, USA
Douglas J. Thomas
Penn State University, Pennsylvania, USA
CRC Press
Taylor & Francis Group
Boca Raton London New York
CRC Press is an imprint of the
Taylor & Francis Croup, an informa business
CRC Press
Taylor & Francis Group
6000 Broken Sound Parkway NW, Suite 300
Boca Raton, FL 33487-2742
© 2017 by Taylor & Francis Group, L L C
CRC Press is an imprint of Taylor & Francis Group, an Informa
business
No claim to original U.S. Government works
Printed on acid-free paper
Version Date: 20160830
International Standard Book Number-13:978-1-4665-5861-8
(Hardback)
This book contains information obtained from authentic and
highly regarded sources. Reasonable efforts have been made to
publish reliable data and information, but the author and
publisher cannot assume responsibility for the validity of all
materials
or the consequences of their use. The authors and publishers
have attempted to trace the copyright holders of all material
repro-
duced in this publication and apologize to copyright holders if
permission to publish in this form has not been obtained. If any
copyright material has not been acknowledged please write and
let us know so we may rectify in any future reprint.
Except as permitted under U.S. Copyright Law, no part of this
book may be reprinted, reproduced, transmitted, or utilized in
any
form by any electronic, mechanical, or other means, now known
or hereafter invented, including photocopying, microfilming,
and recording, or in any information storage or retrieval system,
without written permission from the publishers.
For permission to photocopy or use material electronically from
this work, please access www.copyright.com (http://www.copy-
right.com/) or contact the Copyright Clearance Center, Inc.
(CCC), 222 Rosewood Drive, Danvers, M A 01923, 978-750-
8400.
C C C is a not-for-profit organization that provides licenses and
registration for a variety of users. For organizations that have
been granted a photocopy license by the C C C , a separate
system of payment has been arranged.
Trademark Notice: Product or corporate names may be
trademarks or registered trademarks, and are used only for
identifica-
tion and explanation without intent to infringe.
Library of Congress Cataloging-in-Publication Data
Names: Silver, Edward A . (Edward Allen), 1937- author. |
Pyke, D. F. (David
F.) author. | Silver, Edward A . (Edward Allen), 1937- Decision
systems for
inventory management and production and planning. | Silver,
Edward A .
(Edward Allen), 1937- Inventory management and production
planning and
scheduling.
Title: Inventory and production management in supply chains /
Edward A .
Silver, David F. Pyke, Douglas J. Thomas.
Description: Fourth Edition. | Boca Raton : Taylor & Francis,
2017. | Revised
edition of Inventory management and production planning and
scheduling. |
Includes index.
Identifiers: L C C N 2016022678 | ISBN 9781466558618
(hardback : alk. paper)
Subjects: L C S H : Inventory control—Decision making. |
Production
planning—Decision making.
Classification: L C C HD40 .S55 2017 | D D C 658.7/87-dc23
L C record available at https://lccn.loc.gov/2016022678
Visit the Taylor & Francis Web site at
http://www.taylorandfrancis.com
and the CRC Press Web site at
http://www.crcpress.com
Edward A. Silver dedicates this work to Maxine, Michelle,
Norman, and Heidi
David F. Pyke dedicates this work to Susan, James, Daniel, and
Cory Ad majorem Dei gloriam
Douglas J. Thomas dedicates this work to Traci, Alison, Kate,
and Maya
Contents
Preface
...............................................................................................
.............. xix
Acknowledgments
......................................................................................... ....x
xiii
Authors
...............................................................................................
.............xxv
SECTION I THE CONTEXT AND IMPORTANCE OF
INVENTORY
MANAGEMENT AND PRODUCTION PLANNING
1 The Importance of Inventory Management and Production
Planning and
Scheduling
...............................................................................................
3
1.1 Why Aggregate Inventory Investment Fluctuates: The
Business Cycle ................. 7
1.2 Corporate Strategy and the Role of Top Management
..................................... 8
1.3 The Relationship of Finance and Marketing to Inventory
Management and
Production Planning and Scheduling
.........................................................10
1.3.1
Finance...................................................................................
.10
1.3.2 Marketing
................................................................................11
1.4 Operations
Strategy...............................................................................12
1.4.1 Mission
...................................................................................13
1.4.2 Objectives
................................................................................13
1.4.3 Management Levers
....................................................................15
1.4.4 General
Comments.....................................................................16
1.5 Measures of Effectiveness for Inventory Management and
Production
Planning and Scheduling Decisions
...........................................................17
1.6 Summary
...........................................................................................18
Problems
...............................................................................................
.....18
References..............................................................................
.....................20
2 Frameworks for Inventory Management and Production
Planning and
Scheduling
..............................................................................................
23
2.1 The Diversity of Stock-Keeping Units
........................................................23
2.2 The Bounded Rationality of a Human Being
...............................................24
2.3 Decision Aids for Managing Diverse Individual Items
....................................25
2.3.1 Conceptual Aids
........................................................................25
2.3.2 Physical Aids
.............................................................................25
2.4 Frameworks for Inventory Management
.....................................................26
2.4.1 Functional Classifications of Inventories
...........................................26
2.4.2 The A–B–C Classification as a Basis for Designing
Individual Item
Decision Models
........................................................................28
vii
viii � Contents
2.5 A Framework for Production Planning and Scheduling
..................................31
2.5.1 A Key Marketing Concept: The Product Life Cycle
.............................31
2.5.2 Different Types of Production Processes
...........................................33
2.5.3 The Product-Process Matrix
..........................................................37
2.6 Costs and Other Important Factors
...........................................................40
2.6.1 Cost
Factors..............................................................................40
2.6.2 Other Key Variables
....................................................................44
2.7 Three Types of Modeling Strategies
...........................................................46
2.7.1 Detailed Modeling and Analytic Selection of the Values of
a Limited
Number of Decision Variables
.......................................................47
2.7.2 Broader-Scope Modeling with Less Optimization
...............................47
2.7.3 Minimization of Inventories with Little
Modeling...............................47
2.8 The Art of Modeling
.............................................................................47
2.9 Explicit Measurement of Costs
.................................................................49
2.10 Implicit Cost Measurement and Exchange Curves
.........................................52
2.11 The Phases of a Major Study of an Inventory Management
or Production
Planning and Scheduling System
..............................................................53
2.11.1 Consideration
...........................................................................54
2.11.2 Analysis
...................................................................................55
2.11.3 Synthesis
..................................................................................57
2.11.4 Choosing among Alternatives
........................................................57
2.11.5 Control
...................................................................................58
2.11.6 Evaluation
................................................................................58
2.11.7 General
Comments.....................................................................58
2.11.8 Transient Effects
........................................................................59
2.11.9 Physical Stock Counts
.................................................................59
2.12 Summary
...........................................................................................61
Problems
...............................................................................................
.....61
Appendix 2A: The Lognormal Distribution
.........................................................68
References..............................................................................
.....................70
3 Forecasting Models and Techniques
..............................................................73
3.1 The Components of Time-Series Analysis
...................................................75
3.2 The Three Steps Involved in Statistically Forecasting a
Time Series ....................77
3.3 Some Aggregate Medium-Range Forecasting
Methods....................................78
3.3.1 Regression Procedures
.................................................................79
3.4 Individual-Item, Short-Term Forecasting: Models and
Procedures .....................81
3.4.1 The Simple Moving Average
.........................................................82
3.4.2 Simple Exponential Smoothing
......................................................84
3.4.3 Exponential Smoothing for a Trend Model
.......................................88
3.4.4 Winters Exponential Smoothing Procedure for a Seasonal
Model ............92
3.4.5 Selection of Smoothing Constants
................................................ 101
3.5 Measuring the Performance of a Forecasting Process
.................................... 104
3.5.1 Measures of Forecast Accuracy
..................................................... 105
3.5.2 Estimating the Standard Deviation of Forecast Errors
over a Lead Time
..................................................................... 109
3.5.3 Monitoring
Bias....................................................................... 111
Contents � ix
3.5.4 Corrective Actions in Statistical
Forecasting..................................... 115
3.5.5 Probability Distributions of Forecast Errors
..................................... 117
3.6 Handling Anomalous Demand
.............................................................. 117
3.7 Incorporation of Human Judgment
......................................................... 118
3.7.1 Factors Where Judgment Input Is
Needed....................................... 118
3.7.2 Guidelines for the Input and Monitoring of Judgment
....................... 119
3.8 Dealing with Special Classes of Individual Items
......................................... 120
3.8.1 Items with Limited
History......................................................... 120
3.8.2 Intermittent and Erratic Demand
................................................. 122
3.8.3 Replacement or Service Parts
....................................................... 123
3.8.4 Terminal Demand
.................................................................... 124
3.9 Assessing Forecasting Procedures: Tactics and
Strategy.................................. 125
3.9.1 Statistical Accuracy of
Forecasts.................................................... 125
3.9.2 Some Issues of a More Strategic Nature
.......................................... 126
Problems
...............................................................................................
... 128
Appendix 3A: Derivations
............................................................................. 135
References..............................................................................
................... 137
SECTION II REPLENISHMENT SYSTEMS FOR MANAGING
INDIVIDUAL ITEM INVENTORIES WITHIN A FIRM
4 Order Quantities When Demand Is Approximately Level
................................. 145
4.1 Assumptions Leading to the Basic EOQ
................................................... 146
4.2 Derivation of the EOQ
........................................................................ 147
4.2.1 Numerical Illustration
............................................................... 151
4.3 Sensitivity
Analysis..............................................................................
152
4.4 Implementation Aids
........................................................................... 154
4.4.1 Numerical Illustration
............................................................... 155
4.5 Quantity Discounts
............................................................................ 155
4.5.1 Numerical Illustrations
.............................................................. 158
4.5.2 Item A (An Illustration of Case a of Figure 4.5)
................................ 159
4.5.3 Item B (An Illustration of Case b of Figure
4.5)................................ 159
4.5.4 Item C (An Illustration of Case c of Figure
4.5)................................ 160
4.6 Accounting for inflation
....................................................................... 160
4.6.1 Price Established Independent of Ordering Policy
............................. 161
4.6.2 Price Set as a Fixed Fractional Markup on Unit
Variable Cost
.......................................................................... 163
4.7 Limits on order
sizes............................................................................ 164
4.7.1 Maximum Time Supply or Capacity Restriction
............................... 164
4.7.2 Minimum Order Quantity
......................................................... 165
4.7.3 Discrete Units
......................................................................... 165
4.8 Finite Replenishment Rate: The Economic Production
Quantity .................... 166
4.9 Incorporation of Other Factors
.............................................................. 168
4.9.1 Nonzero Constant Lead Time That Is Known with
Certainty ...............................................................................
168
4.9.2 Nonzero Payment
Period............................................................ 169
4.9.3 Different Types of Carrying Charge
.............................................. 169
x � Contents
4.9.4 Multiple Setup Costs: Freight Discounts
........................................ 170
4.9.5 A Special Opportunity to Procure
................................................. 172
4.10 Selection of the Carrying Charge (r), the Fixed Cost per
Replenishment (A),
or the Ratio A/r Based on Aggregate Considerations: The
Exchange Curve ....... 176
4.10.1 Exchange Curve Illustration
........................................................ 177
4.11 Summary
.........................................................................................
179
Problems
...............................................................................................
... 179
Appendix 4A: Derivations
............................................................................. 187
References..............................................................................
................... 193
5 Lot Sizing for Individual Items with Time-Varying Demand
............................. 199
5.1 The Complexity of Time-Varying Demand
............................................... 200
5.2 The Choice of Approaches
.................................................................... 201
5.3 General Assumptions and a Numerical Example
......................................... 202
5.3.1 The Assumptions
..................................................................... 202
5.3.2 A Numerical Example
............................................................... 203
5.4 Use of a Fixed EOQ
............................................................................ 204
5.5 The Wagner-Whitin Method: An “Optimal”
Solution
under an Additional
Assumption
...................................................................................... 205
5.5.1 The Algorithm
........................................................................ 206
5.5.2 Potential Drawbacks of the Algorithm
........................................... 209
5.6 Heuristic Approaches for a Significantly Variable Demand
Pattern .................. 212
5.6.1 The Silver–Meal, or Least Period Cost, Heuristic
.............................. 212
5.6.2 The EOQ Expressed as a Time Supply
(POQ)................................. 216
5.6.3 Lot-for-Lot
............................................................................. 216
5.6.4 Least Unit Cost
....................................................................... 216
5.6.5 Part-Period Balancing
................................................................ 216
5.6.6 Performance of the Heuristics
...................................................... 218
5.6.7 When to Use Heuristics
............................................................. 219
5.6.8 Sensitivity to Errors in Parameters
................................................ 220
5.6.9 Reducing System Nervousness
..................................................... 221
5.7 Handling of Quantity Discounts
............................................................ 221
5.8 Aggregate Exchange Curves
................................................................... 223
5.9 Summary
.........................................................................................
223
Problems
...............................................................................................
... 223
Appendix 5A: Dynamic Programming and Linear Programming
Formulations ........... 232
References..............................................................................
................... 233
6 Individual Items with Probabilistic Demand
................................................. 237
6.1 Some Important Issues and Terminology
.................................................. 238
6.1.1 Different Definitions of Stock Level
.............................................. 238
6.1.2 Backorders versus Lost Sales
........................................................ 239
6.1.3 Three Key Issues to Be Resolved by a Control System
under
Probabilistic Demand
................................................................ 239
6.2 The Importance of the Item: A, B, and C
Classification................................ 240
6.3 Continuous versus Periodic Review
......................................................... 240
6.4 The Form of the Inventory Policy: Four Types of Control
Systems .................. 241
Contents � xi
6.4.1 Order-Point, Order-Quantity (s, Q) System
.................................... 242
6.4.2 Order-Point, Order-Up-to-Level (s, S) System
................................. 242
6.4.3 Periodic-Review, Order-Up-to-Level (R, S)
System............................ 243
6.4.4 (R, s, S) System
........................................................................ 244
6.5 Specific Cost and Service Objectives
........................................................ 245
6.5.1 Choosing the Best Approach
....................................................... 246
6.5.2 SSs Established through the Use of a Simple-Minded
Approach ...............................................................................
246
6.5.3 SSs Based on Minimizing Cost
.................................................... 248
6.5.4 SSs Based on Customer Service
.................................................... 248
6.5.5 SSs Based on Aggregate Considerations
.......................................... 250
6.6 Two Examples of Finding the Reorder Point s in a
Continuous-Review,
Order-Point, Order-Quantity (s, Q) System
.............................................. 250
6.6.1 Protection over the Replenishment Lead Time
................................. 251
6.6.2 An Example Using a Discrete
Distribution...................................... 252
6.7 Decision Rules for Continuous-Review, Order-Point, Order-
Quantity (s,Q)
Control Systems
................................................................................. 256
6.7.1 Common Assumptions and Notation
............................................ 257
6.7.2 General Approach to Establishing the Value of s
............................... 259
6.7.3 Common
Derivation................................................................. 260
6.7.4 Decision Rule for a Specified Safety Factor (k)
................................. 263
6.7.5 Decision Rule for a Specified Cost (B1) per Stockout
Occasion................................................................................
263
6.7.6 Decision Rule for a Specified Fractional Charge (B2) per
Unit Short ...... 266
6.7.7 Decision Rule for a Specified Fractional Charge (B3) per
Unit Short
per Unit Time .........................................................................
268
6.7.8 Decision Rule for a Specified Charge (B4) per Customer
Line Item
Short ....................................................................................
269
6.7.9 Decision Rule for a Specified Probability (P1) of No
Stockout per
Replenishment
Cycle................................................................. 269
6.7.10 Decision Rule for a Specified Fraction (P2) of Demand
Satisfied
Directly from Shelf
................................................................... 271
6.7.11 Decision Rule for a Specified Average Time (TBS)
between Stockout
Occasions...............................................................................
273
6.7.12 Decision Rule for the Allocation of a TSS to Minimize
the ETSOPY..... 274
6.7.13 Decision Rule for the Allocation of a TSS to Minimize
the ETVSPY ..... 274
6.7.14 Nonnormal Lead Time Demand Distributions
................................ 275
6.8 Implied Costs and Performance Measures
................................................. 277
6.9 Decision Rules for Periodic-Review, Order-Up-to-Level (R,
S) Control
Systems...................................................................................
......... 277
6.9.1 The Review Interval (R)
............................................................. 278
6.9.2 The Order-Up-to-Level (S)
......................................................... 278
6.9.3 Common Assumptions and Notation
............................................ 280
6.9.4 Common
Derivation................................................................. 280
6.10 Variability in the Replenishment Lead Time Itself
....................................... 282
6.10.1 Approach 1: Use of the Total Demand over the Full
Lead Time..............................................................................
283
xii � Contents
6.10.2 Approach 2: Use of the Distribution of Demand Rate per
Unit Time
Combined with the Lead Time Distribution
................................... 284
6.10.3 Nonnormal Distributions
........................................................... 285
6.11 Exchange Curves Involving SSs for (s,Q) Systems
....................................... 286
6.11.1 Single Item Exchange Curve: Inventory versus
Service........................ 287
6.11.2 An Illustration of the Impact of Moving Away from
Setting Reorder
Points as Equal Time Supplies
..................................................... 288
6.11.3 Derivation of the SS Exchange Curves
........................................... 290
6.11.4 Composite Exchange Curves
....................................................... 293
6.12 Summary
.........................................................................................
294
Problems
...............................................................................................
... 295
Appendix 6A: Some Illustrative Derivations and
Approximations ............................ 304
References..............................................................................
................... 312
SECTION III SPECIAL CLASSES OF ITEMS
7 Managing the Most Important
Inventories.................................................... 319
7.1 Nature of Class A
Items........................................................................ 319
7.2 Guidelines for Control of A
Items........................................................... 320
7.3 Simultaneous Determination of s and Q for Fast-Moving
Items ...................... 322
7.3.1 Decision
Rules......................................................................... 323
7.3.2 Cost Penalties
.......................................................................... 325
7.3.3 Further Comments
................................................................... 325
7.4 Decision Rules for (s, S) Systems
............................................................ 327
7.4.1 Simple Sequential Determination of s and S
.................................... 328
7.4.2 Simultaneous Selection of s and S Using the Undershoot
Distribution............................................................................
328
7.4.3 Comparison of the
Methods........................................................ 331
7.5 Decision Rules for (R, s, S) Systems
......................................................... 332
7.5.1 Decision Rule for a Specified Fractional Charge (B3)
per Unit Short at the End of Each
Period........................................ 332
7.5.2 Decision Rule for a Specified Fraction (P2) of Demand
Satisfied
Directly from Shelf
................................................................... 334
7.6 Coping with Nonstationary
Demand....................................................... 337
7.7 Comments on Multiple Sources of Supply and Expediting
........................... 339
7.8 Summary
................................................................................ .........
341
Problems
...............................................................................................
... 341
Appendix 7A: Simultaneous

More Related Content

Similar to Exercise Problems for Chapter 5Numerical example on page 203Pe.docx

Defect Analysis & Prevention, Data Mining & Visualization of Defect Matrix
Defect Analysis & Prevention, Data Mining & Visualization of Defect MatrixDefect Analysis & Prevention, Data Mining & Visualization of Defect Matrix
Defect Analysis & Prevention, Data Mining & Visualization of Defect MatrixAniruddha Sahasrabudhe
 
The production department of Celltronics International wants to ex.docx
The production department of Celltronics International wants to ex.docxThe production department of Celltronics International wants to ex.docx
The production department of Celltronics International wants to ex.docxoreo10
 
Airline Delays  Your task is to create an application that.docx
Airline Delays  Your task is to create an application that.docxAirline Delays  Your task is to create an application that.docx
Airline Delays  Your task is to create an application that.docxnettletondevon
 
ECO 605 Module Four Case Study Guidelines and RubricOverv.docx
ECO 605 Module Four Case Study Guidelines and RubricOverv.docxECO 605 Module Four Case Study Guidelines and RubricOverv.docx
ECO 605 Module Four Case Study Guidelines and RubricOverv.docxSALU18
 
Data Visualization With R: Introduction
Data Visualization With R: IntroductionData Visualization With R: Introduction
Data Visualization With R: IntroductionRsquared Academy
 
Cover PageComplete and copy the following to Word for your cover p.docx
Cover PageComplete and copy the following to Word for your cover p.docxCover PageComplete and copy the following to Word for your cover p.docx
Cover PageComplete and copy the following to Word for your cover p.docxfaithxdunce63732
 
References1. HCS 2010 online manuals.2. Data Data provi.docx
References1. HCS 2010 online manuals.2. Data  Data provi.docxReferences1. HCS 2010 online manuals.2. Data  Data provi.docx
References1. HCS 2010 online manuals.2. Data Data provi.docxdebishakespeare
 
Traffic_Deaths
Traffic_DeathsTraffic_Deaths
Traffic_DeathsBrett Keim
 
Computer Science Programming Assignment Help
Computer Science Programming Assignment HelpComputer Science Programming Assignment Help
Computer Science Programming Assignment HelpProgramming Homework Help
 
Practical Data Science : Data Cleaning and Summarising
Practical Data Science : Data Cleaning and SummarisingPractical Data Science : Data Cleaning and Summarising
Practical Data Science : Data Cleaning and SummarisingHariniMS1
 
Chapter 16
Chapter 16Chapter 16
Chapter 16bmcfad01
 
Project on nypd accident analysis using hadoop environment
Project on nypd accident analysis using hadoop environmentProject on nypd accident analysis using hadoop environment
Project on nypd accident analysis using hadoop environmentSiddharth Chaudhary
 
Car’s Aerodynamic Characteristics at High Speed Influenced by Rear Spoiler
Car’s Aerodynamic Characteristics at High Speed Influenced by Rear SpoilerCar’s Aerodynamic Characteristics at High Speed Influenced by Rear Spoiler
Car’s Aerodynamic Characteristics at High Speed Influenced by Rear SpoilerIJRES Journal
 
Regression Analysis on Flights data
Regression Analysis on Flights dataRegression Analysis on Flights data
Regression Analysis on Flights dataMansi Verma
 
MRP, MPS, Bill of Material, Numericals
MRP, MPS, Bill of Material, NumericalsMRP, MPS, Bill of Material, Numericals
MRP, MPS, Bill of Material, NumericalsSana Fatima
 
Statistics 141 homework 6 complete solutions correct answers key
Statistics 141 homework 6 complete solutions correct answers keyStatistics 141 homework 6 complete solutions correct answers key
Statistics 141 homework 6 complete solutions correct answers keySong Love
 

Similar to Exercise Problems for Chapter 5Numerical example on page 203Pe.docx (20)

Defect Analysis & Prevention, Data Mining & Visualization of Defect Matrix
Defect Analysis & Prevention, Data Mining & Visualization of Defect MatrixDefect Analysis & Prevention, Data Mining & Visualization of Defect Matrix
Defect Analysis & Prevention, Data Mining & Visualization of Defect Matrix
 
The production department of Celltronics International wants to ex.docx
The production department of Celltronics International wants to ex.docxThe production department of Celltronics International wants to ex.docx
The production department of Celltronics International wants to ex.docx
 
Projects Portfolio
Projects PortfolioProjects Portfolio
Projects Portfolio
 
Airline Delays  Your task is to create an application that.docx
Airline Delays  Your task is to create an application that.docxAirline Delays  Your task is to create an application that.docx
Airline Delays  Your task is to create an application that.docx
 
ECO 605 Module Four Case Study Guidelines and RubricOverv.docx
ECO 605 Module Four Case Study Guidelines and RubricOverv.docxECO 605 Module Four Case Study Guidelines and RubricOverv.docx
ECO 605 Module Four Case Study Guidelines and RubricOverv.docx
 
Data Visualization With R: Introduction
Data Visualization With R: IntroductionData Visualization With R: Introduction
Data Visualization With R: Introduction
 
Cover PageComplete and copy the following to Word for your cover p.docx
Cover PageComplete and copy the following to Word for your cover p.docxCover PageComplete and copy the following to Word for your cover p.docx
Cover PageComplete and copy the following to Word for your cover p.docx
 
References1. HCS 2010 online manuals.2. Data Data provi.docx
References1. HCS 2010 online manuals.2. Data  Data provi.docxReferences1. HCS 2010 online manuals.2. Data  Data provi.docx
References1. HCS 2010 online manuals.2. Data Data provi.docx
 
Traffic_Deaths
Traffic_DeathsTraffic_Deaths
Traffic_Deaths
 
Computer Science Programming Assignment Help
Computer Science Programming Assignment HelpComputer Science Programming Assignment Help
Computer Science Programming Assignment Help
 
Practical Data Science : Data Cleaning and Summarising
Practical Data Science : Data Cleaning and SummarisingPractical Data Science : Data Cleaning and Summarising
Practical Data Science : Data Cleaning and Summarising
 
Data Visualization With R
Data Visualization With RData Visualization With R
Data Visualization With R
 
Chapter 16
Chapter 16Chapter 16
Chapter 16
 
Project on nypd accident analysis using hadoop environment
Project on nypd accident analysis using hadoop environmentProject on nypd accident analysis using hadoop environment
Project on nypd accident analysis using hadoop environment
 
Ab ap faq
Ab ap faqAb ap faq
Ab ap faq
 
Car’s Aerodynamic Characteristics at High Speed Influenced by Rear Spoiler
Car’s Aerodynamic Characteristics at High Speed Influenced by Rear SpoilerCar’s Aerodynamic Characteristics at High Speed Influenced by Rear Spoiler
Car’s Aerodynamic Characteristics at High Speed Influenced by Rear Spoiler
 
Environmental Engineering Assignment Help
Environmental Engineering Assignment HelpEnvironmental Engineering Assignment Help
Environmental Engineering Assignment Help
 
Regression Analysis on Flights data
Regression Analysis on Flights dataRegression Analysis on Flights data
Regression Analysis on Flights data
 
MRP, MPS, Bill of Material, Numericals
MRP, MPS, Bill of Material, NumericalsMRP, MPS, Bill of Material, Numericals
MRP, MPS, Bill of Material, Numericals
 
Statistics 141 homework 6 complete solutions correct answers key
Statistics 141 homework 6 complete solutions correct answers keyStatistics 141 homework 6 complete solutions correct answers key
Statistics 141 homework 6 complete solutions correct answers key
 

More from gitagrimston

External Factor Analysis Summary (EFAS Table)External Factors.docx
External Factor Analysis Summary (EFAS Table)External Factors.docxExternal Factor Analysis Summary (EFAS Table)External Factors.docx
External Factor Analysis Summary (EFAS Table)External Factors.docxgitagrimston
 
Exploring Online Consumer Behaviors.docx
Exploring Online Consumer Behaviors.docxExploring Online Consumer Behaviors.docx
Exploring Online Consumer Behaviors.docxgitagrimston
 
External and Internal Analysis 8Extern.docx
External and Internal Analysis 8Extern.docxExternal and Internal Analysis 8Extern.docx
External and Internal Analysis 8Extern.docxgitagrimston
 
Exploring Music Concert Paper Guidelines Instructions.docx
Exploring Music  Concert Paper Guidelines Instructions.docxExploring Music  Concert Paper Guidelines Instructions.docx
Exploring Music Concert Paper Guidelines Instructions.docxgitagrimston
 
Expo 12 Discussion QuestionsThink about the cooperative learni.docx
Expo 12 Discussion QuestionsThink about the cooperative learni.docxExpo 12 Discussion QuestionsThink about the cooperative learni.docx
Expo 12 Discussion QuestionsThink about the cooperative learni.docxgitagrimston
 
ExplanationMaster Honey is a franchise-style company that sel.docx
ExplanationMaster Honey is a franchise-style company that sel.docxExplanationMaster Honey is a franchise-style company that sel.docx
ExplanationMaster Honey is a franchise-style company that sel.docxgitagrimston
 
Explain where industry profits are maximized in the figure below.docx
Explain where industry profits are maximized in the figure below.docxExplain where industry profits are maximized in the figure below.docx
Explain where industry profits are maximized in the figure below.docxgitagrimston
 
Exploratory EssayResearch - 1The ability to Wallow in complex.docx
Exploratory EssayResearch - 1The ability to Wallow in complex.docxExploratory EssayResearch - 1The ability to Wallow in complex.docx
Exploratory EssayResearch - 1The ability to Wallow in complex.docxgitagrimston
 
Exploring MusicExtra Credit #2 Due November 6 in classIn G.docx
Exploring MusicExtra Credit #2 Due November 6 in classIn G.docxExploring MusicExtra Credit #2 Due November 6 in classIn G.docx
Exploring MusicExtra Credit #2 Due November 6 in classIn G.docxgitagrimston
 
Explain why Franz Boas did not accept Morgan’s view about evol.docx
Explain why Franz Boas did not accept Morgan’s view about evol.docxExplain why Franz Boas did not accept Morgan’s view about evol.docx
Explain why Franz Boas did not accept Morgan’s view about evol.docxgitagrimston
 
Explanations 6.1 Qualities of Explanations Questions 0 of 3 com.docx
Explanations  6.1 Qualities of Explanations Questions 0 of 3 com.docxExplanations  6.1 Qualities of Explanations Questions 0 of 3 com.docx
Explanations 6.1 Qualities of Explanations Questions 0 of 3 com.docxgitagrimston
 
Experts PresentationStudentPSY 496Instructor.docx
Experts PresentationStudentPSY 496Instructor.docxExperts PresentationStudentPSY 496Instructor.docx
Experts PresentationStudentPSY 496Instructor.docxgitagrimston
 
Explain whether Okonkwo was remaining truthful to himself by killi.docx
Explain whether Okonkwo was remaining truthful to himself by killi.docxExplain whether Okonkwo was remaining truthful to himself by killi.docx
Explain whether Okonkwo was remaining truthful to himself by killi.docxgitagrimston
 
Explain How these Aspects Work Together to Perform the Primary Fun.docx
Explain How these Aspects Work Together to Perform the Primary Fun.docxExplain How these Aspects Work Together to Perform the Primary Fun.docx
Explain How these Aspects Work Together to Perform the Primary Fun.docxgitagrimston
 
Explain the 3 elements of every negotiation. Why is WinWin used m.docx
Explain the 3 elements of every negotiation. Why is WinWin used m.docxExplain the 3 elements of every negotiation. Why is WinWin used m.docx
Explain the 3 elements of every negotiation. Why is WinWin used m.docxgitagrimston
 
Explain how the Kluckhohn–Strodtbeck and the Hofstede framework ca.docx
Explain how the Kluckhohn–Strodtbeck and the Hofstede framework ca.docxExplain how the Kluckhohn–Strodtbeck and the Hofstede framework ca.docx
Explain how the Kluckhohn–Strodtbeck and the Hofstede framework ca.docxgitagrimston
 
Exploration 8 – Shifting and Stretching Rational Functions .docx
Exploration 8 – Shifting and Stretching Rational Functions .docxExploration 8 – Shifting and Stretching Rational Functions .docx
Exploration 8 – Shifting and Stretching Rational Functions .docxgitagrimston
 
Exploring Innovation in Action Power to the People – Lifeline Ene.docx
Exploring Innovation in Action Power to the People – Lifeline Ene.docxExploring Innovation in Action Power to the People – Lifeline Ene.docx
Exploring Innovation in Action Power to the People – Lifeline Ene.docxgitagrimston
 
Experiment 8 - Resistance and Ohm’s Law 8.1 Introduction .docx
Experiment 8 - Resistance and Ohm’s Law 8.1 Introduction .docxExperiment 8 - Resistance and Ohm’s Law 8.1 Introduction .docx
Experiment 8 - Resistance and Ohm’s Law 8.1 Introduction .docxgitagrimston
 
Experimental Essay The DialecticThe purpose of this paper is to.docx
Experimental Essay The DialecticThe purpose of this paper is to.docxExperimental Essay The DialecticThe purpose of this paper is to.docx
Experimental Essay The DialecticThe purpose of this paper is to.docxgitagrimston
 

More from gitagrimston (20)

External Factor Analysis Summary (EFAS Table)External Factors.docx
External Factor Analysis Summary (EFAS Table)External Factors.docxExternal Factor Analysis Summary (EFAS Table)External Factors.docx
External Factor Analysis Summary (EFAS Table)External Factors.docx
 
Exploring Online Consumer Behaviors.docx
Exploring Online Consumer Behaviors.docxExploring Online Consumer Behaviors.docx
Exploring Online Consumer Behaviors.docx
 
External and Internal Analysis 8Extern.docx
External and Internal Analysis 8Extern.docxExternal and Internal Analysis 8Extern.docx
External and Internal Analysis 8Extern.docx
 
Exploring Music Concert Paper Guidelines Instructions.docx
Exploring Music  Concert Paper Guidelines Instructions.docxExploring Music  Concert Paper Guidelines Instructions.docx
Exploring Music Concert Paper Guidelines Instructions.docx
 
Expo 12 Discussion QuestionsThink about the cooperative learni.docx
Expo 12 Discussion QuestionsThink about the cooperative learni.docxExpo 12 Discussion QuestionsThink about the cooperative learni.docx
Expo 12 Discussion QuestionsThink about the cooperative learni.docx
 
ExplanationMaster Honey is a franchise-style company that sel.docx
ExplanationMaster Honey is a franchise-style company that sel.docxExplanationMaster Honey is a franchise-style company that sel.docx
ExplanationMaster Honey is a franchise-style company that sel.docx
 
Explain where industry profits are maximized in the figure below.docx
Explain where industry profits are maximized in the figure below.docxExplain where industry profits are maximized in the figure below.docx
Explain where industry profits are maximized in the figure below.docx
 
Exploratory EssayResearch - 1The ability to Wallow in complex.docx
Exploratory EssayResearch - 1The ability to Wallow in complex.docxExploratory EssayResearch - 1The ability to Wallow in complex.docx
Exploratory EssayResearch - 1The ability to Wallow in complex.docx
 
Exploring MusicExtra Credit #2 Due November 6 in classIn G.docx
Exploring MusicExtra Credit #2 Due November 6 in classIn G.docxExploring MusicExtra Credit #2 Due November 6 in classIn G.docx
Exploring MusicExtra Credit #2 Due November 6 in classIn G.docx
 
Explain why Franz Boas did not accept Morgan’s view about evol.docx
Explain why Franz Boas did not accept Morgan’s view about evol.docxExplain why Franz Boas did not accept Morgan’s view about evol.docx
Explain why Franz Boas did not accept Morgan’s view about evol.docx
 
Explanations 6.1 Qualities of Explanations Questions 0 of 3 com.docx
Explanations  6.1 Qualities of Explanations Questions 0 of 3 com.docxExplanations  6.1 Qualities of Explanations Questions 0 of 3 com.docx
Explanations 6.1 Qualities of Explanations Questions 0 of 3 com.docx
 
Experts PresentationStudentPSY 496Instructor.docx
Experts PresentationStudentPSY 496Instructor.docxExperts PresentationStudentPSY 496Instructor.docx
Experts PresentationStudentPSY 496Instructor.docx
 
Explain whether Okonkwo was remaining truthful to himself by killi.docx
Explain whether Okonkwo was remaining truthful to himself by killi.docxExplain whether Okonkwo was remaining truthful to himself by killi.docx
Explain whether Okonkwo was remaining truthful to himself by killi.docx
 
Explain How these Aspects Work Together to Perform the Primary Fun.docx
Explain How these Aspects Work Together to Perform the Primary Fun.docxExplain How these Aspects Work Together to Perform the Primary Fun.docx
Explain How these Aspects Work Together to Perform the Primary Fun.docx
 
Explain the 3 elements of every negotiation. Why is WinWin used m.docx
Explain the 3 elements of every negotiation. Why is WinWin used m.docxExplain the 3 elements of every negotiation. Why is WinWin used m.docx
Explain the 3 elements of every negotiation. Why is WinWin used m.docx
 
Explain how the Kluckhohn–Strodtbeck and the Hofstede framework ca.docx
Explain how the Kluckhohn–Strodtbeck and the Hofstede framework ca.docxExplain how the Kluckhohn–Strodtbeck and the Hofstede framework ca.docx
Explain how the Kluckhohn–Strodtbeck and the Hofstede framework ca.docx
 
Exploration 8 – Shifting and Stretching Rational Functions .docx
Exploration 8 – Shifting and Stretching Rational Functions .docxExploration 8 – Shifting and Stretching Rational Functions .docx
Exploration 8 – Shifting and Stretching Rational Functions .docx
 
Exploring Innovation in Action Power to the People – Lifeline Ene.docx
Exploring Innovation in Action Power to the People – Lifeline Ene.docxExploring Innovation in Action Power to the People – Lifeline Ene.docx
Exploring Innovation in Action Power to the People – Lifeline Ene.docx
 
Experiment 8 - Resistance and Ohm’s Law 8.1 Introduction .docx
Experiment 8 - Resistance and Ohm’s Law 8.1 Introduction .docxExperiment 8 - Resistance and Ohm’s Law 8.1 Introduction .docx
Experiment 8 - Resistance and Ohm’s Law 8.1 Introduction .docx
 
Experimental Essay The DialecticThe purpose of this paper is to.docx
Experimental Essay The DialecticThe purpose of this paper is to.docxExperimental Essay The DialecticThe purpose of this paper is to.docx
Experimental Essay The DialecticThe purpose of this paper is to.docx
 

Recently uploaded

Micromeritics - Fundamental and Derived Properties of Powders
Micromeritics - Fundamental and Derived Properties of PowdersMicromeritics - Fundamental and Derived Properties of Powders
Micromeritics - Fundamental and Derived Properties of PowdersChitralekhaTherkar
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxmanuelaromero2013
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxRoyAbrique
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppCeline George
 
MENTAL STATUS EXAMINATION format.docx
MENTAL     STATUS EXAMINATION format.docxMENTAL     STATUS EXAMINATION format.docx
MENTAL STATUS EXAMINATION format.docxPoojaSen20
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docxPoojaSen20
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdfssuser54595a
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 

Recently uploaded (20)

Micromeritics - Fundamental and Derived Properties of Powders
Micromeritics - Fundamental and Derived Properties of PowdersMicromeritics - Fundamental and Derived Properties of Powders
Micromeritics - Fundamental and Derived Properties of Powders
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptx
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website App
 
MENTAL STATUS EXAMINATION format.docx
MENTAL     STATUS EXAMINATION format.docxMENTAL     STATUS EXAMINATION format.docx
MENTAL STATUS EXAMINATION format.docx
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docx
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Staff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSDStaff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSD
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 

Exercise Problems for Chapter 5Numerical example on page 203Pe.docx

  • 1. Exercise Problems for Chapter 5 Numerical example on page 203 Period 1 2 3 4 5 6 7 8 9 10 11 12 Month Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec Demand 10 62 12 130 154
  • 2. 129 88 52 124 160 238 41 A = $54r = $0.02/monthv = $20/box Decide on replenishment time and quantities for the above problem using the solution approaches listed below and calculate carrying and setup costs, as well as total cost for each approach. a) 3-months’ demand replenishment b) Fixed EOQ c) Wagner-Whitin algorithm d) Silver-Meal algorithm e) Periodic order quantity f) Lot-for-lot g) Least unit cost h) Part-period balancing Toy Problem Period 1 2 3 4 Demand 100 75 175 200 A = $50v = $5r = $0.01/month Decide on replenishment time and quantities for the above problem using the solution approaches listed below and calculate carrying and setup costs, as well as total cost for each
  • 3. approach. a) 3-months’ demand replenishment b) Fixed EOQ c) Wagner-Whitin algorithm d) Silver-Meal algorithm e) Periodic order quantity f) Lot-for-lot g) Least unit cost h) Part-period balancing Problem 5.2 The demand pattern for a type of filter is given below. These filters cost the company $4.75 each; ordering and carrying costs are $35 and $0.24/yr, respectively. Use the Silver-Meal heuristic to determine the sizes and timing of replenishment of stock. Jan Feb Mar Apr May Jun July Aug Sep Oct Nov Dec 18 31 23 95 29 37 50 39 30
  • 4. 88 22 36 Problem 5.10 Consider a company facing a demand pattern provided below. Each item costs $4.00. Ordering cost is $25 per order and carrying inventory costs the company $0.05/month. Using a 3- month decision rule total replenishment cost of the company is $256. Jan Feb Mar Apr May Jun July Aug Sep Oct Nov Dec 20 40 110 120 60 30 20 30 80 120 130 40 a) Construct a replenishment schedule and calculate the associated costs using the fixed EOQ method. b) Repeat using Wagner-Whitin algorithm
  • 5. c) Repeat using Silver-Meal heuristic d) Repeat using LUC. e) Repeat using PPB. f) Repeat using POQ. CSC-317-03 – Final Assignment You are to develop a website that can receive input from a vehicle via query URLs that will record the input into a database and use that data to map its relative position. This is an INDIVIDUAL assignment. Data Acquisition: The following relative URL’s (or routes) are used by the vehicle to provide data to the website: /register?name=XXXX&width=###.### Adds a new vehicle run to the system, should return a cookie called USER=[name] that would be included for the other commands. Width is the width of the vehicle in cm. It should overwrite any other “active” session for that named vehicle /wheels?left=###.###&right=###.### Rescords the speed of the left and right wheel in cm/sec for that vehicle in the current session /echo?dist=###.### Records the result of the echo sensor in cm for the vehicle in the current session
  • 6. /line?l1=##&l2=##&l3=## Records the result of ONE or MORE l1, l2, l3, etc. Line sensors on/off cm for the vehicle in the current session /other?[variable key:value pairs] Records and other data sent in key:value pairs to be recorded for the vehicle in the current session /end End the current session for the vehicle All of the above will also have a “time=#####” parameter for relative time calculations. Time will be in milliseconds. All records should also be timestamped with the server’s date and time. User Interface: /active Shows a list of the active vehicle sessions and links to /map to map their position and to /datareview to show the data received to date. /review Shows a list of all sessions (active and complete) that can be filtered by vehicle name, and by time frame (i.e started before/after certain time). This list should link to /datareview and /map CSC-317-03 – Final Assignment
  • 7. /datareview Shows all the data sent to the server in chronological order. The data can be filtered to show only specific data fields (based on the data fields), like show only left and right wheel data or show l1 echo and right wheel, etc. /map Displays a graphical representation of the relative position of the vehicle and its route. It can be assumed that the vehicle travels within a 1000 x 1000 cm grid. Calculation of position is based on the data from the wheels which has been recorded in cm/sec. Equal values applied to both wheels indicate straight movement. Unequal values indicates a change in direction. Slower right wheel would indicate a turn right, slower left wheel indicates a turn left. To calculate the “dot” (position) multiply the average wheel speed (between the last wheel data and the current wheel data) by the delta of time (use millisecond times) from the last wheel data. That gives you how far each wheel moved. Calling these LAL (left arc length) and RAL (right arc length), we first need to handle special cases: 1) LAL and RAL are equal – meaning the car went straight (use an error delta, such as a 1/10 of a mm to allow for data fluctuation). 2) LAL = (or is near) 0, while RAL is some significant (> error ) value, Vehicle making a sharp
  • 8. left turn (pivoting on left wheel). 3) RAL = (or is near) 0, while LAL is some significant (> error ) value, Vehicle making a sharp right turn (pivoting on right wheel). 4) RAL and LAL are (or near) 0 – Vehicle is stopped The final cases are where both LAL and RAL are significant values but not equal. If LAL is > RAL then the formulas below should be used to calculate the radius of the circle that contains the RAL arc and the angle in degrees that the arc represent of that circle. ��� = � 360 2�(� + �)������ = � 360 2�� � = ��� ∗ 360 2�� ���� = �
  • 9. 5������ − 18 If RAL is > LAL, invert the two values (RAL and LAL) in the above equations. From these values you should then be able to calculate the delta-x and delta-y to determine the new position. CSC-317-03 – Final Assignment Assignment: Your assignment for this final project (this is your final) is to develop the above website and use the supplied script which will feed data into your site. You will then navigate to the /active url (and take screen shots of each screen) show the active sessions. Click the link to bring you to the datareview for that session. Take screen shots of the screen with all data showing, then filter on just the dist values, then on the wheel values Navigate to the /review url (and take screen shots of each screen) and show all sessions, then filter on name showing just the sessions for a particular vehicle name, then further filter by date.
  • 10. Finally show the /map url for at least one of the sessions. Preferably two, one complete session and one active session. If you are animating the display of the map you can record that as an MP4 file to include with your submission. The Submission should include a writeup of what you did, the tools used, and reference material used, the screen shots and any other relevant information. Please Include a title page that has your name and student ID number on it. Also submit all your source files. Rubric: Component Points Data collection 15 Database storage 10 Session display with filtering (active and complete) 15 Data Review with filtering 15 Map 15 Animated Map +10 Screen shots / MP4 10 Writeup 10 Source File submission 10 CSC-317-03 – Final Assignment Mapping Help
  • 11. This diagram is to help you with the mapping of the vehicle. In the diagram, the Green dot indicates the actual plot position for the vehicle. This shows a vehicle bearing right. w is the width of the vehicle (passed in on register). We start with the car at 0,0 and the left wheel would be at - 1/2w,0 and the right wheel at 1/2w,0. (You need to keep track of the left and right wheel position throughout the plotting of the vehicle). You calculate the LAL and RAL by taking the average speed of the prior point and current point multiplied by the time interval between the points. Then use the formulas above in the document to calculate r and theta. Then drop a perpendicular line which will be the change in y (delta y) - Δ� = �sin�. The line segment ri is calculated by �! = �cos�and thus the delta x is just Δ� = � −�!. Repeat these calculations for the Left wheel by replacing r with r+w. Inventory and Production Management in Supply Chains
  • 12. Fourth Edition Inventory and Production Management in Supply Chains Fourth Edition Edward A. Silver University of Calgary (retired), Alberta, Canada David F. Pyke University of San Diego, California, USA Douglas J. Thomas Penn State University, Pennsylvania, USA CRC Press Taylor & Francis Group Boca Raton London New York CRC Press is an imprint of the Taylor & Francis Croup, an informa business CRC Press Taylor & Francis Group 6000 Broken Sound Parkway NW, Suite 300
  • 13. Boca Raton, FL 33487-2742 © 2017 by Taylor & Francis Group, L L C CRC Press is an imprint of Taylor & Francis Group, an Informa business No claim to original U.S. Government works Printed on acid-free paper Version Date: 20160830 International Standard Book Number-13:978-1-4665-5861-8 (Hardback) This book contains information obtained from authentic and highly regarded sources. Reasonable efforts have been made to publish reliable data and information, but the author and publisher cannot assume responsibility for the validity of all materials or the consequences of their use. The authors and publishers have attempted to trace the copyright holders of all material repro- duced in this publication and apologize to copyright holders if permission to publish in this form has not been obtained. If any copyright material has not been acknowledged please write and let us know so we may rectify in any future reprint. Except as permitted under U.S. Copyright Law, no part of this book may be reprinted, reproduced, transmitted, or utilized in any form by any electronic, mechanical, or other means, now known or hereafter invented, including photocopying, microfilming, and recording, or in any information storage or retrieval system, without written permission from the publishers. For permission to photocopy or use material electronically from
  • 14. this work, please access www.copyright.com (http://www.copy- right.com/) or contact the Copyright Clearance Center, Inc. (CCC), 222 Rosewood Drive, Danvers, M A 01923, 978-750- 8400. C C C is a not-for-profit organization that provides licenses and registration for a variety of users. For organizations that have been granted a photocopy license by the C C C , a separate system of payment has been arranged. Trademark Notice: Product or corporate names may be trademarks or registered trademarks, and are used only for identifica- tion and explanation without intent to infringe. Library of Congress Cataloging-in-Publication Data Names: Silver, Edward A . (Edward Allen), 1937- author. | Pyke, D. F. (David F.) author. | Silver, Edward A . (Edward Allen), 1937- Decision systems for inventory management and production and planning. | Silver, Edward A . (Edward Allen), 1937- Inventory management and production planning and scheduling. Title: Inventory and production management in supply chains / Edward A . Silver, David F. Pyke, Douglas J. Thomas. Description: Fourth Edition. | Boca Raton : Taylor & Francis, 2017. | Revised edition of Inventory management and production planning and scheduling. | Includes index. Identifiers: L C C N 2016022678 | ISBN 9781466558618 (hardback : alk. paper) Subjects: L C S H : Inventory control—Decision making. |
  • 15. Production planning—Decision making. Classification: L C C HD40 .S55 2017 | D D C 658.7/87-dc23 L C record available at https://lccn.loc.gov/2016022678 Visit the Taylor & Francis Web site at http://www.taylorandfrancis.com and the CRC Press Web site at http://www.crcpress.com Edward A. Silver dedicates this work to Maxine, Michelle, Norman, and Heidi David F. Pyke dedicates this work to Susan, James, Daniel, and Cory Ad majorem Dei gloriam Douglas J. Thomas dedicates this work to Traci, Alison, Kate, and Maya Contents Preface ............................................................................................... .............. xix Acknowledgments ......................................................................................... ....x xiii Authors ...............................................................................................
  • 16. .............xxv SECTION I THE CONTEXT AND IMPORTANCE OF INVENTORY MANAGEMENT AND PRODUCTION PLANNING 1 The Importance of Inventory Management and Production Planning and Scheduling ............................................................................................... 3 1.1 Why Aggregate Inventory Investment Fluctuates: The Business Cycle ................. 7 1.2 Corporate Strategy and the Role of Top Management ..................................... 8 1.3 The Relationship of Finance and Marketing to Inventory Management and Production Planning and Scheduling .........................................................10 1.3.1 Finance................................................................................... .10 1.3.2 Marketing ................................................................................11 1.4 Operations Strategy...............................................................................12 1.4.1 Mission ...................................................................................13 1.4.2 Objectives ................................................................................13 1.4.3 Management Levers ....................................................................15 1.4.4 General Comments.....................................................................16
  • 17. 1.5 Measures of Effectiveness for Inventory Management and Production Planning and Scheduling Decisions ...........................................................17 1.6 Summary ...........................................................................................18 Problems ............................................................................................... .....18 References.............................................................................. .....................20 2 Frameworks for Inventory Management and Production Planning and Scheduling .............................................................................................. 23 2.1 The Diversity of Stock-Keeping Units ........................................................23 2.2 The Bounded Rationality of a Human Being ...............................................24 2.3 Decision Aids for Managing Diverse Individual Items ....................................25 2.3.1 Conceptual Aids ........................................................................25 2.3.2 Physical Aids .............................................................................25 2.4 Frameworks for Inventory Management .....................................................26 2.4.1 Functional Classifications of Inventories ...........................................26 2.4.2 The A–B–C Classification as a Basis for Designing
  • 18. Individual Item Decision Models ........................................................................28 vii viii � Contents 2.5 A Framework for Production Planning and Scheduling ..................................31 2.5.1 A Key Marketing Concept: The Product Life Cycle .............................31 2.5.2 Different Types of Production Processes ...........................................33 2.5.3 The Product-Process Matrix ..........................................................37 2.6 Costs and Other Important Factors ...........................................................40 2.6.1 Cost Factors..............................................................................40 2.6.2 Other Key Variables ....................................................................44 2.7 Three Types of Modeling Strategies ...........................................................46 2.7.1 Detailed Modeling and Analytic Selection of the Values of a Limited Number of Decision Variables .......................................................47 2.7.2 Broader-Scope Modeling with Less Optimization ...............................47
  • 19. 2.7.3 Minimization of Inventories with Little Modeling...............................47 2.8 The Art of Modeling .............................................................................47 2.9 Explicit Measurement of Costs .................................................................49 2.10 Implicit Cost Measurement and Exchange Curves .........................................52 2.11 The Phases of a Major Study of an Inventory Management or Production Planning and Scheduling System ..............................................................53 2.11.1 Consideration ...........................................................................54 2.11.2 Analysis ...................................................................................55 2.11.3 Synthesis ..................................................................................57 2.11.4 Choosing among Alternatives ........................................................57 2.11.5 Control ...................................................................................58 2.11.6 Evaluation ................................................................................58 2.11.7 General Comments.....................................................................58 2.11.8 Transient Effects ........................................................................59 2.11.9 Physical Stock Counts .................................................................59 2.12 Summary ...........................................................................................61 Problems
  • 20. ............................................................................................... .....61 Appendix 2A: The Lognormal Distribution .........................................................68 References.............................................................................. .....................70 3 Forecasting Models and Techniques ..............................................................73 3.1 The Components of Time-Series Analysis ...................................................75 3.2 The Three Steps Involved in Statistically Forecasting a Time Series ....................77 3.3 Some Aggregate Medium-Range Forecasting Methods....................................78 3.3.1 Regression Procedures .................................................................79 3.4 Individual-Item, Short-Term Forecasting: Models and Procedures .....................81 3.4.1 The Simple Moving Average .........................................................82 3.4.2 Simple Exponential Smoothing ......................................................84 3.4.3 Exponential Smoothing for a Trend Model .......................................88 3.4.4 Winters Exponential Smoothing Procedure for a Seasonal Model ............92 3.4.5 Selection of Smoothing Constants ................................................ 101 3.5 Measuring the Performance of a Forecasting Process .................................... 104 3.5.1 Measures of Forecast Accuracy ..................................................... 105
  • 21. 3.5.2 Estimating the Standard Deviation of Forecast Errors over a Lead Time ..................................................................... 109 3.5.3 Monitoring Bias....................................................................... 111 Contents � ix 3.5.4 Corrective Actions in Statistical Forecasting..................................... 115 3.5.5 Probability Distributions of Forecast Errors ..................................... 117 3.6 Handling Anomalous Demand .............................................................. 117 3.7 Incorporation of Human Judgment ......................................................... 118 3.7.1 Factors Where Judgment Input Is Needed....................................... 118 3.7.2 Guidelines for the Input and Monitoring of Judgment ....................... 119 3.8 Dealing with Special Classes of Individual Items ......................................... 120 3.8.1 Items with Limited History......................................................... 120 3.8.2 Intermittent and Erratic Demand ................................................. 122 3.8.3 Replacement or Service Parts ....................................................... 123 3.8.4 Terminal Demand .................................................................... 124
  • 22. 3.9 Assessing Forecasting Procedures: Tactics and Strategy.................................. 125 3.9.1 Statistical Accuracy of Forecasts.................................................... 125 3.9.2 Some Issues of a More Strategic Nature .......................................... 126 Problems ............................................................................................... ... 128 Appendix 3A: Derivations ............................................................................. 135 References.............................................................................. ................... 137 SECTION II REPLENISHMENT SYSTEMS FOR MANAGING INDIVIDUAL ITEM INVENTORIES WITHIN A FIRM 4 Order Quantities When Demand Is Approximately Level ................................. 145 4.1 Assumptions Leading to the Basic EOQ ................................................... 146 4.2 Derivation of the EOQ ........................................................................ 147 4.2.1 Numerical Illustration ............................................................... 151 4.3 Sensitivity Analysis.............................................................................. 152 4.4 Implementation Aids ........................................................................... 154 4.4.1 Numerical Illustration ............................................................... 155
  • 23. 4.5 Quantity Discounts ............................................................................ 155 4.5.1 Numerical Illustrations .............................................................. 158 4.5.2 Item A (An Illustration of Case a of Figure 4.5) ................................ 159 4.5.3 Item B (An Illustration of Case b of Figure 4.5)................................ 159 4.5.4 Item C (An Illustration of Case c of Figure 4.5)................................ 160 4.6 Accounting for inflation ....................................................................... 160 4.6.1 Price Established Independent of Ordering Policy ............................. 161 4.6.2 Price Set as a Fixed Fractional Markup on Unit Variable Cost .......................................................................... 163 4.7 Limits on order sizes............................................................................ 164 4.7.1 Maximum Time Supply or Capacity Restriction ............................... 164 4.7.2 Minimum Order Quantity ......................................................... 165 4.7.3 Discrete Units ......................................................................... 165 4.8 Finite Replenishment Rate: The Economic Production Quantity .................... 166 4.9 Incorporation of Other Factors .............................................................. 168 4.9.1 Nonzero Constant Lead Time That Is Known with
  • 24. Certainty ............................................................................... 168 4.9.2 Nonzero Payment Period............................................................ 169 4.9.3 Different Types of Carrying Charge .............................................. 169 x � Contents 4.9.4 Multiple Setup Costs: Freight Discounts ........................................ 170 4.9.5 A Special Opportunity to Procure ................................................. 172 4.10 Selection of the Carrying Charge (r), the Fixed Cost per Replenishment (A), or the Ratio A/r Based on Aggregate Considerations: The Exchange Curve ....... 176 4.10.1 Exchange Curve Illustration ........................................................ 177 4.11 Summary ......................................................................................... 179 Problems ............................................................................................... ... 179 Appendix 4A: Derivations ............................................................................. 187 References.............................................................................. ................... 193 5 Lot Sizing for Individual Items with Time-Varying Demand
  • 25. ............................. 199 5.1 The Complexity of Time-Varying Demand ............................................... 200 5.2 The Choice of Approaches .................................................................... 201 5.3 General Assumptions and a Numerical Example ......................................... 202 5.3.1 The Assumptions ..................................................................... 202 5.3.2 A Numerical Example ............................................................... 203 5.4 Use of a Fixed EOQ ............................................................................ 204 5.5 The Wagner-Whitin Method: An “Optimal” Solution under an Additional Assumption ...................................................................................... 205 5.5.1 The Algorithm ........................................................................ 206 5.5.2 Potential Drawbacks of the Algorithm ........................................... 209 5.6 Heuristic Approaches for a Significantly Variable Demand
  • 26. Pattern .................. 212 5.6.1 The Silver–Meal, or Least Period Cost, Heuristic .............................. 212 5.6.2 The EOQ Expressed as a Time Supply (POQ)................................. 216 5.6.3 Lot-for-Lot ............................................................................. 216 5.6.4 Least Unit Cost ....................................................................... 216 5.6.5 Part-Period Balancing ................................................................ 216 5.6.6 Performance of the Heuristics ...................................................... 218 5.6.7 When to Use Heuristics ............................................................. 219 5.6.8 Sensitivity to Errors in Parameters ................................................ 220 5.6.9 Reducing System Nervousness ..................................................... 221 5.7 Handling of Quantity Discounts ............................................................ 221 5.8 Aggregate Exchange Curves ................................................................... 223 5.9 Summary
  • 27. ......................................................................................... 223 Problems ............................................................................................... ... 223 Appendix 5A: Dynamic Programming and Linear Programming Formulations ........... 232 References.............................................................................. ................... 233 6 Individual Items with Probabilistic Demand ................................................. 237 6.1 Some Important Issues and Terminology .................................................. 238 6.1.1 Different Definitions of Stock Level .............................................. 238 6.1.2 Backorders versus Lost Sales ........................................................ 239 6.1.3 Three Key Issues to Be Resolved by a Control System under Probabilistic Demand ................................................................ 239 6.2 The Importance of the Item: A, B, and C
  • 28. Classification................................ 240 6.3 Continuous versus Periodic Review ......................................................... 240 6.4 The Form of the Inventory Policy: Four Types of Control Systems .................. 241 Contents � xi 6.4.1 Order-Point, Order-Quantity (s, Q) System .................................... 242 6.4.2 Order-Point, Order-Up-to-Level (s, S) System ................................. 242 6.4.3 Periodic-Review, Order-Up-to-Level (R, S) System............................ 243 6.4.4 (R, s, S) System ........................................................................ 244 6.5 Specific Cost and Service Objectives ........................................................ 245 6.5.1 Choosing the Best Approach ....................................................... 246 6.5.2 SSs Established through the Use of a Simple-Minded
  • 29. Approach ............................................................................... 246 6.5.3 SSs Based on Minimizing Cost .................................................... 248 6.5.4 SSs Based on Customer Service .................................................... 248 6.5.5 SSs Based on Aggregate Considerations .......................................... 250 6.6 Two Examples of Finding the Reorder Point s in a Continuous-Review, Order-Point, Order-Quantity (s, Q) System .............................................. 250 6.6.1 Protection over the Replenishment Lead Time ................................. 251 6.6.2 An Example Using a Discrete Distribution...................................... 252 6.7 Decision Rules for Continuous-Review, Order-Point, Order- Quantity (s,Q) Control Systems ................................................................................. 256 6.7.1 Common Assumptions and Notation ............................................ 257 6.7.2 General Approach to Establishing the Value of s
  • 30. ............................... 259 6.7.3 Common Derivation................................................................. 260 6.7.4 Decision Rule for a Specified Safety Factor (k) ................................. 263 6.7.5 Decision Rule for a Specified Cost (B1) per Stockout Occasion................................................................................ 263 6.7.6 Decision Rule for a Specified Fractional Charge (B2) per Unit Short ...... 266 6.7.7 Decision Rule for a Specified Fractional Charge (B3) per Unit Short per Unit Time ......................................................................... 268 6.7.8 Decision Rule for a Specified Charge (B4) per Customer Line Item Short .................................................................................... 269 6.7.9 Decision Rule for a Specified Probability (P1) of No Stockout per Replenishment
  • 31. Cycle................................................................. 269 6.7.10 Decision Rule for a Specified Fraction (P2) of Demand Satisfied Directly from Shelf ................................................................... 271 6.7.11 Decision Rule for a Specified Average Time (TBS) between Stockout Occasions............................................................................... 273 6.7.12 Decision Rule for the Allocation of a TSS to Minimize the ETSOPY..... 274 6.7.13 Decision Rule for the Allocation of a TSS to Minimize the ETVSPY ..... 274 6.7.14 Nonnormal Lead Time Demand Distributions ................................ 275 6.8 Implied Costs and Performance Measures ................................................. 277 6.9 Decision Rules for Periodic-Review, Order-Up-to-Level (R, S) Control Systems................................................................................... ......... 277
  • 32. 6.9.1 The Review Interval (R) ............................................................. 278 6.9.2 The Order-Up-to-Level (S) ......................................................... 278 6.9.3 Common Assumptions and Notation ............................................ 280 6.9.4 Common Derivation................................................................. 280 6.10 Variability in the Replenishment Lead Time Itself ....................................... 282 6.10.1 Approach 1: Use of the Total Demand over the Full Lead Time.............................................................................. 283 xii � Contents 6.10.2 Approach 2: Use of the Distribution of Demand Rate per Unit Time Combined with the Lead Time Distribution ................................... 284
  • 33. 6.10.3 Nonnormal Distributions ........................................................... 285 6.11 Exchange Curves Involving SSs for (s,Q) Systems ....................................... 286 6.11.1 Single Item Exchange Curve: Inventory versus Service........................ 287 6.11.2 An Illustration of the Impact of Moving Away from Setting Reorder Points as Equal Time Supplies ..................................................... 288 6.11.3 Derivation of the SS Exchange Curves ........................................... 290 6.11.4 Composite Exchange Curves ....................................................... 293 6.12 Summary ......................................................................................... 294 Problems ............................................................................................... ... 295 Appendix 6A: Some Illustrative Derivations and Approximations ............................ 304
  • 34. References.............................................................................. ................... 312 SECTION III SPECIAL CLASSES OF ITEMS 7 Managing the Most Important Inventories.................................................... 319 7.1 Nature of Class A Items........................................................................ 319 7.2 Guidelines for Control of A Items........................................................... 320 7.3 Simultaneous Determination of s and Q for Fast-Moving Items ...................... 322 7.3.1 Decision Rules......................................................................... 323 7.3.2 Cost Penalties .......................................................................... 325 7.3.3 Further Comments ................................................................... 325 7.4 Decision Rules for (s, S) Systems ............................................................ 327 7.4.1 Simple Sequential Determination of s and S .................................... 328
  • 35. 7.4.2 Simultaneous Selection of s and S Using the Undershoot Distribution............................................................................ 328 7.4.3 Comparison of the Methods........................................................ 331 7.5 Decision Rules for (R, s, S) Systems ......................................................... 332 7.5.1 Decision Rule for a Specified Fractional Charge (B3) per Unit Short at the End of Each Period........................................ 332 7.5.2 Decision Rule for a Specified Fraction (P2) of Demand Satisfied Directly from Shelf ................................................................... 334 7.6 Coping with Nonstationary Demand....................................................... 337 7.7 Comments on Multiple Sources of Supply and Expediting ........................... 339 7.8 Summary ................................................................................ ......... 341