Managerial Decision Making and Problem Solving Computer Lab Notes 1.

Slides:



Advertisements
Similar presentations
Lesson 3 Working with Formulas.
Advertisements

Intermediate Formulas & Functions Instructor: Rachel Baltus.
Functions S S T : S P R E A D S H E E T S SST 5 Spreadsheet 5 Function.
Excel Features That Would Help You Prepare Class Result.
FORMULAS & FUNCTIONS EXCEL 2. Excel Input – a collection of informational data typed into the spreadsheet Output – worksheet results Information to be.
FORMULAS & FUNCTIONS EXCEL. Input A collection of information Data typed into the spreadsheet Output Worksheet Results.
Microsoft Excel 2010 Test.
Slides 2c: Using Spreadsheets for Modeling - Excel Concepts (Updated 1/19/2005) There are several reasons for the popularity of spreadsheets: –Data are.
A. Ruiz Méthodes d ’aide à la décision en RO Using Spreadsheets in Management Science Models Spreadsheets have become a powerful tool in management.
Excel – Study Guide #2.
Spreadsheet Review Computer Systems Test 50 Points: T/F; MC; Fill in; Loan Am.
Microsoft Office XP Microsoft Excel
EART20170 Computing, Data Analysis & Communication skills Lecturer: Dr Paul Connolly (F18 – Sackville Building) 2. Computing.
Excel Objects, User Interface, and Data Entry. ◦ Application Window  Title Bar  Menu Bar  Toolbars  Status Bar  Worksheet Window  Worksheet Input.
Basic Spreadsheet Functions Objective Functions are predefined formulas that perform calculations by using specific values, called arguments, in.
Decision and Risk Analysis Financial Modelling & Risk Analysis II Kiriakos Vlahos Spring 2000.
Spreadsheet Demonstration
BASIC FUNCTIONS OF EXCEL. Addition The formula for addition is: =SUM( insert cells desired to sum up ) This returns the sum of the selected cells.
cell (letter-number) Column (letters) Row (numbers) workbook = collection of worksheets.
cell (letter- number) Column (letters) Row (numbers) workbook = collection of worksheets.
Copyright 2003, Paradigm Publishing Inc. CHAPTER 3 BACKNEXTEND 3-1 LINKS TO OBJECTIVES AutoSum Button Mathematical Operators Mathematical Operators Formula.
EGR 105 Foundations of Engineering I Session 3 Excel – Basics through Graphing Fall 2008.
General Purpose Packages Spreadsheets. What is a Spreadsheet? A Spreadsheet is a computer program used mainly for recording mathematical data such as.
1CP102_module 3: spreadsheet2 More features in Excel Selection: a cell, a range, multiple ranges Name a range: to give name to a selected range or multiple.
Last Week: Excel 101 with Prof. Bliley: Workbooks, worksheets, rows, columns Cells: Text, Value, Formulas Formulas, Ranges OK? Survive Alive? Questions?
Common formulas An Excel formula always begins with an equal sign (=). Create a formula by combining numbers, cell references, arithmetic operators, and/or.
IENG 423 Design of Decision Support Systems Modeling with Excel Excel Basics Cell references, Formulas, Functions and Formatting.
COMPLETE f o u r t h e d i t i o n BUSINESS STATISTICS Aczel Irwin/McGraw-Hill © The McGraw-Hill Companies, Inc., l Using Statistics l The Normal.
 Computer application  Simulates a paper work sheet  Contain cells  Cell: intersection of a row and a column.
