Forecasting Introduction Version 1.7

Size: px
Start display at page:

Download "Forecasting Introduction Version 1.7"

Transcription

1 Forecasting Introduction Version 1.7 Dr. Ron Tibben-Lembke Sept. 3, 2006 This introduction will cover basic forecasting methods, how to set the parameters of those methods, and how to measure forecast accuracy. We will use the following terminology: F i Forecast of demand in period i. D i Actual demand in period i. F t,i Forecast of what the demand will be in period i; forecast was made at time t. 1 Forecast Error The way we will measure how well a forecast performs is by using measures of forecast error that you ve probably seen before. Define δ (delta) as the difference between the forecast and the actual: δ i = F i D i. We can perform a variety of calculations on this number to get a feel for how well our forecast method is performing. MAD = n i=1 δ i /n MSE = n i=1 (δ i ) 2 /n MAPE = n δ i i=1 D i /n RSFE = n i=1 δ i TS = RSFE / MAD MAD is the Mean Absolute Deviation, which tells us the average of the absolute values of the errors. MSE is the Mean Squared Deviation, which is the average of the squared errors. MAPE is the Mean Absolute Percentage Error, which takes the absolute error of each forecast, and divides it by the value of the demand, to get the error as a percentage of the demand, and then averages these percentage errors. RSFE is the running sum of forecast errors. Instead of taking the absolute value of the errors, the positive and negative numbers are allowed to cancel each other out, if that s what happens. Finally, the Tracking Signal (TS) takes the RSFE and divides it by the MAD. MSE is not as widely used. The MAD gives us a picture of the average amount of the error: on average we are off by ten units, sometimes high, sometimes low. The RSFE tells us whether our forecast is biased to always be too high, or always be to low. The analogy I like to make is to 1

2 archery. The MAD tells us that we miss the bullseye by 10 inches, on average, but it doesn t tell us which way we need to correct. The RSFE tells us that cumulatively, we have missed the target 100 inches to the right; so maybe sometimes we miss to the left, but on general, we miss to the right a lot more than we miss to the left, so we should correct by aiming a bit more to the left. If we aren t consistently shooting in the wrong direction, the RSFE should stick close to zero, sometimes positive, sometimes negative. If it becomes a large positive or negative number, we need to correct our forecast. But how big is a big enough error that we should do something about it? That s where the TS comes in. If the RSFE gets to be as big as say, 5 times the MAD, we need to fix something. So divide the RSFE by the MAD, and that s the TS. If that gets close to 5, (either positive or negative) we need to re-evaluate our forecasting method. 2 No Trend or Seasonality If there is no trend or seasonality to your demand, then every day should be pretty much like any other day. 2.1 Naive Method With the naive method, your forecast for any day is that it will be exactly like what happened the day before: F t = D t 1. This seems so simple that it would seem like it could never work very well, but it does surprisingly well in a lot of different circumstances. If demand goes up and down randomly a little bit each day, then the naive method seems like it would be at a bit of a disadvantage. If demand is a little below average one day, it s likely that it will be closer to the usual, or maybe a little above the usual the next day. 2.2 Simple Average With a simple average, our forecast for the next day is just the long-term average of all of the sales data we have. Sum of all t demands t 1 i=1 F t = = D i t t 1. Average all of the demand information you have. The argument that can be made in favor of this method is that the more data you get, the more your estimation of the true average gets closer to the real thing. To compare it to baseball, if a player gets 2 hits in 5 at-bats, that would be a batting average. But to really know if a player is capable of hitting 0.400, we need to see how well the player does over a whole season. By the time we ve seen the player in action for a whole season, we really know how good the player is. The same argument could be made for the simple average: the more sales numbers you get, the better your estimate really fits the reality. 2.3 Moving Average In theory, the simple average works wonderfully for demand that has no growth over time, but in reality, everyone really has some increase or decrease over time. Because you are averaging some 2

3 numbers that eventually become really old, these old numbers drag down the average and should not be considered representative of our situation. For that reason, we should throw out some of the oldest data. In a moving average forecast, we decide that we are only going to take an average of the n most recent data points. We might use the last 4 months, or 3 years, whatever number we feel comfortable with. Our forecast for period t is given by: last n demands F t = = n t 1 i=t 1 n D i. n If there truly is no trend to the demand, this won t work quite as well as the simple average, but if there is any actual trend to the demand, the moving average will work better than the simple average. 2.4 Weighted Moving Average By switching to the moving average, we have solved the problem the simple average had of considering too much data. But there still could be a problem in that all of the data we are considering is getting an equal amount of weight. In some cases, people argue that the most recent information should get the most consideration in our calculation, and that older information should not get as much consideration. A way to fix this is to give each demand point a different amount of weight, and give more weight to the most recent data points, and less weight to older points. If we are using m periods in our calculation, we will give a weight of b j to each period. The oldest data point gets a weight of b 1, and the most recent gets a weight of b m. Usually, people set the weights so that b 1 b 2 b 3... b m. If all of the weights do not sum to 1.0, it won t really be an average. So to easily make the forecast a proper average, we will multiply each data point by its relevant weight, and then divide by the sum of the weights: mi=1 b 1+m i D t i F t = mi=1. b i Although the formula looks complicated, the idea is still relatively simple: if you are including n periods in your calculation, multiply the oldest data point by b 1 and the newest one by b n. Add them up, and divide by the sum of the b i s. 2.5 Exponential Smoothing A more accurate name for this method would be exponentially weighted moving average. The idea here is that we will build on the weighted moving average method, but instead of having to choose the parameters b i for each period, we will only have to choose one parameter, α, (alpha), which is a number between 0 and 1. This forecast is also easy to write the equation for: We can also write the same thing as: F t = α D t 1 + (1 α) F t 1. F t = α (D t 1 F t 1 ) + F t 1. 3

