Management Decision Support and Intelligent Systems

Slides:



Advertisements
Similar presentations
Modelling with expert systems. Expert systems Modelling with expert systems Coaching modelling with expert systems Advantages and limitations of modelling.
Advertisements

UNIT 1 CONCEPT OF MANAGERIAL ECONOMICS (continue)
Decision Support and Intelligence System Novita Sakundarini Jurusan Teknik Industri UPNVY Pertemuan ke-10.
Chapter 12 Analyzing Semistructured Decision Support Systems Systems Analysis and Design Kendall and Kendall Fifth Edition.
Decision Making: An Introduction 1. 2 Decision Making Decision Making is a process of choosing among two or more alternative courses of action for the.
The Decision-Making Process IT Brainpower
1 Chapter 12: Decision-Support Systems for Supply Chain Management CASE: Supply Chain Management Smooths Production Flow Prepared by Hoon Lee Date on 14.
Management Decision Support and Intelligent Systems
Copyright 2007 John Wiley & Sons, Inc. Chapter 91 Managerial Support Systems.
Review 4 Chapters 8, 9, 10.
Chapter 12: Intelligent Systems in Business
Lead Black Slide. © 2001 Business & Information Systems 2/e2 Chapter 11 Management Decision Making.
Building Knowledge-Driven DSS and Mining Data
Information Technologies: Concepts and Management
Business Driven Technology Unit 3 Streamlining Business Operations Copyright © 2015 McGraw-Hill Education. All rights reserved. No reproduction or distribution.
9-1 Supporting Management and Decision Making 9-2 The Managers and Decision Making The Manager’s job Manager decisions and computerized support Modeling.
Chapter 121 Information Technology For Management 6 th Edition Turban, Leidner, McLean, Wetherbe Lecture Slides by L. Beaubien, Providence College John.
Enabling the Organization – Decision Making CHAPTER 09 Copyright © 2013 by The McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill/Irwin.
Intelligent Support Systems
Expert Systems Infsy 540 Dr. Ocker. Expert Systems n computer systems which try to mimic human expertise n produce a decision that does not require judgment.
CHAPTER 11 Managerial Support Systems. CHAPTER OUTLINE  Managers and Decision Making  Business Intelligence Systems  Data Visualization Technologies.
Chapter 121 Information Technology For Management 6 th Edition Turban, Leidner, McLean, Wetherbe Lecture Slides by L. Beaubien, Providence College John.
Enabling Organization-Decision Making
0AI-based Information Technology  Information Technology Based on AI ● What is Artificial Intelligence? ● Artificial Intelligence vs. Natural Intelligence.
DSS defined: It is a system which provides tools to managers to assist them in solving semi structured problem in their own personalized way. DSS is not.
Copyright © 2002 by The McGraw-Hill Companies, Inc. Information Technology & Management 2 nd Edition, Thompson Cats-Baril Chapter 8 I/S and Organizational.
Decision Support Systems Management Information Systems BUS 391 Barry Floyd.
Modeling.
11 C H A P T E R Artificial Intelligence and Expert Systems.
Copyright © 2006, The McGraw-Hill Companies, Inc. All rights reserved. Decision Support Systems Chapter 10.
Data Mining Chapter 1 Introduction -- Basic Data Mining Tasks -- Related Concepts -- Data Mining Techniques.
Chapter 4 MODELING AND ANALYSIS. Model component Data component provides input data User interface displays solution It is the model component of a DSS.
Core Concepts of ACCOUNTING INFORMATION SYSTEMS Moscove, Simkin & Bagranoff John Wiley & Sons, Inc. Developed by: Marianne Bradford, Ph.D. Bryant College.
1 Introduction to Neural Networks And Their Applications.
Chapter 13 Artificial Intelligence and Expert Systems.
1 CHAPTER 2 Decision Making, Systems, Modeling, and Support.
10-1 Identify the changes taking place in the form and use of decision support in business Identify the role and reporting alternatives of management information.
Chapter 1 Introduction n Introduction: Problem Solving and Decision Making n Quantitative Analysis and Decision Making n Quantitative Analysis n Model.
PLUG IT IN 5 Intelligent Systems. 1.Introduction to intelligent systems 2.Expert Systems 3.Neural Networks 4.Fuzzy Logic 5.Genetic Algorithms 6.Intelligent.
MODELING AND ANALYSIS Pertemuan-4
Pertemuan 16 Materi : Buku Wajib & Sumber Materi :
McGraw-Hill/Irwin © The McGraw-Hill Companies, All Rights Reserved CHAPTER 9 Enabling the Organization—Decision Making.
Chapter 121 Management Decision Support and Intelligent Systems.
Introduction to Machine Learning, its potential usage in network area,
Prepared by John Swearingen
INTRODUCTION TO INFORMATION SYSTEMS & DECISION MAKING
Computer Simulation Henry C. Co Technology and Operations Management,
Information Systems Decision Support and Artificial Intelligence
Business Intelligence
Fundamentals of Information Systems, Sixth Edition
Decision Support and Business Intelligence Systems
Decision Support Systems
Fundamentals of Information Systems, Sixth Edition
Fundamentals of Information Systems
CHAPTER 1 Introduction BIC 3337 EXPERT SYSTEM.
Introduction Characteristics Advantages Limitations
Decision Support and Artificial Intelligence Chapter 4
MANAGING KNOWLEDGE FOR THE DIGITAL FIRM
Chapter 12 Advanced Intelligent Systems
Simulation Modeling.
Information Technology Economics
Management Decision Support and Intelligent Systems
Decision Support Systems Lecture II Modeling and Analysis
Information Systems in Organizations
Modeling and Analysis Tutorial
Chapter 12 Analyzing Semistructured Decision Support Systems
Decision Support Systems DSS.. Prostration Group
Chapter 1.
Dr. Arslan Ornek MATHEMATICAL MODELS
This presentation was developed by Dr. Steven C
Presentation transcript:

