CHAPTER 5 Modelling and Analysis 2 1. Optimization via Mathematical Programming 2 Linear programming...

37
CHAPTER 5 Modelling and Analysis 2 1

Transcript of CHAPTER 5 Modelling and Analysis 2 1. Optimization via Mathematical Programming 2 Linear programming...

Page 1: CHAPTER 5 Modelling and Analysis 2 1. Optimization via Mathematical Programming 2 Linear programming (LP) Used extensively in DSS Mathematical Programming.

CHAPTER 5

Modelling and Analysis 2

1

Page 2: CHAPTER 5 Modelling and Analysis 2 1. Optimization via Mathematical Programming 2 Linear programming (LP) Used extensively in DSS Mathematical Programming.

Optimization via Mathematical Programming

2

Linear programming (LP)

Used extensively in DSS

Mathematical Programming Family of tools to solve managerial problems in

allocating scarce resources among various activities to optimize a measurable goal

Decision Support Systems and Intelligent Systems, Efraim Turban and Jay E. Aronson, 6th editionCopyright 2001, Prentice Hall, Upper Saddle River, NJ

Page 3: CHAPTER 5 Modelling and Analysis 2 1. Optimization via Mathematical Programming 2 Linear programming (LP) Used extensively in DSS Mathematical Programming.

LP Allocation Problem Characteristics

3

1. Limited quantity of economic resources

2. Resources are used in the production of products or services

3. Two or more ways (solutions, programs) to use the resources

4. Each activity (product or service) yields a return in terms of the goal

5. Allocation is usually restricted by constraints

Decision Support Systems and Intelligent Systems, Efraim Turban and Jay E. Aronson, 6th editionCopyright 2001, Prentice Hall, Upper Saddle River, NJ

Page 4: CHAPTER 5 Modelling and Analysis 2 1. Optimization via Mathematical Programming 2 Linear programming (LP) Used extensively in DSS Mathematical Programming.

LP Allocation Model

4

Rational economic assumptions1. Returns from allocations can be compared in a common unit2. Independent returns3. Total return is the sum of different activities’ returns4. All data are known with certainty5. The resources are to be used in the most economical manner

Optimal solution: the best, found algorithmically

Decision Support Systems and Intelligent Systems, Efraim Turban and Jay E. Aronson, 6th editionCopyright 2001, Prentice Hall, Upper Saddle River, NJ

Page 5: CHAPTER 5 Modelling and Analysis 2 1. Optimization via Mathematical Programming 2 Linear programming (LP) Used extensively in DSS Mathematical Programming.

Linear Programming

5

Decision variables Objective function Objective function coefficients Constraints CapacitiesInput-output (technology) coefficients

Line

Decision Support Systems and Intelligent Systems, Efraim Turban and Jay E. Aronson, 6th editionCopyright 2001, Prentice Hall, Upper Saddle River, NJ

Page 6: CHAPTER 5 Modelling and Analysis 2 1. Optimization via Mathematical Programming 2 Linear programming (LP) Used extensively in DSS Mathematical Programming.

Lindo LP Product-Mix ModelDSS in Focus 5.4

6

<< The Lindo Model: >> MAX 8000 X1 + 12000 X2SUBJECT TO LABOR) 300 X1 + 500 X2 <= 200000 BUDGET) 10000 X1 + 15000 X2 <= 8000000MARKET1) X1 >= 100MARKET2) X2 >= 200END

Decision Support Systems and Intelligent Systems, Efraim Turban and Jay E. Aronson, 6th editionCopyright 2001, Prentice Hall, Upper Saddle River, NJ

Page 7: CHAPTER 5 Modelling and Analysis 2 1. Optimization via Mathematical Programming 2 Linear programming (LP) Used extensively in DSS Mathematical Programming.

7

<< Generated Solution Report >> LP OPTIMUM FOUND AT STEP 3

OBJECTIVE FUNCTION VALUE

1) 5066667.00

VARIABLE VALUE REDUCED COST X1 333.333300 .000000 X2 200.000000 .000000

Page 8: CHAPTER 5 Modelling and Analysis 2 1. Optimization via Mathematical Programming 2 Linear programming (LP) Used extensively in DSS Mathematical Programming.