4 As you can see, it is very easy to use. All you need to decide ahead of time is what value to use for α, and you just need to know what the most recent demand was and what the most recent forecast was, and that s all you need to make a new forecast. If α = 0, the forecast never changes, and if α = 1, we just have the naive method. Usual values are around 0.1 to 0.3. The name comes from the fact that we are smoothing the numbers, getting a new estimate each time by modifying last period s number. The exponential part is a little trickier to explain, but here goes. If we make a forecast for period 10, we would write: F 10 = α D 9 + (1 α) F 9. But, we could ask ourselves, last month, when we made the forecast for period 9, how did we do it? We used this formula: F 9 = α D 8 + (1 α) F 8. So if you look at where the forecast for period 10 really comes from, if we substitute this expression in for the F 9 part, we could write it like this: F 10 = αd 9 + (1 α) [αd 8 + (1 α)f 8.] F 10 = αd 9 + α(1 α)d 8 + α(1 α)f 8. But where did F 8 come from? Again, the same formula: Substituting that in and arranging, we get: F 8 = α D 7 + (1 α) F 7. F 10 = αd 9 + α(1 α)d 8 + α(1 α) 2 D 7 + α(1 α) 2 F 7. We could play this game a few more times and get: F 10 = αd 9 +α(1 α)d 8 +α(1 α) 2 D 7 +α(1 α) 3 D 7 +α(1 α) 4 D 6 +α(1 α) 4 D 5 +α(1 α) 5 D What you see then is that the new forecast that we so easily make for period 10 is really the sum of the past demand figures. Each demand number is getting a different amount of weight, so what this really is is a weighted moving average. But how do the weights change? Since α is between 0 and 1, (1 α) must also be a number between 0 and 1. Any time you multiply together numbers between 0 and 1, the result is a smaller number. (Try it.) So the weights get smaller exponentially, and hence the name. 3 What is Exponential Smoothing? The basic idea in exponential smoothing is that we take an average of our old estimate of some quantity, and some new information about that quantity. In exponential smoothing, we are assuming that there is no growth, no trend to the data. So every period, we are just making new estimates of the intercept. F t = α D t 1 + (1 α) F t 1. 4

5 The new demand gives us another data point about what the intercept might be, and the old forecast is our old estimate of the intercept. We can (and we are going to) use this idea to update estimates of other things, like a trend. Although the formula will look different, the idea is the same: 4 Setting Parameters New Estimate = α New information + (1 α) Old Estimate. How should we choose the best parameters of α or b? How do we make our forecasting methods get the best possible results? The idea is simple: try different parameter values until you get the MAD (or MSE, or whatever you want to focus on) as small as possible. You could do this by hand, but using a spreadsheet or some other computer tool is really the only way to do it quickly. However, there is a risk that by doing this, you will be cooking your method to fit the past data perfectly, but that doesn t mean it will work anywhere that well for the future. Continuing with baseball analogies, if you could throw the exactly same pitch 100 times (I could just stand there and rewind the ball like it was a video), I ought to eventually be able to hit a home run. But that doesn t mean I m going to hit a home run when I let you throw whatever you want to the next time. To get around that, a more trusted method is to take one part of your data for tweaking the parameters, probably the first half or two thirds of the data. Then look to see how the method performs on the remainder of your data. This is a more accurate portrayal of how it would do once you gave it some new data. 5 Forecasting with a Trend When our demand has a trend, there are two main methods that we can use. 5.1 Linear Regression I assume that you are all familiar with linear regression from your statistics classes. Basically, we assume that there is a linear relationship between one output (dependent) variable, Y, and the input (independent) variable, X. In our case, we will be looking at the independent variable as being time, t, and we think that demand is generally growing over time. We do a linear regression to get a formula like this: Y (t) = a + bt. For any time value, t, we put it into the equation, and get a straight-line forecast of the demand for that period. How well the data are approximated by the line is represented in the term R 2. R 2 can be literally interpreted as the percentage of changes in Y that can be explained by changes in X. To do a linear regression in Excel, there are four ways you could do, presented in the order of the things I like the least to the way I think is the best. First, you could dust off your statistics book and type in the formulas from it. That sounds like a lot of work, and there are lots of opportunities to make a mistake when typing in those big 5

6 formulas. But if you get it all in correctly, the spreadsheet will update automatically when you enter new data points. Secondly, could also use the Data Analysis ToolPak. You should find that under Tools Data Analysis. If it is not there, go to Tools Add-Ins. In that dialog box, check the box by Analysis ToolPak. If that does not appear in the dialog box, you need to get out your CDs and install that part of Excel. After you go to Tools Data Analysis, a dialog box comes up, where you tell it which cells are the X s, and which are the Y s. Tell it where to put the output, but be careful. If you put it on the sheet you are working on, the following 18 rows will get written over with the output. In that output, you will want to look at where the Intercept row and the Coefficient column intersect. That is the intercept. The slope is the row below that, in the X Variable column, where it meets the Coefficient column. R-squared is in the second row of numbers, under R Square. One problem with this method is that when you add new data point to the spreadsheet, you have to go back up to Tools Data Analysis every time to re-run the LR. The spreadsheet can t update automatically. Thirdly, another way to get the intercept and slope is to create a graph of the data. Right click on the data line, and select Add Trendline. In that dialog box, add a linear trendline, and under Options, you can have the equation of the trendline displayed on the graph, and also R-squared. The trouble with doing the LR in the graph, is that you can t make use of the numbers that appear in the graph in any calculations. Finally, the best way to do the LR is to use the SLOPE and INTERCEPT functions. SLOPE(range of x value, range of y values) gives you the slope, and INTERCEPT(x values, y values) gives the intercept. To find out R-Squared, use RSQ(x values, y values). 5.2 Double Exponential Smoothing The only problem with Linear Regression is that it gives all the demand points equal weight when trying to fit a line. Really, we would like it to try hardest to fit the line to the most recent data points, and not worry quite so much about fitting the line to the oldest data points. Linear regression cannot do that. However, we do remember that exponential smoothing had that type of behavior: give the most weight to the most recent. There is a way we can adapt exponential smoothing to work with a trend. This is also known as Holt s Method. We will define two terms: S i out estimate of the level, or intercept, at time i. T i our estimate of the trend in period i. T AF i+1 S i + T i. our estimate of what the demand will actually be in period i. In each period, we will revise our estimate of the level, and our estimate of the trend. To do that, we will use two different smoothing constants, α, and β. Like α, β is a number between 0.1 and 0.3, usually. 1. At the end of a period, compute a new intercept: S i = T AF i + α(d i T AF i ). We can also write this as: S i = αd i + (1 α) T AF i. 6

