SPREADSHEET SIMULATION IN ACCOUNTING WITHOUT ADD-INS

Size: px
Start display at page:

Download "SPREADSHEET SIMULATION IN ACCOUNTING WITHOUT ADD-INS"

Transcription

1 SPREADSHEET SIMULATION IN ACCOUNTING WITHOUT ADD-INS V. Reddy Dondeti, Ph.D. Professor Norfolk State University 700 Park Avenue Norfolk, VA Johnnie A. Mapp, Ph.D. Professor Norfolk State University 700 Park Avenue Norfolk, VA Jim Chen*, Ph.D. Professor Norfolk State University 700 Park Avenue Norfolk, VA *Corresponding Author

2 SPREADSHEET SIMULATION IN ACCOUNTING WITHOUT ADD-INS ABSTRACT Simulation is widely used in both accounting practice and auditing practice for a variety of types of problems. It is also utilized extensively in accounting education. Addressing the functional competencies in the AICPA Core Competency Framework for Entry into the Accounting Profession, AICPA states that individuals entering the accounting profession must be able to build appropriate models and simulations using electronic spreadsheets and other software. Developing and experimenting a simulation model on an electronic spreadsheet not only eliminates the need for learning a programming language and simplifies the model building process but also eases the experiments for different values of the parameters. This paper is organized as follows. At first, it provides a discussion of random number generators in the electronic spreadsheet environment. Next, it demonstrates the use of Microsoft Excel to develop two working simulation models without third-party add-ins. INTRODUCTION Simulation is widely used in accounting practice to analyze risk. It is employed in managerial accounting practice for (1) financial forecasting and budgeting, (2) replacement and maintenance of machinery/equipment, (3) analyzing capital investment, (4) make or buy decisions, (5) planning and controlling the budgetary process, (6) planning and implementing revisions in accounting systems, (7) inventory analysis and control, (8) production planning and control, and (9) strategic enterprise management (O Leary, 1983; Kramer et al, 2008). It is also heavily used in auditing practice. For example, parallel simulation is used frequently for controls testing and substantive testing (Turney and Watne, 2003). Simulation is widely utilized in accounting education as well to introduce uncertainty modeling, risk analysis, financial fraud detection, unique accounting needs of smaller businesses, and strategic enterprise management to students, and to develop students critical thinking skills (Blankley et al, 2004; Jabbour and Liu, 2005; Rich and Cascini, 2006; Cascini and Rich, 2007; Ragan et al, 2008; Schiff and Smith, 2008; Togo, 2007 & 2008). Addressing the functional competencies in the AICPA Core Competency Framework for Entry into the Accounting Profession, AICPA states that individuals entering the accounting profession must be able to build appropriate models and simulations using electronic spreadsheets and other software (AICPA, 2009). Though user-friendly simulation software packages (e.g. Arena, ProcessModel and ProModel) are available, developing a simulation model on an electronic spreadsheet has several advantages: (1) the elimination of the need for learning a programming language, (2) the wide spread availability of and familiarity with spreadsheet software, (3) the availability of many built-in statistical functions for generating random numbers and data summarization, (4) the capability of displaying information in detail and in easy-to-read format, not just the final results, (5) the ease of experiments for different values of the parameters, (6) the capability of developing simulation models without add-ins such as Crystal Ball and (7) a better understanding of the basic concepts behind the simulation models.

3 This paper is organized as follows. At first, it provides a discussion of random number generators in the electronic spreadsheet environment. Next, it demonstrates the use of Microsoft Excel to develop two working simulation models without third-party add-ins. RANDOM NUMBER GENERATORS One of the requirements of almost any simulation model is some facility for generating random numbers. Microsoft Excel provides two uniform random number generators in the form of functions: RAND() and RANDBETWEEN(a,b). However, other theoretical distributions such as normal, exponential, gamma, and Poisson distributions are encountered more frequently than is the uniform distribution. In many cases, an empirical distribution is used. The inverse transformation method is a general method for transforming a standard uniform deviate into any other distribution, especially, when the distribution is an empirical one. In this section, we briefly discuss procedures for generating random numbers from empirical and frequently used theoretical distributions based on the inverse transformation method. Our emphasis is on procedures that can be coded in a single statement. The procedures for generating random numbers are well discussed in many simulation books. We refer the interested readers to Random Number Generation and Monte Carlo Methods by James Gentle (Gentle, 2004). Empirical Distribution Using the inverse transformation method for a general discrete distribution is essentially a table lookup. To generate random numbers from an empirical distribution, we can use either the LOOKUP, VLOOKUP, or HLOOKUP functions provided by Excel. The vector form of LOOKUP function is discussed here. The syntax of the vector form is =LOOKUP(lookup_value, lookup_vector, result_vector) The values in the lookup vector must be in ascending order. LOOKUP compares the lookup_value to each cell in the lookup_vector until it finds a cell larger than the lookup_value. It then moves up one cell and returns the content of the corresponding cell in the result_vector as the answer. For example, assume the relative frequency of sales in unit per month for laser printers is as shown in Table 1. Unit Sales Per Month Table 1 Unit Sales of Laser Printers Relative Frequency To generate monthly unit sales, say, for six months in cells E2 through E7 from the above empirical distribution, at first, convert Table 1 into a cumulative-relative-frequency table as shown in Columns A and B of Table 2. Then, type =LOOKUP(RAND(),$B$2:$B$5, $A$2:$A$5) in cell E2. Finally, position the mouse pointer over the fill handle and drag it to cell