8

ROW SLACK OR SURPLUS DUAL PRICES

LABOR) .000000 26.666670

BUDGET) 1666667.000000 .000000

MARKET1) 233.333300 .000000

MARKET2) .000000 -1333.333000

NO. ITERATIONS= 3

Page 9: CHAPTER 5 Modelling and Analysis 2 1. Optimization via Mathematical Programming 2 Linear programming (LP) Used extensively in DSS Mathematical Programming.

9

RANGES IN WHICH THE BASIS IS UNCHANGED: OBJ COEFFICIENT RANGESVARIABLE CURRENT ALLOWABLE ALLOWABLE COEF INCREASE DECREASE X1 8000.000 INFINITY 799.9998 X2 12000.000 1333.333 INFINITY

RIGHTHAND SIDE RANGES ROW CURRENT ALLOWABLE ALLOWABLE RHS INCREASE DECREASE LABOR 200000.000 50000.000 70000.000 BUDGET 8000000.000 INFINITY 1666667.000MARKET1 100.000 233.333 INFINITYMARKET2 200.000 140.000 200.000

Page 10: CHAPTER 5 Modelling and Analysis 2 1. Optimization via Mathematical Programming 2 Linear programming (LP) Used extensively in DSS Mathematical Programming.

Heuristic Programming

10

Cuts the searchGets satisfactory solutions more quickly and less

expensivelyFinds rules to solve complex problemsFinds good enough feasible solutions to complex problemsHeuristics can be

QuantitativeQualitative (in ES)

Decision Support Systems and Intelligent Systems, Efraim Turban and Jay E. Aronson, 6th editionCopyright 2001, Prentice Hall, Upper Saddle River, NJ

Page 11: CHAPTER 5 Modelling and Analysis 2 1. Optimization via Mathematical Programming 2 Linear programming (LP) Used extensively in DSS Mathematical Programming.

When to Use Heuristics

11

1. Inexact or limited input data

2. Complex reality

3. Reliable, exact algorithm not available

4. Computation time excessive

5. To improve the efficiency of optimization

6. To solve complex problems

7. For symbolic processing

8. For making quick decisions

Decision Support Systems and Intelligent Systems, Efraim Turban and Jay E. Aronson, 6th editionCopyright 2001, Prentice Hall, Upper Saddle River, NJ

Page 12: CHAPTER 5 Modelling and Analysis 2 1. Optimization via Mathematical Programming 2 Linear programming (LP) Used extensively in DSS Mathematical Programming.

Advantages of Heuristics

12

1. Simple to understand: easier to implement and explain

2. Help train people to be creative

3. Save formulation time

4. Save programming and storage on computers

5. Save computational time

6. Frequently produce multiple acceptable solutions

7. Possible to develop a solution quality measure

8. Can incorporate intelligent search

9. Can solve very complex models

Decision Support Systems and Intelligent Systems, Efraim Turban and Jay E. Aronson, 6th editionCopyright 2001, Prentice Hall, Upper Saddle River, NJ

Page 13: CHAPTER 5 Modelling and Analysis 2 1. Optimization via Mathematical Programming 2 Linear programming (LP) Used extensively in DSS Mathematical Programming.

Limitations of Heuristics

13

1. Cannot guarantee an optimal solution

2. There may be too many exceptions

3. Sequential decisions might not anticipate future consequences

4. Interdependencies of subsystems can influence the whole system

Heuristics successfully applied to vehicle routing

Decision Support Systems and Intelligent Systems, Efraim Turban and Jay E. Aronson, 6th editionCopyright 2001, Prentice Hall, Upper Saddle River, NJ

Page 14: CHAPTER 5 Modelling and Analysis 2 1. Optimization via Mathematical Programming 2 Linear programming (LP) Used extensively in DSS Mathematical Programming.

Simulation

14

Technique for conducting experiments with a computer on a model of a management system

Frequently used DSS tool

Decision Support Systems and Intelligent Systems, Efraim Turban and Jay E. Aronson, 6th editionCopyright 2001, Prentice Hall, Upper Saddle River, NJ

Page 15: CHAPTER 5 Modelling and Analysis 2 1. Optimization via Mathematical Programming 2 Linear programming (LP) Used extensively in DSS Mathematical Programming.