7 2. Compute a new, smoothed estimate of the trend T i = T i 1 + β(s i T AF i ). 3. Use these two new terms to predict the demand for period i + 1: T AF i+1 = S i + T i. If you want to make a forecast for the period after that, just add on another period s worth of growth: T AF i+n = S i + T i n. 5.3 Is this Right? When I first saw the equation for the trend, I thought why doesn t it look more like the equation for the intercept? I expected something like α times the new information, plus (1 α) times the previous estimate. It seemed to me that it should really look like T i = β(s i S i 1 ) + (1 β) T i 1. This follows the same scheme that the S i formula follows. (S i S i 1 ) shows us how much the intercept has changed recently, so it is the new information. We ll give it the weight of β, and give the old estimate of the trend the weight of (1 β). If we take this, and multiply out the parenthesis (using the distributive property) we get: We can rearrange this to be T i = βs i βs i 1 + T i 1 βt i 1. T i = T i 1 + βs i β(s i 1 + T i 1 ). Notice that the last part of this, S i 1 + T i 1, is just T AF i = S i 1 + T i 1. If we write it that way, we get T i = T i 1 + βs i βt AF i. If we put the last two terms together, we get the following, which is the original equation: T i = T i 1 + β(s i T AF i ). So even though the two equations look different, they are equivalent. 6 Problems 1. Explain the difference between bias and deviation. 2. Explain the difference between MAD and MSE. 3. Using the following data, create a forecast for each period, using the following methods: 7

8 (a) 3 period Moving Average (b) Weighted Moving Average - 5 periods, you choose the weights (c) Exponential smoothing - Compute the MAD of it, and play around with the alpha to try to get the MAD as small as you can get it. (d) Naïve method (e) Plot the demands and all of the forecasts on a graph. Which method seemed to work the best? 4. Using the data for Problem 4, below, create a forecast for each period. (a) Create the forecasts using Linear Regression. What is the R 2 value? What is the MAD from your forecasts? (b) Create the forecast for each period using double exponential smoothing. Use α = 0.2, β = 0.15, and use 55 as the initial intercept, and 4 as the initial slope. What is the MAD of your forecasts? Problem 3 Problem 4 Period Demand Demand

Forecasting with Seasonality Version 1.6

Forecasting with Seasonality Version 1.6 Forecasting with Seasonality Version 1.6 Dr. Ron Tibben-Lembke Sept 3, 2006 Forecasting with seasonality and a trend is obviously more difficult than forecasting for a trend or for seasonality by itself,

More information

Chapter 10 Regression Analysis

Chapter 10 Regression Analysis Chapter 10 Regression Analysis Goal: To become familiar with how to use Excel 2007/2010 for Correlation and Regression. Instructions: You will be using CORREL, FORECAST and Regression. CORREL and FORECAST

More information

Physics 141 Plotting on a Spreadsheet

Physics 141 Plotting on a Spreadsheet Physics 141 Plotting on a Spreadsheet Version: Fall 2018 Matthew J. Moelter (edited by Jonathan Fernsler and Jodi L. Christiansen) Department of Physics California Polytechnic State University San Luis

More information

Chapter 5 Notes Page 1

Chapter 5 Notes Page 1 Chapter 5 Notes Page 1 COST BEHAVIOR When dealing with costs, it helps for you to determine what drives the cost in question. A Cost Driver (also called Cost Base) is an activity that is associated with,

More information

Marginal Costing Q.8

Marginal Costing Q.8 Marginal Costing. 2008 Q.8 Break-Even Point. Before tackling a marginal costing question, it s first of all crucial that you understand what is meant by break-even point. What this means is that a firm

More information

Multiple Regression. Dr. Tom Pierce Department of Psychology Radford University

Multiple Regression. Dr. Tom Pierce Department of Psychology Radford University Multiple Regression Dr. Tom Pierce Department of Psychology Radford University In the previous chapter we talked about regression as a technique for using a person s score on one variable to make a best

More information

How to Use Excel for Regression Analysis MtRoyal Version 2016RevA *

How to Use Excel for Regression Analysis MtRoyal Version 2016RevA * OpenStax-CNX module: m63578 1 How to Use Excel for Regression Analysis MtRoyal Version 2016RevA * Lyryx Learning Based on How to Use Excel for Regression Analysis BSTA 200 Humber College Version 2016RevA

More information

Using Excel s Analysis ToolPak Add In

Using Excel s Analysis ToolPak Add In Using Excel s Analysis ToolPak Add In Introduction This document illustrates the use of Excel s Analysis ToolPak add in for data analysis. The document is aimed at users who don t believe that Excel s

More information

Comparison of Efficient Seasonal Indexes

Comparison of Efficient Seasonal Indexes JOURNAL OF APPLIED MATHEMATICS AND DECISION SCIENCES, 8(2), 87 105 Copyright c 2004, Lawrence Erlbaum Associates, Inc. Comparison of Efficient Seasonal Indexes PETER T. ITTIG Management Science and Information

More information

Two Way ANOVA. Turkheimer PSYC 771. Page 1 Two-Way ANOVA

Two Way ANOVA. Turkheimer PSYC 771. Page 1 Two-Way ANOVA Page 1 Two Way ANOVA Two way ANOVA is conceptually like multiple regression, in that we are trying to simulateously assess the effects of more than one X variable on Y. But just as in One Way ANOVA, the

More information

Spreadsheets in Education (ejsie)

Spreadsheets in Education (ejsie) Spreadsheets in Education (ejsie) Volume 2, Issue 2 2005 Article 5 Forecasting with Excel: Suggestions for Managers Scott Nadler John F. Kros East Carolina University, nadlers@mail.ecu.edu East Carolina

More information

COORDINATING DEMAND FORECASTING AND OPERATIONAL DECISION-MAKING WITH ASYMMETRIC COSTS: THE TREND CASE