Introduction to Spreadsheets Program: Excel. Starting Excel Spreadsheets Spreadsheet –A grid of rows and columns used to make calculations. A spreadsheet’s.
1 Exercise using Excel (see intro to Excel at end) 1. Using Excel’s rand() function, generate a column of 100 random numbers in the range -1 to +1. Plot.
CIS100 Test Review REACH Computer Resource Center © 2011 REACH-CRC. All Rights Reserved.REACH.
Recap Script M-file Editor/Debugger Window Cell Mode Chapter 3 “Built in MATLAB Function” Using Built-in Functions Using the HELP Feature Window HELP.
Numeric and Functional. A cell is the intersection of a row and column Each cell in the spreadsheet has a name – The column-name followed by the row-name.
TYPES OF INFORMATION IN EXCEL Types of information can be typed in a cell o text o numbers o formulas o functions Text is also known as labels o Aligns.
Histograms: Summarizing Data 1. SUMMARIZING DATA Raw data, such as company records, often contains a wealth of information that would be of use in making.
Continuous Random Variables Lecture 25 Section Mon, Feb 28, 2005.
Spreadsheets, Surveys, And Graphs What is a spreadsheet?
Introduction to the Essentials of Excel COMP 066.
CIS100 Test Review REACH- CRC © 2011 REACH-CRC. All Rights Reserved.Spring 2011.
Working with Formulas and Functions
PERFORMING CALCULATIONS Microsoft Excel. Excel Formulas A formula is a set of mathematical instructions that can be used in Excel to perform calculations.
Copyright © 2008 Pearson Prentice Hall. All rights reserved. 11 Copyright © 2008 Prentice-Hall. All rights reserved. Committed to Shaping the Next Generation.
  Relative Cell Reference : automatically change when copied  Ex. Write a formula in C6: A6 + B6 = C6  Excel will use the above cell to copy for formattin.
Components of Spreadsheets Computer Applications 1 Obj. 4.01: Understand spreadsheets used in business.
Guide to Using Excel 2007 For Basic Statistical Applications To Accompany Business Statistics: A Decision Making Approach, 8th Ed. Chapter 13: Goodness-of-Fit.
REACH- CRC © 2011 REACH-CRC. All Rights Reserved.Fall 2011 © 2011 REACH-CRC. All Rights Reserved.
Working with Formulas and Functions Lesson 5 Part 1 1.
Spreadsheet Calculations Formulas & Functions Computer Applications I.
EXCEL Study Guide #2 Spreadsheet Terms  Input Collection of information – the data to be typed into the spreadsheet.  Output Worksheet results.
Chapter 1 Introduction.
Microsoft Excel.
The Basics of Formulas & Functions
Numeric and Functional
Understanding Spreadsheets
Excel Formulas & Functions.
MICROSOFT WORD.
Excel 2013 Formulas & Functions.
Working with Formulas and Functions
Excel 2013 Formulas & Functions.
8.01 Spreadsheets and Components of Spreadsheets
4.01 Spreadsheet Formulas & Functions
Excel 2013 Formulas & Functions.
4.01 Spreadsheet Formulas & Functions
Introduction to Spreadsheets
Mathematical operators
Understanding Spreadsheets
Introduction to Spreadsheet Terminology
Directions: Carefully read each of the following multiple-choice items and the four possible answers. Select the correct response and mark the letter.
Mathematical Formulas and Excel
Presentation transcript:

Managerial Decision Making and Problem Solving Computer Lab Notes 1

2 Basic Excel functions and operators Arithmetic Operations – Addition of cells A1and B1: – Subtracting cell B1 from A1: – Multiplication of cell A1 by B1: – Division of cell A1 by B1: – Cell A1xraised to the power in cell B1: = A1 + B1 = A1 - B1 = A1 * B1 = A1 / B1 = A1^ B1

3 Relative and absolute addresses – All row and column references are considered relative unless preceded by a “$” sign – When copied, ‘relative addresses’ change relative to the original cell position. Example: Cell E5 Cell G9 = A1+B$3+$C4+$D$6 = C5+D$3+$C8+$D$6 Basic Excel functions and operators