4 E7 to extend the LOOKUP function from cell E2 to the range E3:E7. Suppose the numbers generated by RAND() are 0.22, 0.04, 0.39, 0.78, 0.23, and 0.16, the unit sales generated will be 550, 350, 550, 650, 550, and 450, respectively. Table 2 Illustration of Empirical Random Number Generation Triangular Distribution The cumulative distribution function (CDF) of a triangular distribution with lower limit a, mode c and upper limit b is The inverse of F is then Thus, a triangular-distributed random number can be generated by the Excel formula =IF(r<=(c-a)/(b-a), a+sqrt(r*(b-a)*(c-a)),b-sqrt((1-r)*(b-a)*(b-c)) where r can be generated by the RAND() function. Storing the value from the RAND() function in the variable r is important because the RAND() function returns a new value each time it is called. The Triangular Distribution may be used when the knowledge about a population is limited but the minimum, maximum and mode are known. Exponential Distribution The CDF of an exponentially distributed random variable is F(x) = 1 e -βx for x > 0 where 1/β equals the mean of the exponential random variable. The inverse of F is then F -1 (r) = -ln(1-r)/β Therefore, the Excel formula for generating an exponentially distributed random number is simply = -LN(1-RAND())/beta

5 Because RAND() is uniformly distributed, 1-RAND() is also uniformly distributed, and the above Excel formula can be further simplified as = -LN(RAND())/beta The distribution of time that elapses before the occurrence of some event often follows an exponential distribution. Normal Distribution The closed-form functional representation of the inverse of the CDF for the normal distribution does not exist. Fortunately, Excel has a built-in function NORMINV(probability,mean,std_dev) which returns the inverse of the normal cumulative distribution for the specified mean and standard deviation. So, to generate a normal random number in Excel, we can use the simple formula = NORMINV(RAND(), mean, std_dev) Gamma Distribution There are two ways of writing (parameterizing) the gamma distribution that are common in the literature. EXCEL uses Excel provides a built-in function GAMMAINV(probability,alpha,beta) which returns the inverse of the gamma cumulative distribution. Thus, we can use the following formula to generate a gamma distributed random number in Excel. =GAMMAINV(RAND(),alpha,beta) Because an exponential distribution with parameter beta is the same as a gamma distribution with parameters alpha and beta where alpha = 1, the GAMMAINV function can also be used to generate an exponentially distributed random variable. The distribution of time that elapses before the alphath occurrence of some event often follows a gamma distribution. Gamma distribution also provides the most common best fit to lead-time demand for a variety of inventory items (Bagchi et al, 1986). Binomial Distribution To generate a binomially distributed random number with parameters n and p, we can generate n standard uniform numbers and the number of these standard random numbers that are less than or equal to p is the binomially distributed random number generated. This procedure is useful when the value of n is not large. So, for small values of n, we can use the following formula to generate a binomially distributed random number in Excel.

6 =IF(RAND()<=p,1,0)+IF(RAND()<=p,1,0)+IF(RAND()<=p,1,0) IF(RAND()<=p,1,0) where IF(RAND()<=p,1,0) appears n times. For large values of n, the normal approximation to binomial may be used. Poisson Distribution The Poisson random number generator cannot be coded in a single expression. However, we may use the POISSON function to construct a cumulative distribution table. Then the LOOKUP function can be used to access the table to generate the Poisson random numbers in our spreadsheet simulation model. The syntax of the POISSON function is = POISSON(x,mean,cumulative) where x = the number of events, mean = the expected value, and cumulative = a logical value that determines the probability returned. If cumulative is TRUE, POISSON returns the cumulative probability that 0 X x; if FALSE, it returns the probability that X = x. For example, to develop a cumulative distribution table for a Poisson random variable with mean = 3 in columns A and B, we (1) enter the number of events in column A as shown in Table 3, (2) enter 0 and =POISSON(A2,3,TRUE) to cells B2 and B3, respectively, and (3) extend the POISSON function in cell B3 to the range B4:B14. The POISSON functions in column B are in a cell higher than their corresponding number of events because of the way the LOOKUP function works. After the Poisson distribution table is constructed, we can use =LOOKUP(RAND(), B2:B14,A2:A14) to generate the random numbers. Table 3 Illustration of Poisson Cumulative Distribution Table Generation It is obvious that the table lookup technique may also be used to generate binomial random numbers.

7 The Poisson distribution often serves as an appropriate probability distribution for random variables representing the number of occurrences of some phenomenon during a fixed period of time. A Capital Budgeting Example EXAMPLES OF SPREADSHEET SIMULATION A simple capital budgeting problem is listed in Table 4. The net present value (NPV) spreadsheet model for the capital budgeting problem is presented in Table 5. After the formulas are entered into the cells C15, C16 and C17, the range C13:C17 can be copied to the columns on the right to generate additional simulations. For example, to generate additional 50 simulations, we can copy C13:C17 to D13:BA17. Statistics such as total, average, maximum, and minimum can be obtained easily with SUM, AVERAGE, MAX, and MIN functions, respectively. Additional runs for the same values of parameters can be carried out easily by simply pressing the CALC NOW (F9) key. Experiments for different values of the parameters can also be executed easily by entering their values into their respective cells. Table 4 A Capital Budgeting Problem

8 Table 5 NPV Simulation Model A Cost-Volume-Profit Analysis Example of Spreadsheet Simulation A simple Cost-Volume-Profit Analysis Problem is given in Table 6 and its corresponding simulation model is presented in Table 7. This example introduces conditional probability. Conditional probability can be coded using either the IF function or a table lookup technique. We used the IF function here. For ease of presentation, the formula in cell B11 is shown in two lines. Again, the formulae in the range B8:B18 can be extended to generate additional simulations and statistical functions can be used to obtain summary statistics. Table 6 A Cost-Volume-Profit Analysis Problem

9 Table 7 Cost-Volume-Profit Analysis Simulation Model CONCLUSION Simulation is widely used in accounting practice to analyze risk for a variety of types of problems. Developing and experimenting a simulation model on an electronic spreadsheet not only eliminates the need for learning a programming language and simplifies the model building process but also eases the experiments for different values of the parameters. This paper discusses the procedures for generating random numbers in the electronic spreadsheet environment and demonstrates the use of Microsoft Excel to develop two working simulation models without third-party add-ins. It clearly shows that spreadsheet simulation is useful, inexpensive, and easy to learn.

10 REFERENCES AICPA Core Competency Framework for Entry into the Accounting Profession (The Framework), (n.d.) Retrieved June 18, 2009 from Bagchi, U., J. C. Hayya, J. C. & C. Chu (1986), The Effect of Lead Time Variability: the Case of Independent Demand, Journal of Operations Management, 6(2), Blankley, Alan I., Philip G. Cottell Jr., & Richard H. McClure (2004, Quarter 3), Rational Prediction Of Future Pension Expense: A Simulation Approach, Journal of Applied Business Research, 20(3). Cascini, Karen T. & Anne J. Rich (2007, Quarter 2), Developing Critical Thinking Skills In The Intermediate Accounting Class: Using Simulations With Rubrics, Journal of Business Case Studies, 3(2). Gentle, James (2004), Random Number Generation and Monte Carlo Methods (Statistics and Computing) (2nd Edition), Springer, New York. Jabbour, George M. & Yi-Kang Liu (2005, September), Option Pricing and Monte Carlo Simulations, Journal of Business & Economics Research, 3(9). Kramer, Thomas A., J. M. Ragan, J. Gregory & J. Larkin (2008, September), Business Warehouse Modeling Using SAP: Simulating A Business Case To Apply Strategic Enterprise Management To Accounting, Journal of Business Case Studies,4(9). O leary, Daniel E. (1983), The Use of Simulation in Accounting: A Managerial Emphasis, Proceedings of the IEEE Simulation Conference. Ragan, Joseph M., Andrew J. Hadley & Alexander P. Raymond (2008, March), Star Electronics, Inc.: An Excel Based Case Using Financial Statement Analysis To Detect Fraud, Journal of Business Case Studies, 4(3). Rich, Anne J. & Karen T. Cascini (2006, January), The Impact of A Simulation Exercise in the Intermediate Financial Accounting Course, Journal of College Teaching & Learning, 3(1). Schiff, Andrew D. & Margaret C. Smith (2008, March), Margaret's Garden Shoppe: A Realistic Simulation of Accounting for Small Entities, Journal of Business Case Studies, 4(3). Togo, Dennis F. (2007, Quarter 1), Stochastic Risk Analysis of Budgeted Financial Statements, Journal of Business Case Studies, 3(1). Togo, Dennis F. (2008, March), Sunset Company: Risk Analysis for Capital Budgeting Using Simulation and Binary Linear Programming, Journal of Business Case Studies, 4(3). Turney, Peter B.B. & Donald Watne (2003), Auditing EDP Systems (2nd Edition), Prentice Hall.

Chapter 3 RANDOM VARIATE GENERATION

Chapter 3 RANDOM VARIATE GENERATION Chapter 3 RANDOM VARIATE GENERATION In order to do a Monte Carlo simulation either by hand or by computer, techniques must be developed for generating values of random variables having known distributions.

More information

TEACHING SIMULATION WITH SPREADSHEETS

TEACHING SIMULATION WITH SPREADSHEETS TEACHING SIMULATION WITH SPREADSHEETS Jelena Pecherska and Yuri Merkuryev Deptartment of Modelling and Simulation Riga Technical University 1, Kalku Street, LV-1658 Riga, Latvia E-mail: [email protected],

More information

Chapter 9 Monté Carlo Simulation

Chapter 9 Monté Carlo Simulation MGS 3100 Business Analysis Chapter 9 Monté Carlo What Is? A model/process used to duplicate or mimic the real system Types of Models Physical simulation Computer simulation When to Use (Computer) Models?

More information

Lesson 4.3: Using the VLOOKUP Function

Lesson 4.3: Using the VLOOKUP Function Lesson 4.3: Using the VLOOKUP Function Excel 2003 provides two lookup functions that you can use to quickly retrieve information from a table. The functions are called HLOOKUP (horizontal lookup) and VLOOKUP

More information

Monte Carlo Simulation. SMG ITS Advanced Excel Workshop

Monte Carlo Simulation. SMG ITS Advanced Excel Workshop Advanced Excel Workshop Monte Carlo Simulation Page 1 Contents Monte Carlo Simulation Tutorial... 2 Example 1: New Marketing Campaign... 2 VLOOKUP... 5 Example 2: Revenue Forecast... 6 Pivot Table... 8

More information

Choosing Probability Distributions in Simulation

Choosing Probability Distributions in Simulation MBA elective - Models for Strategic Planning - Session 14 Choosing Probability Distributions in Simulation Probability Distributions may be selected on the basis of Data Theory Judgment a mix of the above

More information

Chapter 11 Monte Carlo Simulation

Chapter 11 Monte Carlo Simulation Chapter 11 Monte Carlo Simulation 11.1 Introduction The basic idea of simulation is to build an experimental device, or simulator, that will act like (simulate) the system of interest in certain important

More information

Introduction to Statistical Computing in Microsoft Excel By Hector D. Flores; [email protected], and Dr. J.A. Dobelman

Introduction to Statistical Computing in Microsoft Excel By Hector D. Flores; hflores@rice.edu, and Dr. J.A. Dobelman Introduction to Statistical Computing in Microsoft Excel By Hector D. Flores; [email protected], and Dr. J.A. Dobelman Statistics lab will be mainly focused on applying what you have learned in class with

More information

ModelRisk for Insurance and Finance. Quick Start Guide

ModelRisk for Insurance and Finance. Quick Start Guide ModelRisk for Insurance and Finance Quick Start Guide Copyright 2008 by Vose Software BVBA, All rights reserved. Vose Software Iepenstraat 98 9000 Gent, Belgium www.vosesoftware.com ModelRisk is owned

More information

Finite Mathematics Using Microsoft Excel

Finite Mathematics Using Microsoft Excel Overview and examples from Finite Mathematics Using Microsoft Excel Revathi Narasimhan Saint Peter's College An electronic supplement to Finite Mathematics and Its Applications, 6th Ed., by Goldstein,

More information

Page 1 EXPERT. 1.1 Manage Multiple Workbooks Pages Where Covered Modifying existing templates. 356 (Step 7 Tip) Merging multiple workbooks

Page 1 EXPERT. 1.1 Manage Multiple Workbooks Pages Where Covered Modifying existing templates. 356 (Step 7 Tip) Merging multiple workbooks Page 1 EXPERT Study Guide for MOS Objectives (Expert) in Microsoft Excel 2013 Illustrated 1.0 Manage and Share Workbooks 1.1 Manage Multiple Workbooks Pages Where Covered Modifying existing templates 356

More information

Introduction to Simulation

Introduction to Simulation ancmat03.qxd 11/16/06 3:28 PM Page C1 SUPPLEMENT Introduction to Simulation C LEARNING OBJECTIVES After completing this supplement you should be able to 1 2 3 4 5 Explain why simulation is a valuable tool

More information

BUSINESS DATA ANALYSIS WITH PIVOTTABLES

BUSINESS DATA ANALYSIS WITH PIVOTTABLES BUSINESS DATA ANALYSIS WITH PIVOTTABLES Jim Chen, Ph.D. Professor Norfolk State University 700 Park Avenue Norfolk, VA 23504 (757) 823-2564 [email protected] BUSINESS DATA ANALYSIS WITH PIVOTTABLES INTRODUCTION

More information

Building and Using Spreadsheet Decision Models

Building and Using Spreadsheet Decision Models Chapter 9 Building and Using Spreadsheet Decision Models Models A model is an abstraction or representation of a real system, idea, or object. Models could be pictures, spreadsheets, or mathematical relationships

More information

Microsoft Excel 2010

Microsoft Excel 2010 Microsoft Excel 2010 Special Topics PivotTable IF Function V-Lookup Function Information Technology Services Outreach and Distance Learning Technologies Copyright 2011 KSU Department of Information Technology

More information

Multiple Choice: 2 points each

Multiple Choice: 2 points each MID TERM MSF 503 Modeling 1 Name: Answers go here! NEATNESS COUNTS!!! Multiple Choice: 2 points each 1. In Excel, the VLOOKUP function does what? Searches the first row of a range of cells, and then returns

More information

Basel II: Operational Risk Implementation based on Risk Framework

Basel II: Operational Risk Implementation based on Risk Framework Systems Ltd General Kiselov 31 BG-9002 Varna Tel. +359 52 612 367 Fax +359 52 612 371 email [email protected] WEB: www.eurorisksystems.com Basel II: Operational Risk Implementation based on Risk

More information

MATH 140 Lab 4: Probability and the Standard Normal Distribution

MATH 140 Lab 4: Probability and the Standard Normal Distribution MATH 140 Lab 4: Probability and the Standard Normal Distribution Problem 1. Flipping a Coin Problem In this problem, we want to simualte the process of flipping a fair coin 1000 times. Note that the outcomes

More information

QUANTITATIVE METHODS IN BUSINESS PROBLEM #2: INTRODUCTION TO SIMULATION

QUANTITATIVE METHODS IN BUSINESS PROBLEM #2: INTRODUCTION TO SIMULATION QUANTITATIVE METHODS IN BUSINESS PROBLEM #2: INTRODUCTION TO SIMULATION Dr. Arnold Kleinstein and Dr. Sharon Petrushka Introduction Simulation means imitation of reality. In this problem, we will simulate

More information

seven Statistical Analysis with Excel chapter OVERVIEW CHAPTER

seven Statistical Analysis with Excel chapter OVERVIEW CHAPTER seven Statistical Analysis with Excel CHAPTER chapter OVERVIEW 7.1 Introduction 7.2 Understanding Data 7.3 Relationships in Data 7.4 Distributions 7.5 Summary 7.6 Exercises 147 148 CHAPTER 7 Statistical

More information

1 Sufficient statistics

1 Sufficient statistics 1 Sufficient statistics A statistic is a function T = rx 1, X 2,, X n of the random sample X 1, X 2,, X n. Examples are X n = 1 n s 2 = = X i, 1 n 1 the sample mean X i X n 2, the sample variance T 1 =

More information

Financial Planning and Analysis Using Excel

Financial Planning and Analysis Using Excel Financial Planning and Analysis Using Excel 28 Sep.- 02 Oct., 2014 - Riyadh Business Training The time is now to build a better tomorrow Objectives Excel Training: Application Tools: Financial and Statistical

More information

Commonly Used Excel Functions. Supplement to Excel for Budget Analysts

Commonly Used Excel Functions. Supplement to Excel for Budget Analysts Supplement to Excel for Budget Analysts Version 1.0: February 2016 Table of Contents Introduction... 4 Formulas and Functions... 4 Math and Trigonometry Functions... 5 ABS... 5 ROUND, ROUNDUP, and ROUNDDOWN...

More information

Simulation and Lean Six Sigma

Simulation and Lean Six Sigma Hilary Emmett, 22 August 2007 Improve the quality of your critical business decisions Agenda Simulation and Lean Six Sigma What is Monte Carlo Simulation? Loan Process Example Inventory Optimization Example

More information

Simulation Exercises to Reinforce the Foundations of Statistical Thinking in Online Classes

Simulation Exercises to Reinforce the Foundations of Statistical Thinking in Online Classes Simulation Exercises to Reinforce the Foundations of Statistical Thinking in Online Classes Simcha Pollack, Ph.D. St. John s University Tobin College of Business Queens, NY, 11439 [email protected]

More information

Using Formulas, Functions, and Data Analysis Tools Excel 2010 Tutorial

Using Formulas, Functions, and Data Analysis Tools Excel 2010 Tutorial Using Formulas, Functions, and Data Analysis Tools Excel 2010 Tutorial Excel file for use with this tutorial Tutor1Data.xlsx File Location http://faculty.ung.edu/kmelton/data/tutor1data.xlsx Introduction:

More information

YASAIw.xla A modified version of an open source add in for Excel to provide additional functions for Monte Carlo simulation.

YASAIw.xla A modified version of an open source add in for Excel to provide additional functions for Monte Carlo simulation. YASAIw.xla A modified version of an open source add in for Excel to provide additional functions for Monte Carlo simulation. By Greg Pelletier, Department of Ecology, P.O. Box 47710, Olympia, WA 98504

More information

Microsoft Excel 2010 Part 3: Advanced Excel

Microsoft Excel 2010 Part 3: Advanced Excel CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Excel 2010 Part 3: Advanced Excel Winter 2015, Version 1.0 Table of Contents Introduction...2 Sorting Data...2 Sorting

More information

Representing Uncertainty by Probability and Possibility What s the Difference?

Representing Uncertainty by Probability and Possibility What s the Difference? Representing Uncertainty by Probability and Possibility What s the Difference? Presentation at Amsterdam, March 29 30, 2011 Hans Schjær Jacobsen Professor, Director RD&I Ballerup, Denmark +45 4480 5030

More information

Overview of Monte Carlo Simulation, Probability Review and Introduction to Matlab

Overview of Monte Carlo Simulation, Probability Review and Introduction to Matlab Monte Carlo Simulation: IEOR E4703 Fall 2004 c 2004 by Martin Haugh Overview of Monte Carlo Simulation, Probability Review and Introduction to Matlab 1 Overview of Monte Carlo Simulation 1.1 Why use simulation?

More information

Using VLOOKUP to Combine Data in Microsoft Excel

Using VLOOKUP to Combine Data in Microsoft Excel Using VLOOKUP to Combine Data in Microsoft Excel Microsoft Excel includes a very powerful function that helps users combine data from multiple sources into one table in a spreadsheet. For example, if you

More information

Using Microsoft Excel for Probability and Statistics

Using Microsoft Excel for Probability and Statistics Introduction Using Microsoft Excel for Probability and Despite having been set up with the business user in mind, Microsoft Excel is rather poor at handling precisely those aspects of statistics which

More information

Evaluating the Lead Time Demand Distribution for (r, Q) Policies Under Intermittent Demand

Evaluating the Lead Time Demand Distribution for (r, Q) Policies Under Intermittent Demand Proceedings of the 2009 Industrial Engineering Research Conference Evaluating the Lead Time Demand Distribution for (r, Q) Policies Under Intermittent Demand Yasin Unlu, Manuel D. Rossetti Department of

More information

How To Use Excel With A Calculator

How To Use Excel With A Calculator Functions & Data Analysis Tools Academic Computing Services www.ku.edu/acs Abstract: This workshop focuses on the functions and data analysis tools of Microsoft Excel. Topics included are the function

More information

Bowerman, O'Connell, Aitken Schermer, & Adcock, Business Statistics in Practice, Canadian edition

Bowerman, O'Connell, Aitken Schermer, & Adcock, Business Statistics in Practice, Canadian edition Bowerman, O'Connell, Aitken Schermer, & Adcock, Business Statistics in Practice, Canadian edition Online Learning Centre Technology Step-by-Step - Excel Microsoft Excel is a spreadsheet software application

More information

Microsoft Excel: Formulas, Formulas...

Microsoft Excel: Formulas, Formulas... Microsoft Excel: Formulas, Formulas... Northern New York Library Network 6721 US Hwy 11 Postdam, NY 13676 877-833-1674 or 315-265-1119 www.nnyln.org Jim Crowley C3 - Crowley Computer Consulting 9148 State

More information

6 3 The Standard Normal Distribution

6 3 The Standard Normal Distribution 290 Chapter 6 The Normal Distribution Figure 6 5 Areas Under a Normal Distribution Curve 34.13% 34.13% 2.28% 13.59% 13.59% 2.28% 3 2 1 + 1 + 2 + 3 About 68% About 95% About 99.7% 6 3 The Distribution Since

More information

EXCEL FINANCIAL USES

EXCEL FINANCIAL USES EXCEL FINANCIAL USES Table of Contents Page LESSON 1: FINANCIAL DOCUMENTS...1 Worksheet Design...1 Selecting a Template...2 Adding Data to a Template...3 Modifying Templates...3 Saving a New Workbook as

More information

Implementing the BG/NBD Model for Customer Base Analysis in Excel

Implementing the BG/NBD Model for Customer Base Analysis in Excel Implementing the BG/NBD Model for Customer Base Analysis in Excel Peter S. Fader www.petefader.com Bruce G. S. Hardie www.brucehardie.com Ka Lok Lee www.kaloklee.com June 2005 1. Introduction This note

More information

Introducing Oracle Crystal Ball Predictor: a new approach to forecasting in MS Excel Environment

Introducing Oracle Crystal Ball Predictor: a new approach to forecasting in MS Excel Environment Introducing Oracle Crystal Ball Predictor: a new approach to forecasting in MS Excel Environment Samik Raychaudhuri, Ph. D. Principal Member of Technical Staff ISF 2010 Oracle Crystal

More information

Normality Testing in Excel

Normality Testing in Excel Normality Testing in Excel By Mark Harmon Copyright 2011 Mark Harmon No part of this publication may be reproduced or distributed without the express permission of the author. [email protected]

More information

MICROSOFT EXCEL FORMULAS

MICROSOFT EXCEL FORMULAS MICROSOFT EXCEL FORMULAS Building Formulas... 1 Writing a Formula... 1 Parentheses in Formulas... 2 Operator Precedence... 2 Changing the Operator Precedence... 2 Functions... 3 The Insert Function Button...

More information

Simulation and Risk Analysis

Simulation and Risk Analysis Simulation and Risk Analysis Using Analytic Solver Platform REVIEW BASED ON MANAGEMENT SCIENCE What We ll Cover Today Introduction Frontline Systems Session Ι Beta Training Program Goals Overview of Analytic

More information

An Introduction to Excel Pivot Tables

An Introduction to Excel Pivot Tables An Introduction to Excel Pivot Tables EXCEL REVIEW 2001-2002 This brief introduction to Excel Pivot Tables addresses the English version of MS Excel 2000. Microsoft revised the Pivot Tables feature with

More information

Statistical Functions in Excel

Statistical Functions in Excel Statistical Functions in Excel There are many statistical functions in Excel. Moreover, there are other functions that are not specified as statistical functions that are helpful in some statistical analyses.

More information

TRADING SYSTEM EVALUATION By John Ehlers and Mike Barna 1

TRADING SYSTEM EVALUATION By John Ehlers and Mike Barna 1 TRADING SYSTEM EVALUATION By John Ehlers and Mike Barna 1 INTRODUCTION There are basically two ways to trade using technical analysis Discretionarily and Systematically. Discretionary traders can, and

More information

Chapter 9 Creating Reports in Excel

Chapter 9 Creating Reports in Excel Chapter 9 Creating Reports in Excel One of the most powerful features of Standard & Poor s Research Insight is its ability to communicate with Microsoft Excel through Active-X Technology. Excel requests

More information

One-Minute Spotlight. The Crystal Ball Forecast Chart

One-Minute Spotlight. The Crystal Ball Forecast Chart The Crystal Ball Forecast Chart Once you have run a simulation with Oracle s Crystal Ball, you can view several charts to help you visualize, understand, and communicate the simulation results. This Spotlight

More information

Generating Random Numbers Variance Reduction Quasi-Monte Carlo. Simulation Methods. Leonid Kogan. MIT, Sloan. 15.450, Fall 2010

Generating Random Numbers Variance Reduction Quasi-Monte Carlo. Simulation Methods. Leonid Kogan. MIT, Sloan. 15.450, Fall 2010 Simulation Methods Leonid Kogan MIT, Sloan 15.450, Fall 2010 c Leonid Kogan ( MIT, Sloan ) Simulation Methods 15.450, Fall 2010 1 / 35 Outline 1 Generating Random Numbers 2 Variance Reduction 3 Quasi-Monte

More information

Extracts from Crystal Ball Getting Started Guide

Extracts from Crystal Ball Getting Started Guide Extracts from Crystal Ball Getting Started Guide This document consists of chapters 1 through 3 of the Crystal Ball Getting Started Guide. It contains two tutorials: Tutorial 1 is a ready-to-run simulation

More information

Chapter 1 Introduction. 1.1 Introduction

Chapter 1 Introduction. 1.1 Introduction Chapter 1 Introduction 1.1 Introduction 1 1.2 What Is a Monte Carlo Study? 2 1.2.1 Simulating the Rolling of Two Dice 2 1.3 Why Is Monte Carlo Simulation Often Necessary? 4 1.4 What Are Some Typical Situations

More information

Optimal Scheduling for Dependent Details Processing Using MS Excel Solver

Optimal Scheduling for Dependent Details Processing Using MS Excel Solver BULGARIAN ACADEMY OF SCIENCES CYBERNETICS AND INFORMATION TECHNOLOGIES Volume 8, No 2 Sofia 2008 Optimal Scheduling for Dependent Details Processing Using MS Excel Solver Daniela Borissova Institute of

More information

A logistic approximation to the cumulative normal distribution

A logistic approximation to the cumulative normal distribution A logistic approximation to the cumulative normal distribution Shannon R. Bowling 1 ; Mohammad T. Khasawneh 2 ; Sittichai Kaewkuekool 3 ; Byung Rae Cho 4 1 Old Dominion University (USA); 2 State University

More information

Permutation Tests for Comparing Two Populations

Permutation Tests for Comparing Two Populations Permutation Tests for Comparing Two Populations Ferry Butar Butar, Ph.D. Jae-Wan Park Abstract Permutation tests for comparing two populations could be widely used in practice because of flexibility of

More information

Excel 2010: Create your first spreadsheet

Excel 2010: Create your first spreadsheet Excel 2010: Create your first spreadsheet Goals: After completing this course you will be able to: Create a new spreadsheet. Add, subtract, multiply, and divide in a spreadsheet. Enter and format column

More information

UNIVERSITY OF SOUTHERN CALIFORNIA Marshall School of Business IOM 427 Designing Spreadsheet-Based Business Models Fall 2011

UNIVERSITY OF SOUTHERN CALIFORNIA Marshall School of Business IOM 427 Designing Spreadsheet-Based Business Models Fall 2011 UNIVERSITY OF SOUTHERN CALIFORNIA Marshall School of Business IOM 427 Designing Spreadsheet-Based Business Models Fall 2011 Instructor: Hiroshi Ochiumi Office: BRI 401M Office hours: 3-4pm Tuesday. Phone:

More information

Credit Risk Models: An Overview

Credit Risk Models: An Overview Credit Risk Models: An Overview Paul Embrechts, Rüdiger Frey, Alexander McNeil ETH Zürich c 2003 (Embrechts, Frey, McNeil) A. Multivariate Models for Portfolio Credit Risk 1. Modelling Dependent Defaults:

More information

Highline Excel 2016 Class 11: Lookup Formulas & Functions: VLOOKUP & More: Comprehensive Lessons

Highline Excel 2016 Class 11: Lookup Formulas & Functions: VLOOKUP & More: Comprehensive Lessons Highline Excel 2016 Class 11: Lookup Formulas & Functions: VLOOKUP & More: Comprehensive Lessons Table of Contents Why are Lookup Formulas so Common in Spreadsheets?... 2 Examples of Common Lookup Situations:...

More information

CRASHING-RISK-MODELING SOFTWARE (CRMS)

CRASHING-RISK-MODELING SOFTWARE (CRMS) International Journal of Science, Environment and Technology, Vol. 4, No 2, 2015, 501 508 ISSN 2278-3687 (O) 2277-663X (P) CRASHING-RISK-MODELING SOFTWARE (CRMS) Nabil Semaan 1, Najib Georges 2 and Joe

More information

Calculator Notes for the TI-Nspire and TI-Nspire CAS

Calculator Notes for the TI-Nspire and TI-Nspire CAS CHAPTER 11 Calculator Notes for the Note 11A: Entering e In any application, press u to display the value e. Press. after you press u to display the value of e without an exponent. Note 11B: Normal Graphs

More information

Business Statistics. Successful completion of Introductory and/or Intermediate Algebra courses is recommended before taking Business Statistics.

Business Statistics. Successful completion of Introductory and/or Intermediate Algebra courses is recommended before taking Business Statistics. Business Course Text Bowerman, Bruce L., Richard T. O'Connell, J. B. Orris, and Dawn C. Porter. Essentials of Business, 2nd edition, McGraw-Hill/Irwin, 2008, ISBN: 978-0-07-331988-9. Required Computing

More information

COMPUTING DURATION, SLACK TIME, AND CRITICALITY UNCERTAINTIES IN PATH-INDEPENDENT PROJECT NETWORKS

COMPUTING DURATION, SLACK TIME, AND CRITICALITY UNCERTAINTIES IN PATH-INDEPENDENT PROJECT NETWORKS Proceedings from the 2004 ASEM National Conference pp. 453-460, Alexandria, VA (October 20-23, 2004 COMPUTING DURATION, SLACK TIME, AND CRITICALITY UNCERTAINTIES IN PATH-INDEPENDENT PROJECT NETWORKS Ryan

More information

Performing Simple Calculations Using the Status Bar

Performing Simple Calculations Using the Status Bar Excel Formulas Performing Simple Calculations Using the Status Bar If you need to see a simple calculation, such as a total, but do not need it to be a part of your spreadsheet, all you need is your Status

More information

ACS Microcomputer Workshop Excel: Functions and Data Analysis Tools

ACS Microcomputer Workshop Excel: Functions and Data Analysis Tools ACS Microcomputer Workshop Excel: Functions and Data Analysis Tools Introduction The Excel software package consists of three basic parts: its electronic spreadsheet, graphics, and database utilities.

More information

A Generalized PERT/CPM Implementation in a Spreadsheet

A Generalized PERT/CPM Implementation in a Spreadsheet A Generalized PERT/CPM Implementation in a Spreadsheet Abstract Kala C. Seal College of Business Administration Loyola Marymount University Los Angles, CA 90045, USA [email protected] This paper describes

More information

Using Excel for Data Manipulation and Statistical Analysis: How-to s and Cautions

Using Excel for Data Manipulation and Statistical Analysis: How-to s and Cautions 2010 Using Excel for Data Manipulation and Statistical Analysis: How-to s and Cautions This document describes how to perform some basic statistical procedures in Microsoft Excel. Microsoft Excel is spreadsheet

More information

Probability and Random Variables. Generation of random variables (r.v.)

Probability and Random Variables. Generation of random variables (r.v.) Probability and Random Variables Method for generating random variables with a specified probability distribution function. Gaussian And Markov Processes Characterization of Stationary Random Process Linearly

More information

Lesson 9: Radicals and Conjugates

Lesson 9: Radicals and Conjugates Student Outcomes Students understand that the sum of two square roots (or two cube roots) is not equal to the square root (or cube root) of their sum. Students convert expressions to simplest radical form.

More information

Installing and Using the Monte Carlo Simulation Excel Add-in. Software for

Installing and Using the Monte Carlo Simulation Excel Add-in. Software for Installing and Using the Monte Carlo Simulation Excel Add-in Software for Introductory Econometrics By Humberto Barreto and Frank M. Howland [email protected] and [email protected] (765) 658-4531 and

More information

36106 Managerial Decision Modeling Monte Carlo Simulation in Excel: Part I

36106 Managerial Decision Modeling Monte Carlo Simulation in Excel: Part I 36106 Managerial Decision Modeling Monte Carlo Simulation in Excel: Part I Kipp Martin University of Chicago Booth School of Business November 5, 2015 Reading and Excel Files Reading: Powell and Baker:

More information

Using the Delta Method to Construct Confidence Intervals for Predicted Probabilities, Rates, and Discrete Changes

Using the Delta Method to Construct Confidence Intervals for Predicted Probabilities, Rates, and Discrete Changes Using the Delta Method to Construct Confidence Intervals for Predicted Probabilities, Rates, Discrete Changes JunXuJ.ScottLong Indiana University August 22, 2005 The paper provides technical details on

More information

Profit Forecast Model Using Monte Carlo Simulation in Excel

Profit Forecast Model Using Monte Carlo Simulation in Excel Profit Forecast Model Using Monte Carlo Simulation in Excel Petru BALOGH Pompiliu GOLEA Valentin INCEU Dimitrie Cantemir Christian University Abstract Profit forecast is very important for any company.

More information

Stats on the TI 83 and TI 84 Calculator

Stats on the TI 83 and TI 84 Calculator Stats on the TI 83 and TI 84 Calculator Entering the sample values STAT button Left bracket { Right bracket } Store (STO) List L1 Comma Enter Example: Sample data are {5, 10, 15, 20} 1. Press 2 ND and

More information

DIRECT MAIL: MEASURING VOLATILITY WITH CRYSTAL BALL

DIRECT MAIL: MEASURING VOLATILITY WITH CRYSTAL BALL Proceedings of the 2005 Crystal Ball User Conference DIRECT MAIL: MEASURING VOLATILITY WITH CRYSTAL BALL Sourabh Tambe Honza Vitazka Tim Sweeney Alliance Data Systems, 800 Tech Center Drive Gahanna, OH

More information

Probability Distributions

Probability Distributions CHAPTER 6 Probability Distributions Calculator Note 6A: Computing Expected Value, Variance, and Standard Deviation from a Probability Distribution Table Using Lists to Compute Expected Value, Variance,

More information

TOOLS OF MONTE CARLO SIMULATION IN INVENTORY MANAGEMENT PROBLEMS

TOOLS OF MONTE CARLO SIMULATION IN INVENTORY MANAGEMENT PROBLEMS TOOLS OF MONTE CARLO SIMULATION IN INVENTORY MANAGEMENT PROBLEMS Jacek Zabawa and Bożena Mielczarek Institute of Industrial Engineering and Management Wrocław University of Technology 50-370, Wrocław,

More information

Vector and Matrix Norms

Vector and Matrix Norms Chapter 1 Vector and Matrix Norms 11 Vector Spaces Let F be a field (such as the real numbers, R, or complex numbers, C) with elements called scalars A Vector Space, V, over the field F is a non-empty

More information

Monte Carlo analysis used for Contingency estimating.

Monte Carlo analysis used for Contingency estimating. Monte Carlo analysis used for Contingency estimating. Author s identification number: Date of authorship: July 24, 2007 Page: 1 of 15 TABLE OF CONTENTS: LIST OF TABLES:...3 LIST OF FIGURES:...3 ABSTRACT:...4

More information

Using Excel for Statistical Analysis

Using Excel for Statistical Analysis 2010 Using Excel for Statistical Analysis Microsoft Excel is spreadsheet software that is used to store information in columns and rows, which can then be organized and/or processed. Excel is a powerful

More information

How to Use a Data Spreadsheet: Excel

How to Use a Data Spreadsheet: Excel How to Use a Data Spreadsheet: Excel One does not necessarily have special statistical software to perform statistical analyses. Microsoft Office Excel can be used to run statistical procedures. Although

More information

Matching Investment Strategies in General Insurance Is it Worth It? Aim of Presentation. Background 34TH ANNUAL GIRO CONVENTION

Matching Investment Strategies in General Insurance Is it Worth It? Aim of Presentation. Background 34TH ANNUAL GIRO CONVENTION Matching Investment Strategies in General Insurance Is it Worth It? 34TH ANNUAL GIRO CONVENTION CELTIC MANOR RESORT, NEWPORT, WALES Aim of Presentation To answer a key question: What are the benefit of

More information

Excel Level Two. Introduction. Contents. Exploring Formulas. Entering Formulas

Excel Level Two. Introduction. Contents. Exploring Formulas. Entering Formulas Introduction Excel Level Two This workshop introduces you to formulas, functions, moving and copying data, using autofill, relative and absolute references, and formatting cells. Contents Introduction

More information

Commission Formula. Value If True Parameter Value If False Parameter. Logical Test Parameter

Commission Formula. Value If True Parameter Value If False Parameter. Logical Test Parameter Excel Review This review uses material and questions from Practice Excel Exam 1 found on the Lab Exam 2 Study Guide webpage. Print out a copy of Practice Excel Exam 1. Download the Practice Excel Exam

More information

CHAPTER 6: Continuous Uniform Distribution: 6.1. Definition: The density function of the continuous random variable X on the interval [A, B] is.

CHAPTER 6: Continuous Uniform Distribution: 6.1. Definition: The density function of the continuous random variable X on the interval [A, B] is. Some Continuous Probability Distributions CHAPTER 6: Continuous Uniform Distribution: 6. Definition: The density function of the continuous random variable X on the interval [A, B] is B A A x B f(x; A,

More information

Microsoft Excel 2007 Critical Data Analysis Using Functions

Microsoft Excel 2007 Critical Data Analysis Using Functions V O L U M E 4 Microsoft Excel 007 Critical Data Analysis Using Functions DASH DESIGNS CONSULTING Technology Training and Consulting Services Excel 007 Critical Data Analysis Using Functions For The Haas

More information

Microsoft Excel 2010 and Tools for Statistical Analysis

Microsoft Excel 2010 and Tools for Statistical Analysis Appendix E: Microsoft Excel 2010 and Tools for Statistical Analysis Microsoft Excel 2010, part of the Microsoft Office 2010 system, is a spreadsheet program that can be used to organize and analyze data,

More information

Calculations for Time Value of Money

Calculations for Time Value of Money KEATMX01_p001-008.qxd 11/4/05 4:47 PM Page 1 Calculations for Time Value of Money In this appendix, a brief explanation of the computation of the time value of money is given for readers not familiar with

More information

Statistics I for QBIC. Contents and Objectives. Chapters 1 7. Revised: August 2013

Statistics I for QBIC. Contents and Objectives. Chapters 1 7. Revised: August 2013 Statistics I for QBIC Text Book: Biostatistics, 10 th edition, by Daniel & Cross Contents and Objectives Chapters 1 7 Revised: August 2013 Chapter 1: Nature of Statistics (sections 1.1-1.6) Objectives

More information

CA200 Quantitative Analysis for Business Decisions. File name: CA200_Section_04A_StatisticsIntroduction

CA200 Quantitative Analysis for Business Decisions. File name: CA200_Section_04A_StatisticsIntroduction CA200 Quantitative Analysis for Business Decisions File name: CA200_Section_04A_StatisticsIntroduction Table of Contents 4. Introduction to Statistics... 1 4.1 Overview... 3 4.2 Discrete or continuous

More information

Excel Database Management Microsoft Excel 2003

Excel Database Management Microsoft Excel 2003 Excel Database Management Microsoft Reference Guide University Technology Services Computer Training Copyright Notice Copyright 2003 EBook Publishing. All rights reserved. No part of this publication may

More information

LDA at Work: Deutsche Bank s Approach to Quantifying Operational Risk

LDA at Work: Deutsche Bank s Approach to Quantifying Operational Risk LDA at Work: Deutsche Bank s Approach to Quantifying Operational Risk Workshop on Financial Risk and Banking Regulation Office of the Comptroller of the Currency, Washington DC, 5 Feb 2009 Michael Kalkbrener

More information

Table of Contents TASK 1: DATA ANALYSIS TOOLPAK... 2 TASK 2: HISTOGRAMS... 5 TASK 3: ENTER MIDPOINT FORMULAS... 11

Table of Contents TASK 1: DATA ANALYSIS TOOLPAK... 2 TASK 2: HISTOGRAMS... 5 TASK 3: ENTER MIDPOINT FORMULAS... 11 Table of Contents TASK 1: DATA ANALYSIS TOOLPAK... 2 TASK 2: HISTOGRAMS... 5 TASK 3: ENTER MIDPOINT FORMULAS... 11 TASK 4: ADD TOTAL LABEL AND FORMULA FOR FREQUENCY... 12 TASK 5: MODIFICATIONS TO THE HISTOGRAM...

More information

ENGG1811 Computing for Engineers. Data Analysis using Excel (weeks 2 and 3)

ENGG1811 Computing for Engineers. Data Analysis using Excel (weeks 2 and 3) ENGG1811 Computing for Engineers Data Analysis using Excel (weeks 2 and 3) Data Analysis Histogram Descriptive Statistics Correlation Fitting Equations to Data Solving Equations Matrix Calculations Finding

More information

TEST 2 STUDY GUIDE. 1. Consider the data shown below.

TEST 2 STUDY GUIDE. 1. Consider the data shown below. 2006 by The Arizona Board of Regents for The University of Arizona All rights reserved Business Mathematics I TEST 2 STUDY GUIDE 1 Consider the data shown below (a) Fill in the Frequency and Relative Frequency

More information

SECTION 2: Working with Functions and Formulas

SECTION 2: Working with Functions and Formulas SECTION 2: Working with Functions and Formulas In this section you will learn about: Relative and absolute cell references Basic mathematical operators Using formulas with multiple cell references Fixing

More information

Geostatistics Exploratory Analysis

Geostatistics Exploratory Analysis Instituto Superior de Estatística e Gestão de Informação Universidade Nova de Lisboa Master of Science in Geospatial Technologies Geostatistics Exploratory Analysis Carlos Alberto Felgueiras [email protected]

More information