COORDINATING DEMAND FORECASTING AND OPERATIONAL DECISION-MAKING WITH ASYMMETRIC COSTS: THE TREND CASE COORDINATING DEMAND FORECASTING AND OPERATIONAL DECISION-MAKING WITH ASYMMETRIC COSTS: THE TREND CASE ABSTRACT Robert M. Saltzman, San Francisco State University This article presents two methods for coordinating

More information

Operations and Supply Chain Management Prof. G. Srinivisan Department of Management Studies Indian Institute of Technology, Madras

Operations and Supply Chain Management Prof. G. Srinivisan Department of Management Studies Indian Institute of Technology, Madras Operations and Supply Chain Management Prof. G. Srinivisan Department of Management Studies Indian Institute of Technology, Madras Module No - 1 Lecture No - 22 Integrated Model, ROL for Normal Distribution

More information

Chapter 2 - Introduction to Spreadsheet Modeling

Chapter 2 - Introduction to Spreadsheet Modeling 1. Which of the following is not one of the components of a mathematical model? a. Inputs b. Outputs c. Decision variables d. None of these options 2. Which of the following is not one of the features

More information

Getting Started with OptQuest

Getting Started with OptQuest Getting Started with OptQuest What OptQuest does Futura Apartments model example Portfolio Allocation model example Defining decision variables in Crystal Ball Running OptQuest Specifying decision variable

More information

CS130 Software Tools. Fall 2010 Regression and Excel

CS130 Software Tools. Fall 2010 Regression and Excel Software Tools Regression and Excel 1 Regression Analysis (Part 1) Regression Analysis The statistical crystal ball Regression analysis is a form of statistical analysis used for forecasting. We are going

More information

Chapter 12 Module 3. AMIS 310 Foundations of Accounting

Chapter 12 Module 3. AMIS 310 Foundations of Accounting Chapter 12, Module 3 AMIS 310: Foundations of Accounting Slide 1 CHAPTER 1 MODULE 1 AMIS 310 Foundations of Accounting Professor Marc Smith Hi everyone, welcome back. Let s continue our discussion on cost

More information

EconS Theory of the Firm

EconS Theory of the Firm EconS 305 - Theory of the Firm Eric Dunaway Washington State University eric.dunaway@wsu.edu October 5, 2015 Eric Dunaway (WSU) EconS 305 - Lecture 16 October 5, 2015 1 / 38 Introduction Theory of the

More information

KING ABDULAZIZ UNIVERSITY FACULTY OF COMPUTING & INFORMATION TECHNOLOGY DEPARTMENT OF INFORMATION SYSTEM. Lab 1- Introduction

KING ABDULAZIZ UNIVERSITY FACULTY OF COMPUTING & INFORMATION TECHNOLOGY DEPARTMENT OF INFORMATION SYSTEM. Lab 1- Introduction Lab 1- Introduction Objective: We will start with some basic concept of DSS. And also we will start today the WHAT-IF analysis technique for decision making. Activity Outcomes: What is what-if analysis

More information

1) Mo People Mo Betta

1) Mo People Mo Betta Zingerman s Guide to Good Huddling Helpful Hints and Other Interesting Insights That are Guaranteed to Improve Results and Reduce Stress NEWLY REVISED DRAFT June 22, 2003 1) Mo People Mo Betta There s

More information

Scottish Rugby Marketing Guide for Clubs

Scottish Rugby Marketing Guide for Clubs Scottish Rugby Marketing Guide for Clubs First things first, what is marketing? Here is a very basic definition: The action or business of promoting and selling products or services, including market research

More information

SPSS Guide Page 1 of 13

SPSS Guide Page 1 of 13 SPSS Guide Page 1 of 13 A Guide to SPSS for Public Affairs Students This is intended as a handy how-to guide for most of what you might want to do in SPSS. First, here is what a typical data set might

More information

FORECASTING AND DEMAND MANAGEMENT

FORECASTING AND DEMAND MANAGEMENT FORBUS JUNE 2013 EXAMINATION DATE: 7 JUNE 2013 TIME: 09H00 11H00 TOTAL: 100 MARKS DURATION: 2 HOURS PASS MARK: 40% (XN-88) FORECASTING AND DEMAND MANAGEMENT THIS EXAMINATION PAPER CONSISTS OF 3 SECTIONS:

More information

VIDEO 1: WHY ARE CONTACTS SO IMPORTANT?

VIDEO 1: WHY ARE CONTACTS SO IMPORTANT? VIDEO 1: WHY ARE CONTACTS SO IMPORTANT? Hey, it s Kyle from HubSpot Academy. Let s talk about contacts. Contacts are the most fundamental part of any CRM. They re your prospects and customers--the living,

More information

HIMSS ME-PI Community. Quick Tour. Sigma Score Calculation Worksheet INSTRUCTIONS

HIMSS ME-PI Community. Quick Tour. Sigma Score Calculation Worksheet INSTRUCTIONS HIMSS ME-PI Community Sigma Score Calculation Worksheet INSTRUCTIONS Quick Tour Let s start with a quick tour of the Excel spreadsheet. There are six worksheets in the spreadsheet. Sigma Score (Snapshot)

More information

USING PR MEASUREMENT TO BEAT YOUR COMPETITORS: A HOW-TO GUIDE

USING PR MEASUREMENT TO BEAT YOUR COMPETITORS: A HOW-TO GUIDE USING PR MEASUREMENT TO BEAT YOUR COMPETITORS: A HOW-TO GUIDE Dear Reader, Thank you for downloading this how-to guide: Using PR Measurement to Beat Your Competitors. I hope you will find it to be a valuable

More information

CHAPTER 4, SECTION 1

CHAPTER 4, SECTION 1 DAILY LECTURE CHAPTER 4, SECTION 1 Understanding Demand What Is Demand? Demand is the willingness and ability of buyers to purchase different quantities of a good, at different prices, during a specific

More information

The slightest perception of something negative happening can affect an employee s emotional state.

The slightest perception of something negative happening can affect an employee s emotional state. Employee feedback is the core of personal and professional growth. Feedback can help an employee get better at what they do, and surprisingly employees crave feedback. Most managers don t provide enough

More information

YouTube Marketing Mistakes Top 6 Most Silly Blunders!