4 Arithmetic functions – Sum=SUM(A1:A3) Returns the sum A1+A2+A3 – Average=Average(A1:A3) Returns the arithmetic average of cells A1, A2, A3 – SUMPRODUCT=SUMPRODUCT(A1:A3,B1:B3) Returns the sum of products A1  B1+A2  B2+A3  B3 – ABS=ABS(A3) Returns the absolute value of the entry in cell A3. Basic Excel functions and operators

5 Arithmetic functions – continued – SQRT=SQRT(A3) Returns  A3 – MAX=MAX(A1:A9) Returns the Maximum of the entries in cells A1 through A9. – MIN=MIN(A1:A9) Returns the Minimum of the entries in cells A1 through A9. Basic Excel functions and operators

6 Statistical functions – RAND()=RAND() Generate a random number between 0 and 1 from a uniform distribution. – Probabilities and variable values under the normal distribution NORMDISTNORMINV =NORMDIST(25,20,3,TRUE)=NORMINV(.55,20,3) Returns P(X<25) when  = 20Returns x 0,, such that P(X<x 0 )=.55 and  = 3 when  = 20 and  = 3 NORMSDISTNORMSMINV =NORMSDIST(1.78)=NORMSINV(.55) Returns P(Z<1.78)Returns z 0, such that P(Z<z 0 )=.55 Basic Excel functions and operators

7 Statistical functions – Probabilities and variable values under the t- distribution TDISTTINV =TDIST(1.5,12,1)=TINV(.05,15) Returns P(t>1.5) when =12Returns t 0,, such that P(t t 0 )=.025 when =15. Note: =TDIST(1.5,12,2) returns P(t 1.5) when =12. Basic Excel functions and operators

8 Statistical functions – Other probability distributions – Poisson=POISSON(7,5,TRUE) Returns P(X<7) for Poisson with = 5. Note: false returns the probability density P(X = 7) – EXPONDIST=EXPONDIST(40,1/20,TRUE) Returns P(X<40) for the exponential distribution with 1/  =20 Note: false returns the probability density f(40)=20exp(-20(40)) Basic Excel functions and operators

9 Conditional functions: – IF=IF(A4>4,B1+B2, B1 – B2) Returns B1+B2 if A4>4, and B1 – B2 if A4  – SUMIF=SUMIF(F1:F12, “>60”,G1:G12) Returns G1+G2+…+G12 only if F1+F2+…+F12>60 Basic Excel functions and operators

10 – VLOOKUP=VLOOKUP(6.6,A1:E6,4) If the values in column A of a given table [A1:E6] are sorted (in an ascending order), VLOOKUP finds the largest value in column A that is less than or equal to 6.6, identifies the row it belongs to, and returns the value in the fourth column that correspond to this row. Note: If the values in column A are not sorted, =VLOOKUP(6.6,A1:E6,4,FALSE) finds the value 6.6 in column A, identifies the row it belongs to, and returns the value in the fourth column that corresponds to this row. Basic Excel functions and operators

Using Excel Solver to Find an Optimal Solution and Analyze Results 11

Using Excel Solver to Find an Optimal Solution and Analyze Results 12

Using Excel Solver to Find an Optimal Solution and Analyze Results 13

Using Excel Solver to Find an Optimal Solution and Analyze Results 14

Using Excel Solver to Find an Optimal Solution and Analyze Results 15

16 Using Excel Solver – Optimal Solution

17 Using Excel Solver –Answer Report

18 Using Excel Solver –Sensitivity Report

19 Solver – Infeasible Model

20 Solver – Unbounded solution

21 Solver does not alert the user to the existence of alternate optimal solutions. Many times alternate optimal solutions exist when the allowable increase or allowable decrease is equal to zero. In these cases, we can find alternate optimal solutions using Solver by the following procedure: Solver – An Alternate Optimal Solution

22 Observe that for some variable X j the Allowable increase = 0, or Allowable decrease = 0. Add a constraint of the form: Objective function = Current optimal value. If Allowable increase = 0, change the objective to Maximize X j If Allowable decrease = 0, change the objective to Minimize X j Solver – An Alternate Optimal Solution