Management Decision Support and Intelligent Systems Chapter 12 Management Decision Support and Intelligent Systems Information Technology For Management 6th Edition Turban, Leidner, McLean, Wetherbe Lecture Slides by L. Beaubien, Providence College John Wiley & Sons, Inc. Chapter 12

DSS DSS is a computer-based information system that contributes decision making process Why do we need computers Large number of alternatives (ex: FLP) Uncertainty Intensive calculations Decision makers and data are usually located in different places Decision making process can be Highly structured (The procedures for obtaining the best solutions are known- Management Science) Highly unstructured problems (managerial judgment and intuition; ex new product development) Semi-structured Problems (DSS is most suitable) Chapter 12

A model is a simplified representation of reality. With modeling, one can reach an optimum solution under certain assumptions and perform virtual experiments The cost of virtual experimentation is much lower Years of operations can be simulated Manipulating the model is much easier What ifs Evaluating large number of alternatives Chapter 12

Optimization models LP (Lindo, QSB, AMPL) MIP (Lindo, QSB, AMPL) Non-linear optimization models (Ex: Forecasting Models, SS calculation) Analytical optimizatin models Heuristic search algorithms WinQSB vs AMPL Chapter 12

Sample Ampl Code set iplnt := 1 2 3 4; set kprod := 1 2 3 4 5 6 7 8 9 10 11 12; set tperiod := 1 2 3 4 5 6; set machine := 1 2 3 4 5 6 7; Subject to capacity {i in iplant, m in mach, t in tperiod}: sum{k in kprod} production[i,k,m,t]/machrate[i,m,k]<= 28; This code represents a set of 168 constraints (4 plants * 6 periods * 7 machines) Chapter 12