YouTube Marketing Mistakes Top 6 Most Silly Blunders! Top 6 Most Silly Blunders! Brought to you by EverythingRebrandable.com Table of Contents Table of Contents... 2 Introduction... 3 Blunder #1: Expecting Miracles... 4 Blunder #2: Creating Commercials...

More information

Guest Concepts, Inc. (702)

Guest Concepts, Inc. (702) Guest Concepts, Inc. (702) 998-4800 Welcome to our tutorial on the Lease End Renewal Process The process you will see here is extremely effective and has been used successfully with thousands of renewal

More information

Make sure to listen to this audio: as you go through this handout, to get maximum value.

Make sure to listen to this audio:  as you go through this handout, to get maximum value. Seven Steps to Fearless Marketing The Keys to Attracting more Clients with Less Struggle and Effort By Robert Middleton Action Plan Marketing 1 Make sure to listen to this audio: www.marketingball.com/tc/ftc.mp3

More information

1. III. COST BEHAVIOR

1. III. COST BEHAVIOR Chapter 3 Cost Behavior Page 1 1. III. COST BEHAVIOR In this chapter we discuss the manner in which costs behave. We will discuss fixed and variable costs. As part of this discussion, we will discuss learning

More information

Gush vs. Bore: A Look at the Statistics of Sampling

Gush vs. Bore: A Look at the Statistics of Sampling Gush vs. Bore: A Look at the Statistics of Sampling Open the Fathom file Random_Samples.ftm. Imagine that in a nation somewhere nearby, a presidential election will soon be held with two candidates named

More information

Statistics: Data Analysis and Presentation. Fr Clinic II

Statistics: Data Analysis and Presentation. Fr Clinic II Statistics: Data Analysis and Presentation Fr Clinic II Overview Tables and Graphs Populations and Samples Mean, Median, and Standard Deviation Standard Error & 95% Confidence Interval (CI) Error Bars

More information

Introduction to Water Engineering

Introduction to Water Engineering Slide 1 Introduction to Water Engineering This is a walkthrough of the flow measurement prac Practical 2 Flow measurement Dr James Ward Lecturer School of Natural and Built Environments Slide 2 Copyright

More information

WORKING WITH TEST DOCUMENTATION

WORKING WITH TEST DOCUMENTATION WORKING WITH TEST DOCUMENTATION CONTENTS II. III. Planning Your Test Effort 2. The Goal of Test Planning 3. Test Planning Topics: b) High Level Expectations c) People, Places and Things d) Definitions

More information

Let us introduce you to Course Match

Let us introduce you to Course Match 1 Let us introduce you to Course Match 2 In order to understand course match you need to know three terms. Utilities We re using utility here as an economic term. If you aren t already you ll be very familiar

More information

Also, big thank you to fellow TA Enoch Hill for edits and some additions to the guide.

Also, big thank you to fellow TA Enoch Hill for edits and some additions to the guide. Hello class, once again, here s an unofficial guide to the sample midterm. Please use this with caution, since 1) I am prone to error so incorrect explanations are entirely possible and 2) you should do

More information

Correlation and Simple. Linear Regression. Scenario. Defining Correlation

Correlation and Simple. Linear Regression. Scenario. Defining Correlation Linear Regression Scenario Let s imagine that we work in a real estate business and we re attempting to understand whether there s any association between the square footage of a house and it s final selling

More information

The Program Management Office

The Program Management Office The Program Management Office Sabin Srivannaboon and Dragan Z. Milosevic Trust Corp is a specialty instrument company in the U.S. cell phone industry. Six years ago, Trust Corp introduced a breakthrough

More information

Managerial Accounting Prof. Dr. Varadraj Bapat Department of School of Management Indian Institute of Technology, Bombay

Managerial Accounting Prof. Dr. Varadraj Bapat Department of School of Management Indian Institute of Technology, Bombay Managerial Accounting Prof. Dr. Varadraj Bapat Department of School of Management Indian Institute of Technology, Bombay Lecture - 32 Standard Costing, Mix, Yield, Sales and Fixed Overhead Variances The

More information

By: Aderatis Marketing

By: Aderatis Marketing By: Aderatis Marketing 01803 362 026 enquiries@aderatis.com Google AdWords for Small Businesses: Mistakes to Avoid Not getting much luck from your AdWords campaign and ready to admit defeat? Don t feel

More information

Lecture-16. Data Tables, Scenarios & Goal Seek in Excel 2007

Lecture-16. Data Tables, Scenarios & Goal Seek in Excel 2007 Lecture-16 Data Tables, Scenarios & Goal Seek in Excel 2007 In Excel, a Data Table is a way to see different results by altering an input cell in your formula. As an example, we're going to alert the interest

More information

introduction by Stacey Barr

introduction by Stacey Barr Are you underestimating the performance measurement most people only see the tip of the performance measurement iceberg - and that's why their measures fail by Stacey Barr introduction Models like the

More information

INVENTORY CURRENT VALUE

INVENTORY CURRENT VALUE INVENTORY CURRENT VALUE It should be easy to calculate the Inventory Current Value. You take how many units you have left in stock and multiply them by how much they cost, and that s how much your inventory

More information

SCENARIO: We are interested in studying the relationship between the amount of corruption in a country and the quality of their economy.

SCENARIO: We are interested in studying the relationship between the amount of corruption in a country and the quality of their economy. Introduction to SPSS Center for Teaching, Research and Learning Research Support Group American University, Washington, D.C. Hurst Hall 203 rsg@american.edu (202) 885-3862 This workshop is designed to

More information

Cash Flow if you re out of money, you re out of business.

Cash Flow if you re out of money, you re out of business. Cash Flow if you re out of money, you re out of business. Thanks for downloading this Cash Flow Cheat Sheet from SmartBusinessPlans.com.au Cash Flow is probably the most important aspect of keeping a business

More information

A01 325: #1 VERSION 2 SOLUTIONS

A01 325: #1 VERSION 2 SOLUTIONS Economics 325: Public Economics Section A01 University of Victoria Midterm Examination #1 VERSION 2 SOLUTIONS Fall 2012 Instructor: Martin Farnham Midterm Exam #1 Section 1: Multiple Choice Each question

More information