Major Characteristics of Simulation

15

Imitates reality and capture its richnessTechnique for conducting experimentsDescriptive, not normative toolOften to solve very complex, risky problems

Decision Support Systems and Intelligent Systems, Efraim Turban and Jay E. Aronson, 6th editionCopyright 2001, Prentice Hall, Upper Saddle River, NJ

Page 16: CHAPTER 5 Modelling and Analysis 2 1. Optimization via Mathematical Programming 2 Linear programming (LP) Used extensively in DSS Mathematical Programming.

Advantages of Simulation

16

1. Theory is straightforward

2. Time compression

3. Descriptive, not normative

4. MSS builder interfaces with manager to gain intimate knowledge of the problem

5. Model is built from the manager's perspective

6. Manager needs no generalized understanding. Each component represents a real problem component

(More)

Decision Support Systems and Intelligent Systems, Efraim Turban and Jay E. Aronson, 6th editionCopyright 2001, Prentice Hall, Upper Saddle River, NJ

Page 17: CHAPTER 5 Modelling and Analysis 2 1. Optimization via Mathematical Programming 2 Linear programming (LP) Used extensively in DSS Mathematical Programming.

17

7. Wide variation in problem types

8. Can experiment with different variables

9. Allows for real-life problem complexities

10. Easy to obtain many performance measures directly

11. Frequently the only DSS modeling tool for nonstructured problems

12. Monte Carlo add-in spreadsheet packages (@Risk)

Decision Support Systems and Intelligent Systems, Efraim Turban and Jay E. Aronson, 6th editionCopyright 2001, Prentice Hall, Upper Saddle River, NJ

Page 18: CHAPTER 5 Modelling and Analysis 2 1. Optimization via Mathematical Programming 2 Linear programming (LP) Used extensively in DSS Mathematical Programming.

Limitations of Simulation

18

1. Cannot guarantee an optimal solution

2. Slow and costly construction process

3. Cannot transfer solutions and inferences to solve other problems

4. So easy to sell to managers, may miss analytical solutions

5. Software is not so user friendly

Decision Support Systems and Intelligent Systems, Efraim Turban and Jay E. Aronson, 6th editionCopyright 2001, Prentice Hall, Upper Saddle River, NJ

Page 19: CHAPTER 5 Modelling and Analysis 2 1. Optimization via Mathematical Programming 2 Linear programming (LP) Used extensively in DSS Mathematical Programming.

Simulation Methodology

19

Model real system and conduct repetitive experiments1. Define problem2. Construct simulation model3. Test and validate model4. Design experiments5. Conduct experiments6. Evaluate results7. Implement solution

Decision Support Systems and Intelligent Systems, Efraim Turban and Jay E. Aronson, 6th editionCopyright 2001, Prentice Hall, Upper Saddle River, NJ

Page 20: CHAPTER 5 Modelling and Analysis 2 1. Optimization via Mathematical Programming 2 Linear programming (LP) Used extensively in DSS Mathematical Programming.

Simulation Types

20

Probabilistic SimulationDiscrete distributionsContinuous distributionsProbabilistic simulation via Monte Carlo technique Time dependent versus time independent simulationSimulation softwareVisual simulationObject-oriented simulation

Decision Support Systems and Intelligent Systems, Efraim Turban and Jay E. Aronson, 6th editionCopyright 2001, Prentice Hall, Upper Saddle River, NJ

Page 21: CHAPTER 5 Modelling and Analysis 2 1. Optimization via Mathematical Programming 2 Linear programming (LP) Used extensively in DSS Mathematical Programming.

Multidimensional Modelling

21

Performed in online analytical processing (OLAP)From a spreadsheet and analysis perspective2-D to 3-D to multiple-DMultidimensional modelling tools: 16-D +Multidimensional modelling - OLAP (Figure 5.6)Tool can compare, rotate, and slice and dice

corporate data across different management viewpoints

Decision Support Systems and Intelligent Systems, Efraim Turban and Jay E. Aronson, 6th editionCopyright 2001, Prentice Hall, Upper Saddle River, NJ