Using Binary Variables subject to c24 {t in 1..6, i in iplnt, j in jdest, k in kprod}: fbbinary [i,j,k,t] + fcbinary [i,j,k,t] <= 1; subject to c25 {t in 1..6, i in iplnt, j in jdest, k in kprod}: cshipvar[i,j,k,t]<=300*fcbinary[i,j,k,t]; subject to c26 {t in 1..6, i in iplnt, j in jdest, k in kprod}: bshipvar[i,j,k,t]>=301*fbbinary[i,j,k,t]; subject to c27 {t in 1..6, i in iplnt, j in jdest, k in kprod}: bshipvar[i,j,k,t]<= 1000000*fbbinary[i,j,k,t]; subject to c28 {i in iplnt, j in jdest, k in kprod, t in 1..6}: zshipment[i,j,k,t] = bshipvar[i,j,k,t] + cshipvar[i,j,k,t]; Chapter 12

When the model is solved, the results depend on these assumptions. WHAT-IF ANALYSİS A model builder makes predictions and assumptions regarding the input data, many of which are based on the assessment of uncertain futures. When the model is solved, the results depend on these assumptions. What-if analysis attempts to check the impact of a change in the assumptions (input data) on the proposed solution. In a properly designed DSS, managers themselves can easily ask the computer these types of questions as many times as needed for sensitivity analysis. Shadow price (WinQSB) GOAL-SEEKING ANALYSIS Goal-seeking analysis attempts to find the value of the inputs necessary to achieve a desired level of output. It represents a “backward” solution approach. For example, let us say that a DSS solution yielded a profit of $2 million. Management wants to know what sales volume would be necessary to generate a profit of $2.2 million. This is a goal-seeking problem. Excel Chapter 12

Stochastic optimization models Ex: Forecast model fitting using solve in Excel Chapter 12

Simulation In DSSs, simulation generally refers to a technique for conducting experiments (such as “what-if”) with a computer on a model of a management system. Because a DSS deals with semistructured or unstructured situations, it involves complex reality, which may not be easily analyzed by optimization or other standard models but often can be handled by simulation. (Less assumptions) Simulation is increasingly part of the decision support tools used in the airline industry for short-term decision making Chapter 12

Distribution assumption (statfit) it can describe or predict the characteristics of a given system under different circumstances. Once the characteristics’ values are computed, the best among several alternatives can be selected. (ex. FLP) The simulation process often consists of the repetition of an experiment many, many times to obtain an estimate of the overall effect of certain actions (Precision test). Automod vs Promodel Distribution assumption (statfit) Chapter 12

Sample Automod code begin P_proc arriving if A_location = 1 then begin move into Q_oakmachine /* processing queue */ use R_oakmachine for n 15, 240 min inc V_production_cost(A_location) by 15 inc V_total_inv(A_location, A_loadindex) by 1 end Chapter 12

Advantages of Simulation Allows for inclusion of the real-life complexities of problems. Only a few simplifications are necessary. For example, simulation may utilize the real-life probability distributions rather than approximate theoretical distributions. Is descriptive. This allows the manager to ask what-if type questions. Thus, managers who employ a trial-and-error approach to problem solving can do it faster and cheaper, with less risk, using a simulated problem instead of a real one. Can handle an extremely wide variation in problem types, such as inventory and staffing, as well as higher managerial-level tasks like long-range planning. Further, the manager can experiment with different variables to determine which are important, and with different alternatives to determine which is best. Chapter 12

Decision Complexity Chapter 12

Characteristics and Capabilities of DSSs Sensitivity analysis is the study of the impact that changes in one (or more) parts of a model have on other parts. What-if analysis is the study of the impact of a change in the assumptions (input data) on the proposed solution. Goal-seeking analysis is the study that attempts to find the value of the inputs necessary to achieve a desired level of output. Chapter 12

DSS Process Chapter 12

Intelligent Systems Expert systems (ESs) are attempts to mimic human experts. It is decision-making software that can reach a level of performance comparable to a human expert in some specialized and usually narrow problem area. The idea is simple: expertise is transferred from an expert or other source of expertise to the computer. The transfer of expertise from an expert to a computer and then to the user involves four activities: Knowledge acquisition (from experts or other sources). It involves studying the thought processes of humans Knowledge representation (organized as rules or frames in the computer) Knowledge inferencing is performed in a component called the inference engine of the ES and results in the recommendation. Knowledge transfer to the user (the expert’s knowledge has been transferred to users). It advises the nonexperts, and explaines, if necessary, the logic behind the advise. Chapter 12