Innovative Marketing Ideas That Work

Innovative Marketing Ideas That Work INNOVATIVE MARKETING IDEAS THAT WORK Legal Disclaimer: While all attempts have been made to verify information provided in this publication, neither the Author nor the Publisher assumes any responsibility

More information

Learn Excel 2016 Advanced

Learn Excel 2016 Advanced Learn Excel 2016 Advanced Table of Contents Chapter 1 Introduction to Excel 2016 Advanced Course Prerequisites of the Course and Version of Excel...6 Course Structure...10 Chapter 2 Functions Functions

More information

Cut Your PPC Campaigns Down To Size

Cut Your PPC Campaigns Down To Size Cut Your PPC Campaigns Down To Size What if you could learn to trim your PPC campaigns down to a more manageable and efficient size? While simultaneously raising your conversion rates? Well, guess what?

More information

Session 31, Statistical Techniques for Fund Mapping and Other Applications. Moderator: Douglas L. Robbins, FSA, MAAA. Presenter:

Session 31, Statistical Techniques for Fund Mapping and Other Applications. Moderator: Douglas L. Robbins, FSA, MAAA. Presenter: Session 31, Statistical Techniques for Fund Mapping and Other Applications Moderator: Douglas L. Robbins, FSA, MAAA Presenter: Douglas L. Robbins, FSA, MAAA Statistical Techniques for Fund Mapping and

More information

ENGG1811: Data Analysis using Excel 1

ENGG1811: Data Analysis using Excel 1 ENGG1811 Computing for Engineers Data Analysis using Excel (weeks 2 and 3) Data Analysis Histogram Descriptive Statistics Correlation Solving Equations Matrix Calculations Finding Optimum Solutions Financial

More information

Drive Predictability with Visual Studio Team System 2008

Drive Predictability with Visual Studio Team System 2008 Drive Predictability with Visual Studio Team System 2008 White Paper May 2008 For the latest information, please see www.microsoft.com/teamsystem This is a preliminary document and may be changed substantially

More information

3 Ways to Improve Your Targeted Marketing with Analytics

3 Ways to Improve Your Targeted Marketing with Analytics 3 Ways to Improve Your Targeted Marketing with Analytics Introduction Targeted marketing is a simple concept, but a key element in a marketing strategy. The goal is to identify the potential customers

More information

Spontaneous Cooperation under Anarchy

Spontaneous Cooperation under Anarchy Spontaneous Cooperation under Anarchy 1 International Cooperation Cooperation, as you should recall, is part and parcel with our distributive games (the mixed motive games) between pure coordination and

More information

7 TIPS TO HELP YOU ADOPT CONTINUAL SERVICE IMPROVEMENT, BY STUART RANCE 1

7 TIPS TO HELP YOU ADOPT CONTINUAL SERVICE IMPROVEMENT, BY STUART RANCE 1 7 TIPS TO HELP YOU ADOPT CONTINUAL SERVICE IMPROVEMENT, BY STUART RANCE 1 CONTINUAL SERVICE IMPROVEMENT Continual Service Improvement (CSI) is one of the most important concepts in ITIL, but very few IT

More information

We all know that what you measure gets done. But what if you are. measuring the wrong things and doing the wrong things as a result?

We all know that what you measure gets done. But what if you are. measuring the wrong things and doing the wrong things as a result? We all know that what you measure gets done. But what if you are measuring the wrong things and doing the wrong things as a result? Michaela Rebbeck talks to Alex Knight about operational measures that

More information

Important Hotel Contract Clauses. Think back to the first contracts you negotiated, did they have everything your group or organization

Important Hotel Contract Clauses. Think back to the first contracts you negotiated, did they have everything your group or organization Important Hotel Contract Clauses Think back to the first contracts you negotiated, did they have everything your group or organization wanted in them? Did you feel you were getting the best offer on the

More information

THE NEGOTIATION TAPES. Joshua Stein 1

THE NEGOTIATION TAPES. Joshua Stein 1 THE NEGOTIATION TAPES Joshua Stein 1 If you negotiate commercial real estate transactions loans, leases, acquisitions, sales, joint ventures, whatever you hear certain arguments across the table again

More information

Contents. Acknowledgments Preface What You ll Find in This Book How to Use This Book

Contents. Acknowledgments Preface What You ll Find in This Book How to Use This Book Contents Acknowledgments Preface What You ll Find in This Book How to Use This Book vii ix x xi Chapter 1 Introduction 1 So, What Is It? 4 Why Does It Matter? 5 How You Can Use It 9 Chapter 2 The Business

More information

AUREU$ The Future of Financial Forecasting Tyler Brezler Why are projections important and how do they differ from budgets?

AUREU$ The Future of Financial Forecasting Tyler Brezler Why are projections important and how do they differ from budgets? AUREU$ The Future of Financial Forecasting Tyler Brezler tbrezler@mit.edu Why are projections important and how do they differ from budgets? Budget = Plan Projections = Reality Projections allow us to

More information

Linda Carrington, Wessex Commercial Solutions

Linda Carrington, Wessex Commercial Solutions Linda Carrington, Wessex Commercial Solutions Linda Carrington has worked with ISO 9001 accredited systems throughout her career, in businesses as diverse as oil and gas, construction, defence and shipping.

More information

1 Mechanism Design (incentive-aware algorithms, inverse game theory)

1 Mechanism Design (incentive-aware algorithms, inverse game theory) 15-451/651: Design & Analysis of Algorithms April 6, 2017 Lecture #20 last changed: April 5, 2017 1 Mechanism Design (incentive-aware algorithms, inverse game theory) How to give away a printer The Vickrey

More information

Managerial Accounting Prof. Dr. Varadraj Bapat Department of School of Management Indian Institute of Technology, Bombay

Managerial Accounting Prof. Dr. Varadraj Bapat Department of School of Management Indian Institute of Technology, Bombay Managerial Accounting Prof. Dr. Varadraj Bapat Department of School of Management Indian Institute of Technology, Bombay Lecture - 31 Standard Costing - Material, Labor and Overhead Variances Dear students,

More information

Turning Feedback Into Change