Page 22: CHAPTER 5 Modelling and Analysis 2 1. Optimization via Mathematical Programming 2 Linear programming (LP) Used extensively in DSS Mathematical Programming.

Entire Data Cube from a Query in PowerPlay (Figure 5.6a)

(Courtesy Cognos Inc.)

22 Decision Support Systems and Intelligent Systems, Efraim Turban and Jay E. Aronson, 6th editionCopyright 2001, Prentice Hall, Upper Saddle River, NJ

Page 23: CHAPTER 5 Modelling and Analysis 2 1. Optimization via Mathematical Programming 2 Linear programming (LP) Used extensively in DSS Mathematical Programming.

Graphical Display of the Screen in Figure 5.6a (Figure 5.6b)

(Courtesy Cognos Inc.)

23 Decision Support Systems and Intelligent Systems, Efraim Turban and Jay E. Aronson, 6th editionCopyright 2001, Prentice Hall, Upper Saddle River, NJ

Page 24: CHAPTER 5 Modelling and Analysis 2 1. Optimization via Mathematical Programming 2 Linear programming (LP) Used extensively in DSS Mathematical Programming.

Environmental Line of Products by Drilling Down (Figure 5.6c)

(Courtesy Cognos Inc.)

24 Decision Support Systems and Intelligent Systems, Efraim Turban and Jay E. Aronson, 6th editionCopyright 2001, Prentice Hall, Upper Saddle River, NJ

Page 25: CHAPTER 5 Modelling and Analysis 2 1. Optimization via Mathematical Programming 2 Linear programming (LP) Used extensively in DSS Mathematical Programming.

Drilled Deep into the Data: Current Month, Water Purifiers, Only in North America (Figure

5.6d) (Courtesy Cognos Inc.)

25

Page 26: CHAPTER 5 Modelling and Analysis 2 1. Optimization via Mathematical Programming 2 Linear programming (LP) Used extensively in DSS Mathematical Programming.

Visual Spreadsheets

26

User can visualize models and formulas with influence diagrams

Not cells--symbolic elements

Decision Support Systems and Intelligent Systems, Efraim Turban and Jay E. Aronson, 6th editionCopyright 2001, Prentice Hall, Upper Saddle River, NJ

Page 27: CHAPTER 5 Modelling and Analysis 2 1. Optimization via Mathematical Programming 2 Linear programming (LP) Used extensively in DSS Mathematical Programming.

Visual Interactive Modelling (VIS) and Visual Interactive Simulation (VIS)

27

Visual interactive modelling (VIM) (DSS In Action 5.8)Also called

Visual interactive problem solvingVisual interactive modellingVisual interactive simulation

Use computer graphics to present the impact of different management decisions.

Can integrate with GIS Users perform sensitivity analysisStatic or a dynamic (animation) systems (Figure 5.7)

Decision Support Systems and Intelligent Systems, Efraim Turban and Jay E. Aronson, 6th editionCopyright 2001, Prentice Hall, Upper Saddle River, NJ

Page 28: CHAPTER 5 Modelling and Analysis 2 1. Optimization via Mathematical Programming 2 Linear programming (LP) Used extensively in DSS Mathematical Programming.

Generated Image of Traffic at an Intersection from the Orca Visual

Simulation Environment (Figure 5.7)(Courtesy Orca Computer, Inc.)

28 Decision Support Systems and Intelligent Systems, Efraim Turban and Jay E. Aronson, 6th editionCopyright 2001, Prentice Hall, Upper Saddle River, NJ

Page 29: CHAPTER 5 Modelling and Analysis 2 1. Optimization via Mathematical Programming 2 Linear programming (LP) Used extensively in DSS Mathematical Programming.

Visual Interactive Simulation (VIS)

29

Decision makers interact with the simulated model and watch the results over time

Visual interactive models and DSS VIM (Case Application W5.1 on book’s Web site)Queueing

Decision Support Systems and Intelligent Systems, Efraim Turban and Jay E. Aronson, 6th editionCopyright 2001, Prentice Hall, Upper Saddle River, NJ

Page 30: CHAPTER 5 Modelling and Analysis 2 1. Optimization via Mathematical Programming 2 Linear programming (LP) Used extensively in DSS Mathematical Programming.

Quantitative Software Packages-OLAP