Artificial Neural Networks (ANN) Pattern recognition and learning are the key characteristics of ANN ANN can analyze large quantities of data to establish patterns where the logic rules are not known Neural networks are particularly good at identifying subtle, hidden, and newly emerging patterns within complex data as well as interpreting incomplete inputs. Example 1: Loan application. By reviving many historical cases of applicants’ questionnaires, ANN can create patterns or profiles of applicants that should be approved or denied Example 2: Identifying patterns in stock market data and assisting in stock and bond trading strategies; Chapter 12

Artificial Neural Network Chapter 12

It is through repeated adjustments of weights that the network learns. Inputs. Each input corresponds to a single attribute. For example, if the problem is to decide on approval or disapproval of a loan, some attributes could be the applicant’s income level, age, and home ownership. Several types of data, such as text, pictures, and voice, can be used as inputs. Preprocessing may be needed to convert the raw data to meaningful inputs from symbolic data or to scale the data. The inputs are multiplied by weights—when they enter the processing elements (PEs). Weights. Key elements in an ANN are the weights.Weights express the relative strength (or mathematical value) of the input data or the many connections that transfer data from layer to layer. In other words, in the case of a loan application, weights express the relative importance of each input applicant’s attribute, based on past experiences.Weights are crucial in that they store learned patterns of information. It is through repeated adjustments of weights that the network learns. Summation function. The summation function (represented by the symbol) calculates the weighted sum of all the input elements entering each processing element. A summation function multiplies each input value by its weight and totals the values for a weighted sum. Transformation function. A transformation function (represented by) integrates the information produced by all PEs, and transforms it to meaningful outputs. Outputs. The outputs of the network contain the solution to a problem. For example, in the case of a loan application it can be “yes” or “no.”The ANN assigns numeric values, like 1 for “yes” and 0 for “no.” The purpose of the network is to compute the values of the output. Chapter 12

Some Applications of Neural Networks Data mining- Finding data in large and complex databases Credit card fraud detection Analyzing purchasing patterns for fast detection of fraud Tax fraud Identifying, enhancing, and finding irregularities Evaluation of personnel and Matching personnel data to job requirements and performance criteria job candidates Loan application evaluation- Judging worthiness of loan applications based on patterns in previous application information (customer credit scoring) New product analysis- Sales forecasting and targeted marketing Insurance fraud detection Finding fraud patterns (see hnc.com) Chapter 12

Automated Decission Suppport (ADS) ADS systems are rule-based systems that are particularly useful for repetitive managerial problems. ADS is achieved by capturing a business user expertise in a set of business rules. These rules determine what actions needs to be taken in particular situations Examples Loan approval Dell Yield optimization Traffic lights Dynamic Forecasting Chapter 12

Why Managers Need IT Support A key to good decision making is to explore and compare many relevant alternatives. The more alternatives that exist, the more computer-assisted search and comparisons are needed. Typically, decisions must be made under time pressure. Frequently it is not possible to manually process the needed information fast enough to be effective. It is usually necessary to conduct a sophisticated analysis in order to make a good decision. Such analysis requires the use of modeling. Chapter 12

Managerial Issues Cost justification, intangible benefits. While some of the benefits of management support systems are tangible, it is difficult to put a dollar value on the intangible benefits of many such systems. Documenting personal DSS. Many employees develop their own DSSs to increase their productivity and the quality of their work. It is advisable to have an inventory of these DSSs and make certain that appropriate documentation and security measures exist. Ready-made commercial DSSs. With the increased use of Web-based systems and ASPs, it is possible to find more DSS applications sold off the shelf, frequently online. The benefits of a purchased or leased DSS application sometimes make it advisable to change business processes to fit a commercially available DSS. Embedded technologies. Intelligent systems are expected to be embedded in at least 20 percent of all IT applications in about 10 years. It is critical for any prudent management to closely examine the technologies and their business applicability. Chapter 12