Turning Feedback Into Change White Paper FEEDBACK Turning Feedback Into Change The key to improving personal success Thought leader, Joe Folkman describes a model consisting of three elements to help accept feedback from others and

More information

30 Course Bundle: Year 1. Vado Course Bundle. Year 1

30 Course Bundle: Year 1. Vado Course Bundle. Year 1 30 : Year 1 Vado s 30 Year 1 Vado 1. Employee Career Aspirations Coaching Career Development 2. Communicate Clear and Concise Messages Communication Skills for Managers 3. Conflict Management Expectations

More information

ABM PLAYBOOK TESTING WITH ABM ANALYTICS: 4 STEPS TO SEE FUNNEL PERFORMANCE FOR ANYTHING

ABM PLAYBOOK TESTING WITH ABM ANALYTICS: 4 STEPS TO SEE FUNNEL PERFORMANCE FOR ANYTHING ABM PLAYBOOK TESTING WITH ABM ANALYTICS: 4 STEPS TO SEE FUNNEL PERFORMANCE FOR ANYTHING ABM Analytics by Demandbase is a great tool for evaluating how your target account list is performing across the

More information

Campaigns - 5 things you need to know. 27 Signs You Need A New Agency. What the AdWords Update Means for Your Paid Search Strategy

Campaigns - 5 things you need to know. 27 Signs You Need A New Agency. What the AdWords Update Means for Your Paid Search Strategy 27 Signs You Need Google s Enhanced A New Agency Campaigns - 5 things you need to know What the AdWords Update Means for Your Paid Search Strategy Does Your Agency Know What They re Doing? Working with

More information

= = Intro to Statistics for the Social Sciences. Name: Lab Session: Spring, 2015, Dr. Suzanne Delaney

= = Intro to Statistics for the Social Sciences. Name: Lab Session: Spring, 2015, Dr. Suzanne Delaney Name: Intro to Statistics for the Social Sciences Lab Session: Spring, 2015, Dr. Suzanne Delaney CID Number: _ Homework #22 You have been hired as a statistical consultant by Donald who is a used car dealer

More information

Operations and Supply Chain Management Prof. G. Srinivasan Department of Management Studies Indian Institute of Technology, Madras

Operations and Supply Chain Management Prof. G. Srinivasan Department of Management Studies Indian Institute of Technology, Madras Operations and Supply Chain Management Prof. G. Srinivasan Department of Management Studies Indian Institute of Technology, Madras Module - 01 Lecture - 08 Aggregate Planning, Quadratic Model, Demand and

More information

introduction by Stacey Barr

introduction by Stacey Barr The business questions your performance measures should you can't make informed decisions if the information you're using can't your questions by Stacey Barr introduction The report design working group

More information

Three steps to joining and participating in unions

Three steps to joining and participating in unions Anger hope action Three steps to joining and participating in unions 1. Anger The first condition for joining or becoming involved in the union is anger. Many people are uncomfortable about expressing

More information

Session 7. Introduction to important statistical techniques for competitiveness analysis example and interpretations

Session 7. Introduction to important statistical techniques for competitiveness analysis example and interpretations ARTNeT Greater Mekong Sub-region (GMS) initiative Session 7 Introduction to important statistical techniques for competitiveness analysis example and interpretations ARTNeT Consultant Witada Anukoonwattaka,

More information

AP Stats ~ Lesson 8A: Confidence Intervals OBJECTIVES:

AP Stats ~ Lesson 8A: Confidence Intervals OBJECTIVES: AP Stats ~ Lesson 8A: Confidence Intervals OBJECTIVES: DETERMINE the point estimate and margin of error from a confidence interval. INTERPRET a confidence interval in context. INTERPRET a confidence level

More information

CALCULATING THE ROI OF LEAD NURTURING

CALCULATING THE ROI OF LEAD NURTURING Definitive Guide to Lead Nurturing Lead Calculating the ROI of Lead Nurturing In Part One of the Definitive Guide to Lead Nurturing, we learned the value of lead nurturing done well, and in Parts Two and

More information

1 Mechanism Design (incentive-aware algorithms, inverse game theory)

1 Mechanism Design (incentive-aware algorithms, inverse game theory) TTIC 31010 / CMSC 37000 - Algorithms March 12, 2019 Lecture #17 last changed: March 10, 2019 1 Mechanism Design (incentive-aware algorithms, inverse game theory) How to give away a printer The Vickrey

More information

Sawtooth Software. Sample Size Issues for Conjoint Analysis Studies RESEARCH PAPER SERIES. Bryan Orme, Sawtooth Software, Inc.

Sawtooth Software. Sample Size Issues for Conjoint Analysis Studies RESEARCH PAPER SERIES. Bryan Orme, Sawtooth Software, Inc. Sawtooth Software RESEARCH PAPER SERIES Sample Size Issues for Conjoint Analysis Studies Bryan Orme, Sawtooth Software, Inc. 1998 Copyright 1998-2001, Sawtooth Software, Inc. 530 W. Fir St. Sequim, WA

More information

FIVE WAYS SALES PERFORMANCE: TO IMPROVE OUTBOUND. Best practices to increase your pipeline

FIVE WAYS SALES PERFORMANCE: TO IMPROVE OUTBOUND. Best practices to increase your pipeline FIVE WAYS TO IMPROVE OUTBOUND SALES PERFORMANCE: Best practices to increase your pipeline TABLE OF CONTENTS Intro: A New Way of Playing the Numbers Game One: Find the decision maker all of them Two: Get

More information

Using SPSS for Linear Regression

Using SPSS for Linear Regression Using SPSS for Linear Regression This tutorial will show you how to use SPSS version 12.0 to perform linear regression. You will use SPSS to determine the linear regression equation. This tutorial assumes

More information

More than Mobile Forms Halliburton s Implementation of an End to End Solution

More than Mobile Forms Halliburton s Implementation of an End to End Solution CUSTOMER INTERVIEW More than Mobile Forms Halliburton s Implementation of an End to End Solution Hosted by: Mark Scott, VP Marketing, ProntoForms Yamina Hibbard, Global Asset Manager, Halliburton Mike

More information

In Chapter 3, we discussed the two broad classes of quantitative. Quantitative Forecasting Methods Using Time Series Data CHAPTER 5