30

Preprogrammed models can expedite DSS programming time

Some models are building blocks of other modelsStatistical packagesManagement science packagesRevenue (yield) managementOther specific DSS applications

including spreadsheet add-ins

Decision Support Systems and Intelligent Systems, Efraim Turban and Jay E. Aronson, 6th editionCopyright 2001, Prentice Hall, Upper Saddle River, NJ

Page 31: CHAPTER 5 Modelling and Analysis 2 1. Optimization via Mathematical Programming 2 Linear programming (LP) Used extensively in DSS Mathematical Programming.

Model Base Management

31

MBMS: capabilities similar to that of DBMSBut, there are no comprehensive model base management

packagesEach organization uses models somewhat differentlyThere are many model classesWithin each class there are different solution approachesSome MBMS capabilities require expertise and reasoning

Decision Support Systems and Intelligent Systems, Efraim Turban and Jay E. Aronson, 6th editionCopyright 2001, Prentice Hall, Upper Saddle River, NJ

Page 32: CHAPTER 5 Modelling and Analysis 2 1. Optimization via Mathematical Programming 2 Linear programming (LP) Used extensively in DSS Mathematical Programming.

Desirable Capabilities of MBMS

32

ControlFlexibilityFeedbackInterfaceRedundancy reductionIncreased consistency

Decision Support Systems and Intelligent Systems, Efraim Turban and Jay E. Aronson, 6th editionCopyright 2001, Prentice Hall, Upper Saddle River, NJ

Page 33: CHAPTER 5 Modelling and Analysis 2 1. Optimization via Mathematical Programming 2 Linear programming (LP) Used extensively in DSS Mathematical Programming.

MBMS Design Must Allow the DSS User to:

33

1. Access and retrieve existing models.

2. Exercise and manipulate existing models

3. Store existing models

4. Maintain existing models

5. Construct new models with reasonable effort

Decision Support Systems and Intelligent Systems, Efraim Turban and Jay E. Aronson, 6th editionCopyright 2001, Prentice Hall, Upper Saddle River, NJ

Page 34: CHAPTER 5 Modelling and Analysis 2 1. Optimization via Mathematical Programming 2 Linear programming (LP) Used extensively in DSS Mathematical Programming.

34

Modelling languagesRelational MBMSObject-oriented model base and its

managementModels for database and MIS design and their

management

Decision Support Systems and Intelligent Systems, Efraim Turban and Jay E. Aronson, 6th editionCopyright 2001, Prentice Hall, Upper Saddle River, NJ

Page 35: CHAPTER 5 Modelling and Analysis 2 1. Optimization via Mathematical Programming 2 Linear programming (LP) Used extensively in DSS Mathematical Programming.

SUMMARY

35

Models play a major role in DSSModels can be static or dynamicAnalysis is under assumed certainty, risk, or

uncertaintyInfluence diagramsSpreadsheetsDecision tables and decision trees

Spreadsheet models and results in influence diagramsOptimization: mathematical programming

(More)

Decision Support Systems and Intelligent Systems, Efraim Turban and Jay E. Aronson, 6th editionCopyright 2001, Prentice Hall, Upper Saddle River, NJ

Page 36: CHAPTER 5 Modelling and Analysis 2 1. Optimization via Mathematical Programming 2 Linear programming (LP) Used extensively in DSS Mathematical Programming.

36

Linear programming: economic-basedHeuristic programmingSimulation - more complex situationsExpert ChoiceMultidimensional models - OLAP

(More)

Decision Support Systems and Intelligent Systems, Efraim Turban and Jay E. Aronson, 6th editionCopyright 2001, Prentice Hall, Upper Saddle River, NJ

Page 37: CHAPTER 5 Modelling and Analysis 2 1. Optimization via Mathematical Programming 2 Linear programming (LP) Used extensively in DSS Mathematical Programming.

37

Quantitative software packages-OLAP (statistical, etc.)Visual interactive modelling (VIM) Visual interactive simulation (VIS)MBMS are like DBMSAI techniques in MBMS

Decision Support Systems and Intelligent Systems, Efraim Turban and Jay E. Aronson, 6th editionCopyright 2001, Prentice Hall, Upper Saddle River, NJ