In Chapter 3, we discussed the two broad classes of quantitative. Quantitative Forecasting Methods Using Time Series Data CHAPTER 5 CHAPTER 5 Quantitative Forecasting Methods Using Time Series Data In Chapter 3, we discussed the two broad classes of quantitative methods, time series methods and causal methods. Time series methods are

More information

WORKBOOK BROUGHT TO YOU BY JUSTIN BAEDER

WORKBOOK BROUGHT TO YOU BY JUSTIN BAEDER WORKBOOK BROUGHT TO YOU BY JUSTIN BAEDER PART 1 NOTES FROM TODAY S VIDEO Initiatives have a life cycle. Initiatives don t ramp up to full implementation and stay there forever. Some initiatives are event

More information

Date Advances Declines Net Advance AD Line

Date Advances Declines Net Advance AD Line AUTHOR The subjective works of WD Gann from the early part of the twentieth century are not normally associated with one of the modern pillars of twenty first century Technical Analysis, Market Breadth.

More information

Welcome to the course, Evaluating the Measurement System. The Measurement System is all the elements that make up the use of a particular gage.

Welcome to the course, Evaluating the Measurement System. The Measurement System is all the elements that make up the use of a particular gage. Welcome to the course, Evaluating the Measurement System. The Measurement System is all the elements that make up the use of a particular gage. Parts, people, the environment, and the gage itself are all

More information

Untangling Correlated Predictors with Principle Components

Untangling Correlated Predictors with Principle Components Untangling Correlated Predictors with Principle Components David R. Roberts, Marriott International, Potomac MD Introduction: Often when building a mathematical model, one can encounter predictor variables

More information

HOW TO GET PEOPLE TO BUY YOUR PRODUCT OR SERVICE USING THE 7 NEW RULES OF SELLING IN 2010

HOW TO GET PEOPLE TO BUY YOUR PRODUCT OR SERVICE USING THE 7 NEW RULES OF SELLING IN 2010 HOW TO GET PEOPLE TO BUY YOUR PRODUCT OR SERVICE USING THE 7 NEW RULES OF SELLING IN 2010 If you have a product or service and want to get someone to buy it, then read this article carefully. The things

More information

Mid-Term Examination. Suggested Solution to ECLT 5940 Supply Chain Management. Time: 7:00 9:45 PM

Mid-Term Examination. Suggested Solution to ECLT 5940 Supply Chain Management. Time: 7:00 9:45 PM Mid-Term Examination Suggested Solution to ECLT 5940 Supply Chain Management Time: 7:00 9:45 PM 1. This is an open-book/note examination. 2. One cannot lend books/notes to others. 3. There are totally

More information

Business Cycle Theory Revised: March 25, 2009

Business Cycle Theory Revised: March 25, 2009 The Global Economy Class Notes Business Cycle Theory Revised: March 25, 2009 We ve seen that economic fluctuations follow regular patterns and that these patterns can be used to forecast the future. For

More information

When Did You Last Grow Profits by 61%? Here s 5 Ways to Do So Today

When Did You Last Grow Profits by 61%? Here s 5 Ways to Do So Today When Did You Last Grow Profits by 61%? Here s 5 Ways to Do So Today actioncoach.com Introduction Is there a secret way to grow your profits? For years, ActionCOACH founder Brad Sugars and his ActionCOACH

More information

THE ZEN OF A CONNECTED BUSINESS. Why it makes sense to move your financial information to the cloud

THE ZEN OF A CONNECTED BUSINESS. Why it makes sense to move your financial information to the cloud THE ZEN OF A CONNECTED BUSINESS Why it makes sense to move your financial information to the cloud Introduction Every day, millions of business people use different products and apps to share financial

More information

Emissions trading/tradable pollution permits

Emissions trading/tradable pollution permits Emissions trading/tradable pollution permits The objective is to get students to understand why an trading scheme can be an effective way of, superior in some ways to carbon taxes or quotas. It is important

More information

How To Figure Out What a House Should Sell For

How To Figure Out What a House Should Sell For How To Figure Out What a House Should Sell For How We Decided The Price of Our Last 5,000 Listings Notes from the class given by Russell Shaw on June 20, 2014. In the private Facebook group Arizona Real

More information

Homework 1: Basic modeling, analysis and spreadsheet engineering

Homework 1: Basic modeling, analysis and spreadsheet engineering Homework 1: Basic modeling, analysis and spreadsheet engineering This first assignment is designed to give you a chance to build some relatively simple spreadsheet based models. Use good spreadsheet model

More information

Chapter 8 Script. Welcome to Chapter 8, Are Your Curves Normal? Probability and Why It Counts.

Chapter 8 Script. Welcome to Chapter 8, Are Your Curves Normal? Probability and Why It Counts. Chapter 8 Script Slide 1 Are Your Curves Normal? Probability and Why It Counts Hi Jed Utsinger again. Welcome to Chapter 8, Are Your Curves Normal? Probability and Why It Counts. Now, I don t want any

More information

Chapter 3 Project Management

Chapter 3 Project Management Chapter 3 Project Management Overview What you will learn this chapter Executive Support Project Manager Process Tracking (PERT, CPM, Gantt) Summary of the chapter What you learned in this chapter Assignment

More information

1 Mechanism Design (incentive-aware algorithms, inverse game theory)

1 Mechanism Design (incentive-aware algorithms, inverse game theory) 15-451/651: Design & Analysis of Algorithms April 10, 2018 Lecture #21 last changed: April 8, 2018 1 Mechanism Design (incentive-aware algorithms, inverse game theory) How to give away a printer The Vickrey

More information

Bioreactors Prof G. K. Suraishkumar Department of Biotechnology Indian Institute of Technology, Madras. Lecture - 02 Sterilization

Bioreactors Prof G. K. Suraishkumar Department of Biotechnology Indian Institute of Technology, Madras. Lecture - 02 Sterilization Bioreactors Prof G. K. Suraishkumar Department of Biotechnology Indian Institute of Technology, Madras Lecture - 02 Sterilization Welcome, to this second lecture on Bioreactors. This is a mooc on Bioreactors.

More information