MBA Quantitative Methods PC-Exercises Introductory Examples

Size: px
Start display at page:

Download "MBA Quantitative Methods PC-Exercises Introductory Examples"

Transcription

1 MBA Quantitative Methods PC-Exercises Introductory Examples intro.xls intro_with_output.xls intro.doc For all Examples you need the file intro.xls. The file intro_with_output.xls is the file with the results of the introductory examples. In this file are the examples with propositions for a complete solution. Remarks: There is not the one and only way, there are always more ways to solve problems. Try to separate data and formulas in spreadsheets. Example 1: Production planning model for boats In this example we will get to know some basic excel-functions and principles. Calculating Profit 1. Calculate the total profit in cell B4 by summing the profit per unit multiplied by the associated production quantity. Start with the spreadsheet boat in the file intro.xls. Go to cell B4. Enter the formula =C2*C3+D2*D3 Cell A4, type Total profit As general rules: - Data should never be typed directly in a formula (separation of data and formulas). If the profit per unit changes, the formula still holds true. - Always test formulas after entering them. Test the formula: Type 1 into cell C2 total profit should be 1,200 Type 1 into cell D2 total profit should rise to 2, Calculate the total usage of materials in cells B8 to B10 by summing the required quantity per product by the associated production quantities Go to cell B8. Enter the formula =C$2*C8+D$2*D8. The $-signs before the row numbers indicate an absolute reference that allows the formula to be copied in cells B9:B10. Copy the formula: select cell B8; place the cursor over the small black square in the lower right corner of the cell, drag down to B10. Go to cell B7 and label it Used. intro.pdf Page 1

2 3. Making sure the model is scalable: You could insert a column in the worksheet for a new boat type with the insert column command, then profit and requirement data could be entered. But if you did so, all the formulas would need to be modified! It is likely to introduce errors into the model. Better: use the SUMPRODUCT-Formula. Go to cell B4. Replace the formula =C2*C3+D2*D3 by =SUMPRODUCT(C2:D2,C3:D3). same calculation but SUMPRODUCT includes automatically additional columns inserted between C and D. Go to cells B8:B10 and replace the formulas by SUMPRODUCT-formulas. Don t forget the $ signs on the arguments $C$2:$D$2 so you can copy the formula correctly. Hint: toggle the <F4> key while editing the formula to apply the $ signs to the correct arguments. 4. Feasibility Checking: The materials on hand are limited. As we experiment with various production figures, we must check that they are feasible. That is, we must not consume more raw materials than we have on hand. Use logical formulas to compare the raw materials with the materials on hand. Go to cell F8. Enter the formula =E8>=B8. This formula return the logical value TRUE, if E8 >= B8 and FALSE otherwise. Copy cell F8 to F9:F10. Enter the label Feasible in cell F7. intro.pdf Page 2

3 5. What If Analysis: Data Tables Given a spreadsheet model, you can experiment with the inputs by hand. This is known as what if analysis. Start by setting both boat production quantities to zero. Now how many sailboats can you produce? You can try different numbers. But we will apply a more analytical approach: Data Tables A data table allows you to repeatedly evaluate a particular formula within the model while systematically varying one or two input cells on which the formula depends. Set up a Data Table that calculates the total profit for all feasible combinations of production quantities of both types of boats from 0 to 150 in steps of 5 units. Data Table a. Entering the Formula that has to be evaluated for different variations of inputs. The result/formula is the total profit but only if the quantities are feasible. Go to B4. Divide the total profit by 1000 to express the profit in thousands (that will make results smaller and need less space). =SUMPRODUCT(C2:D2;C3:D3)/1000 We must only print the profit value if the production quantities are feasible, that is, if all the cells F8:F10 are TRUE in Excel: AND(F8:F10) must be TRUE. The formula that drives the table Go to cell G6. Enter a formula that returns the total profit in thousands if the combination of production quantities is feasible, otherwise, it will return blank. Enter =IF(AND(F8:F10);B4; ) Remark: Syntax of the IF-Statement: =IF(logical_test; value_if_true; value_if_false) Test the formula by changing production quantities in cells C2 and D2. b. Specifying the Quantities to Evaluate Sailboats: row 6 from column H (H6), numbers from 0 to 150 in increments of 5 Motorboats: column G from row 7 (G7), numbers from 150 to 0 in decrements of 5. Profit Formula c. Using the Data Table Command Select the entire table (G6:AL37) Go to the menue bar, choose Data > Table The Data Table dialog appears Row input: C2 (production quantity of sailboats Column Input: D2 (production quantity of motorboats) Click OK, and the entire table will fill in. intro.pdf Page 3

4 Blank cells denote infeasible combinations. This table provides a lot of information. Among other things it shows that a profit of 198,000 is possible by producing 65 sailboats and 120 motor boats. Notice that this occurs at a corner of the area of feasible production figures. Save the file in your directory. 6. Experimenting with the assumptions of the model a. Suppose the number of engines available were only 100 units. What would be the maximum profit, and for what production quantities would it occur? b. Return the number of engines back to 120. Now reduce the profit per unit of motor boats below 800 until the maximum profit occurs in multiple cells. What is the profit, and in how many cells does it appear? Continue reducing the profit per unit of motor boats. In how many cells does the optimal profit appear? intro.pdf Page 4

5 Example 2: Time Value of Money Calculations In this example we will get to know some excel-functions for time value of money calculations. We use the following xls-functions: Future value = FV(rate,nper,pmt,pv) Present value = PV(rate,nper,pmt,fv) Discount rate = RATE(nper,pmt,pv,fv) Number of periods = NPER(rate,pmt,pv,fv) where pv fv rate pmt nper = present value = future value = Interest rate (as a decimal) = regular payment (each period) = number of periods Remarks: To solve for the rate or the number of periods, you have to put a negative sign on either the pv or the fv. To solve for the pv: either put a negative sign on the fv or get a negative result. The same holds true for fv. Calculating the Future Value 1. You have 10,000 EUR to invest. You will need the money in 5 years and you expect to earn 8% per year. How much will you have in 5 years? Go to the spreadsheet Time Value of Money in the file intro.xls. Cell C4: 10,000 PV Cell C5: 5 Number of Periods Cell C6: 0.08 Rate Cell C8: =-FV(C6;C5;0;C4) Notice that there is a sign convention in the spreadsheet with positive inflows and negative outflows. A negative sign was placed before the FV formula to make the result positive. Note that this problem does not include a payment, so it was entered as 0. Calculating the Present Value 2. You need 150,000 EUR in 18 years for your daughter's education. If you can earn 6% per year, how much do you need to invest today? Go to cell C15 Cell C15: 150,000 FV Cell C16: 18 Number of Periods Cell C17: 0.06 Rate Cell C19: =-PV(C17;C16;0;C15) intro.pdf Page 5

6 Calculating the Rate 3. You have 30,000 EUR to invest and you need 45,000 EUR for a down payment and closing costs on a house. If you want to buy the house in 2 years, what rate of interest do you need to earn? Go to cell C26 Cell C26: 30,000 PV Cell C27: 45,000 FV Cell C28: 2 Number of Periods Cell C30: =-PV(C17;C16;0;C15) Note that the rate will display as a whole percent, you need to format the cell to see the decimal places. Note a negative sign was entered before the cell reference for the FV to maintain the sign convention. Calculating the Number of Periods 4. You have 15,000 EUR to invest right now and you figure you will need 25,000 EUR to buy a new car. If you can earn 9% per year, how long before you can buy the car? Go to cell C Cell C38: 15,000 PV Cell C39: 25,000 FV Cell C40: 0.09 Rate Cell C42: =-NPER(C17;C16;0;C15) intro.pdf Page 6

7 Example 3: Valuation of Cash Flows 1. Future Value of an uneven cash flow Consider the cash flows presented in the table below. What is the value of the cash flows in year 5? Assume that the interest rate is 15%. Year Cash Flow 1 1, , , , ,000 Go to the spreadsheet Valuation of Cash Flows in the file intro.xls. : Cell B5: 15% Rate Cell B6: 5 Valuation Point of Time Cells C9:C13: the cash Flows Cell B9: =$B$6-$A9 Compounding Periods Copy the formula to cells B10:B13 Cell D9: = FV($B$5,B9,0,C9) Copy the formula to cells D10:D13 Comments The negative sign before the FV formula makes the result positive. The dollar signs around B5 and B6 make the rate and time an absolute reference so that the formulas may be entered once and then copied down. The FV-formula asks for a payment between number of periods and present value, hence this is Present Value of an annuity What is the present value of 50,000 per year for 15 years if the interest rate is 7%? Assume that the payments occur at the end of the periods. Variables: Cell B21: Cell B22: 0.07 Cell B23: 15 Payment (PMT) Rate Number per periods Cell B25: = PV(B22;B23;B21) Note: The negative sign in the formula makes the result positive. You could also put a negative sign before the PMT inside the parentheses. Finding the payments You are borrowing 10,000 on a 10 month loan with an annual interest rate of 8 percent. What will your monthly payments be? Variables: Cell B32: Cell B33: 0.08/12 Cell B34: 10 Presernt Value Rate Number per periods Cell B36: = PMT(B33;B34;B32) intro.pdf Page 7

How To Use Excel To Compute Compound Interest

How To Use Excel To Compute Compound Interest Excel has several built in functions for working with compound interest and annuities. To use these functions, we ll start with a standard Excel worksheet. This worksheet contains the variables used throughout

More information

Using Basic Financial and Logical Functions

Using Basic Financial and Logical Functions LESSON 8 Using Basic Financial and Logical Functions 8.1 After completing this lesson, you will be able to: Use the PMT function to forecast loan payments. Calculate cumulative interest. Compute investment

More information

PV Tutorial Using Excel

PV Tutorial Using Excel EYK 15-3 PV Tutorial Using Excel TABLE OF CONTENTS Introduction Exercise 1: Exercise 2: Exercise 3: Exercise 4: Exercise 5: Exercise 6: Exercise 7: Exercise 8: Exercise 9: Exercise 10: Exercise 11: Exercise

More information

ROUND(cell or formula, 2)

ROUND(cell or formula, 2) There are many ways to set up an amortization table. This document shows how to set up five columns for the payment number, payment, interest, payment applied to the outstanding balance, and the outstanding

More information

EXCEL PREREQUISITES SOLVING TIME VALUE OF MONEY PROBLEMS IN EXCEL

EXCEL PREREQUISITES SOLVING TIME VALUE OF MONEY PROBLEMS IN EXCEL CHAPTER 3 Smart Excel Appendix Use the Smart Excel spreadsheets and animated tutorials at the Smart Finance section of http://www.cengage.co.uk/megginson. Appendix Contents Excel prerequisites Creating

More information

Compounding Quarterly, Monthly, and Daily

Compounding Quarterly, Monthly, and Daily 126 Compounding Quarterly, Monthly, and Daily So far, you have been compounding interest annually, which means the interest is added once per year. However, you will want to add the interest quarterly,

More information

SOME EXCEL FORMULAS AND FUNCTIONS

SOME EXCEL FORMULAS AND FUNCTIONS SOME EXCEL FORMULAS AND FUNCTIONS About calculation operators Operators specify the type of calculation that you want to perform on the elements of a formula. Microsoft Excel includes four different types

More information

6: Financial Calculations

6: Financial Calculations : Financial Calculations The Time Value of Money Growth of Money I Growth of Money II The FV Function Amortisation of a Loan Annuity Calculation Comparing Investments Worked examples Other Financial Functions

More information

Excel Functions (fx) Click the Paste Function button. In the Function Category select All. Scroll down the Function Name list And select SUM.

Excel Functions (fx) Click the Paste Function button. In the Function Category select All. Scroll down the Function Name list And select SUM. Excel Functions (fx) Excel has prewritten formulas called functions to help simplify making complicated calculations. A function takes a value or values, performs an operation, and returns a result to

More information

Calculating Loan Payments

Calculating Loan Payments IN THIS CHAPTER Calculating Loan Payments...............1 Calculating Principal Payments...........4 Working with Future Value...............7 Using the Present Value Function..........9 Calculating Interest

More information

Introduction to Excel

Introduction to Excel Introduction to Excel This material has been reprinted, with permission, from the Excel Tutorial on the TRIO program webpage of the University of South Dakota. A series of "screencast" videos covering

More information

In Section 5.3, we ll modify the worksheet shown above. This will allow us to use Excel to calculate the different amounts in the annuity formula,

In Section 5.3, we ll modify the worksheet shown above. This will allow us to use Excel to calculate the different amounts in the annuity formula, Excel has several built in functions for working with compound interest and annuities. To use these functions, we ll start with a standard Excel worksheet. This worksheet contains the variables used throughout

More information

Module 5: Interest concepts of future and present value

Module 5: Interest concepts of future and present value Page 1 of 23 Module 5: Interest concepts of future and present value Overview In this module, you learn about the fundamental concepts of interest and present and future values, as well as ordinary annuities

More information

rate nper pmt pv Interest Number of Payment Present Future Rate Periods Amount Value Value 12.00% 1 0 $100.00 $112.00

rate nper pmt pv Interest Number of Payment Present Future Rate Periods Amount Value Value 12.00% 1 0 $100.00 $112.00 In Excel language, if the initial cash flow is an inflow (positive), then the future value must be an outflow (negative). Therefore you must add a negative sign before the FV (and PV) function. The inputs

More information

How To Analyze Data In Excel 2003 With A Powerpoint 3.5

How To Analyze Data In Excel 2003 With A Powerpoint 3.5 Microsoft Excel 2003 Data Analysis Larry F. Vint, Ph.D lvint@niu.edu 815-753-8053 Technical Advisory Group Customer Support Services Northern Illinois University 120 Swen Parson Hall DeKalb, IL 60115 Copyright

More information

Microsoft Excel - XP Intermediate

Microsoft Excel - XP Intermediate Microsoft Excel - XP Intermediate Financial Functions Goal Seeking Variable Tables IF Statements AND & OR Functions Mathematical Operations Between Separate Sheets Mathematical Operations Between Separate

More information

JF MSISS. Excel 2010. Tutorial 4

JF MSISS. Excel 2010. Tutorial 4 JF MSISS Excel 2010 Tutorial 4 In this session you will learn how to: Using functions The IF statement Calculating net present values. 1. Building a Spreadsheet Model The standard mortgage is the annuity

More information

TIME VALUE OF MONEY. Hewlett-Packard HP-12C Calculator

TIME VALUE OF MONEY. Hewlett-Packard HP-12C Calculator SECTION 1, CHAPTER 6 TIME VALUE OF MONEY CHAPTER OUTLINE Clues, Hints, and Tips Present Value Future Value Texas Instruments BA II+ Calculator Hewlett-Packard HP-12C Calculator CLUES, HINTS, AND TIPS Present

More information

Section 4.3 4.6 DCF Calculations

Section 4.3 4.6 DCF Calculations Section 4.3 4.6 DCF Calculations Single Cash Flow Problems. Both problems involve paying (cash outflow) a present value amount on date 0 and receiving (cash inflow) a future value amount on date 5. Prob.

More information

Creating a Gradebook in Excel

Creating a Gradebook in Excel Creating a Spreadsheet Gradebook 1 Creating a Gradebook in Excel Spreadsheets are a great tool for creating gradebooks. With a little bit of work, you can create a customized gradebook that will provide

More information

Microsoft Excel Tips & Tricks

Microsoft Excel Tips & Tricks Microsoft Excel Tips & Tricks Collaborative Programs Research & Evaluation TABLE OF CONTENTS Introduction page 2 Useful Functions page 2 Getting Started with Formulas page 2 Nested Formulas page 3 Copying

More information

CALCULATOR TUTORIAL. Because most students that use Understanding Healthcare Financial Management will be conducting time

CALCULATOR TUTORIAL. Because most students that use Understanding Healthcare Financial Management will be conducting time CALCULATOR TUTORIAL INTRODUCTION Because most students that use Understanding Healthcare Financial Management will be conducting time value analyses on spreadsheets, most of the text discussion focuses

More information

MS Excel. Handout: Level 2. elearning Department. Copyright 2016 CMS e-learning Department. All Rights Reserved. Page 1 of 11

MS Excel. Handout: Level 2. elearning Department. Copyright 2016 CMS e-learning Department. All Rights Reserved. Page 1 of 11 MS Excel Handout: Level 2 elearning Department 2016 Page 1 of 11 Contents Excel Environment:... 3 To create a new blank workbook:...3 To insert text:...4 Cell addresses:...4 To save the workbook:... 5

More information

Lease Analysis Tools

Lease Analysis Tools Lease Analysis Tools 2009 ELFA Lease Accountants Conference Presenter: Bill Bosco, Pres. wbleasing101@aol.com Leasing 101 914-522-3233 Overview Math of Finance Theory Glossary of terms Common calculations

More information

UNDERSTANDING HEALTHCARE FINANCIAL MANAGEMENT, 5ed. Time Value Analysis

UNDERSTANDING HEALTHCARE FINANCIAL MANAGEMENT, 5ed. Time Value Analysis This is a sample of the instructor resources for Understanding Healthcare Financial Management, Fifth Edition, by Louis Gapenski. This sample contains the chapter models, end-of-chapter problems, and end-of-chapter

More information

MICROSOFT EXCEL 2010. Formulas, Functions, & Macros. Documented by Vincent J. Yanusauskas Computer Training Coordinator

MICROSOFT EXCEL 2010. Formulas, Functions, & Macros. Documented by Vincent J. Yanusauskas Computer Training Coordinator MICROSOFT EXCEL 2010 Formulas, Functions, & Macros Documented by Vincent J. Yanusauskas Computer Training Coordinator Introduction This handout was created to familiarize the user with the most common

More information

Almost all spreadsheet programs are based on a simple concept: the malleable matrix.

Almost all spreadsheet programs are based on a simple concept: the malleable matrix. MS EXCEL 2000 Spreadsheet Use, Formulas, Functions, References More than any other type of personal computer software, the spreadsheet has changed the way people do business. Spreadsheet software allows

More information

Module 5: Interest concepts of future and present value

Module 5: Interest concepts of future and present value file:///f /Courses/2010-11/CGA/FA2/06course/m05intro.htm Module 5: Interest concepts of future and present value Overview In this module, you learn about the fundamental concepts of interest and present

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

Chapter 5 & 6 Financial Calculator and Examples

Chapter 5 & 6 Financial Calculator and Examples Chapter 5 & 6 Financial Calculator and Examples Konan Chan Financial Management, Spring 2016 Five Factors in TVM Present value: PV Future value: FV Discount rate: r Payment: PMT Number of periods: N Get

More information

Excel s Business Tools: What-If Analysis

Excel s Business Tools: What-If Analysis Excel s Business Tools: Introduction is an important aspect of planning and managing any business. Understanding the implications of changes in the factors that influence your business is crucial when

More information

TVM Functions in EXCEL

TVM Functions in EXCEL TVM Functions in EXCEL Order of Variables = (Rate, Nper, Pmt, Pv, Fv,Type, Guess) Future Value = FV(Rate,Nper,Pmt,PV,Type) Present Value = PV(rate,nper,pmt,fv,type) No. of Periods = NPER(rate, pmt, pv,

More information

Basic Financial Calculations

Basic Financial Calculations I Corporate Finance Models Basic Financial Calculations. Overview This chapter aims to give you some finance basics and their Excel implementation. If you have had a good introductory course in finance,

More information

Basic Pivot Tables. To begin your pivot table, choose Data, Pivot Table and Pivot Chart Report. 1 of 18

Basic Pivot Tables. To begin your pivot table, choose Data, Pivot Table and Pivot Chart Report. 1 of 18 Basic Pivot Tables Pivot tables summarize data in a quick and easy way. In your job, you could use pivot tables to summarize actual expenses by fund type by object or total amounts. Make sure you do not

More information

CHAPTER 9 Time Value Analysis

CHAPTER 9 Time Value Analysis Copyright 2008 by the Foundation of the American College of Healthcare Executives 6/11/07 Version 9-1 CHAPTER 9 Time Value Analysis Future and present values Lump sums Annuities Uneven cash flow streams

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

Commonly Used Excel Formulas

Commonly Used Excel Formulas Microsoft Excel 2007 Advanced Formulas Windows XP Look Up Values in a List of Data: Commonly Used Excel Formulas Let's say you want to look up an employee's phone extension by using their badge number

More information

A User Manual for Benefit Cost Analysis Using Microsoft Excel

A User Manual for Benefit Cost Analysis Using Microsoft Excel A User Manual for Benefit Cost Analysis Using Microsoft Excel Canesio Predo National Abaca Research Center Leyte State University Baybay, Leyte, Philippines David James Ecoservices Pty Ltd NSW, Australia

More information

2015 County Auditors Institute. May 2015. Excel Workshop Tips. Working Smarter, Not Harder. by David Scott, SpeakGeek@att.net

2015 County Auditors Institute. May 2015. Excel Workshop Tips. Working Smarter, Not Harder. by David Scott, SpeakGeek@att.net 2015 County Auditors Institute May 2015 Excel Workshop Tips Working Smarter, Not Harder by David Scott, SpeakGeek@att.net Note: All examples in this workshop and this tip sheet were done using Excel 2010

More information

EXCEL SPREADSHEET MANUAL

EXCEL SPREADSHEET MANUAL EXCEL SPREADSHEET MANUAL to accompany MATHEMATICS WITH APPLICATIONS, EIGHTH EDITION and MATHEMATICS WITH APPLICATIONS, FINITE VERSION, EIGHTH EDITION LIAL HUNGERFORD Paula Grafton Young Salem College J.

More information

CS-150L Computing for Business Students Future Value of a Retirement Annuity

CS-150L Computing for Business Students Future Value of a Retirement Annuity CS-150L Computing for Business Students Future Value of a Retirement Annuity Instructor: Matthew Barrick e-mail: barrick@cs.unm.edu www.cs.unm.edu/~barrick Office: Farris Engineering Center (FEC) room

More information

Key Concepts and Skills

Key Concepts and Skills McGraw-Hill/Irwin Copyright 2014 by the McGraw-Hill Companies, Inc. All rights reserved. Key Concepts and Skills Be able to compute: The future value of an investment made today The present value of cash

More information

MODELLING. IF...THEN Function EXCEL 2007. Wherever you see this symbol, make sure you remember to save your work!

MODELLING. IF...THEN Function EXCEL 2007. Wherever you see this symbol, make sure you remember to save your work! MODELLING IF THEN IF...THEN Function EXCEL 2007 Wherever you see this symbol, make sure you remember to save your work! IF.Then Function Some functions do not calculate values but instead do logical tests

More information

The values in the TVM Solver are quantities involved in compound interest and annuities.

The values in the TVM Solver are quantities involved in compound interest and annuities. Texas Instruments Graphing Calculators have a built in app that may be used to compute quantities involved in compound interest, annuities, and amortization. For the examples below, we ll utilize the screens

More information

Using Microsoft Excel to Manage and Analyze Data: Some Tips

Using Microsoft Excel to Manage and Analyze Data: Some Tips Using Microsoft Excel to Manage and Analyze Data: Some Tips Larger, complex data management may require specialized and/or customized database software, and larger or more complex analyses may require

More information

Continue this process until you have cleared the stored memory positions that you wish to clear individually and keep those that you do not.

Continue this process until you have cleared the stored memory positions that you wish to clear individually and keep those that you do not. Texas Instruments (TI) BA II PLUS Professional The TI BA II PLUS Professional functions similarly to the TI BA II PLUS model. Any exceptions are noted here. The TI BA II PLUS Professional can perform two

More information

Accounting Building Business Skills. Interest. Interest. Paul D. Kimmel. Appendix B: Time Value of Money

Accounting Building Business Skills. Interest. Interest. Paul D. Kimmel. Appendix B: Time Value of Money Accounting Building Business Skills Paul D. Kimmel Appendix B: Time Value of Money PowerPoint presentation by Kate Wynn-Williams University of Otago, Dunedin 2003 John Wiley & Sons Australia, Ltd 1 Interest

More information

NOTE: All of the information contained in this file has been collected from the various HELP files found in Excel for each of these functions.

NOTE: All of the information contained in this file has been collected from the various HELP files found in Excel for each of these functions. NOTE: All of the information contained in this file has been collected from the various HELP files found in Excel for each of these functions. PV Returns the present value of an investment. The present

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

Key Concepts and Skills. Multiple Cash Flows Future Value Example 6.1. Chapter Outline. Multiple Cash Flows Example 2 Continued

Key Concepts and Skills. Multiple Cash Flows Future Value Example 6.1. Chapter Outline. Multiple Cash Flows Example 2 Continued 6 Calculators Discounted Cash Flow Valuation Key Concepts and Skills Be able to compute the future value of multiple cash flows Be able to compute the present value of multiple cash flows Be able to compute

More information

How To Use Excel 4.4.2.2 On A Computer Or A Computer With A Cell Phone Or Cell Phone

How To Use Excel 4.4.2.2 On A Computer Or A Computer With A Cell Phone Or Cell Phone M04_GASK8219_01_SE_C04E.qxd 6/30/10 7:53 AM Page 241 chapter 4 Excel 2010 Use Financial and Lookup Functions, Define Names, and Validate Data OUTCOMES At the end of this chapter you will be able to: PROJECT

More information

Regular Annuities: Determining Present Value

Regular Annuities: Determining Present Value 8.6 Regular Annuities: Determining Present Value GOAL Find the present value when payments or deposits are made at regular intervals. LEARN ABOUT the Math Harry has money in an account that pays 9%/a compounded

More information

What is the difference between simple and compound interest and does it really matter?

What is the difference between simple and compound interest and does it really matter? Module gtf1 Simple Versus Compound Interest What is the difference between simple and compound interest and does it really matter? There are various methods for computing interest. Do you know what the

More information

Basic Formulas in Excel. Why use cell names in formulas instead of actual numbers?

Basic Formulas in Excel. Why use cell names in formulas instead of actual numbers? Understanding formulas Basic Formulas in Excel Formulas are placed into cells whenever you want Excel to add, subtract, multiply, divide or do other mathematical calculations. The formula should be placed

More information

Chapter 1: The time value of money *

Chapter 1: The time value of money * Chapter 1: The time value of money * minor bug fix: September 9, 2003 Chapter contents Overview... 2 1.1. Future value... 3 1.2. Present value... 18 1.3. Net present value... 26 1.4. The internal rate

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

Discounted Cash Flow Valuation

Discounted Cash Flow Valuation 6 Formulas Discounted Cash Flow Valuation McGraw-Hill/Irwin Copyright 2008 by The McGraw-Hill Companies, Inc. All rights reserved. Chapter Outline Future and Present Values of Multiple Cash Flows Valuing

More information

APPLYING BENFORD'S LAW This PDF contains step-by-step instructions on how to apply Benford's law using Microsoft Excel, which is commonly used by

APPLYING BENFORD'S LAW This PDF contains step-by-step instructions on how to apply Benford's law using Microsoft Excel, which is commonly used by APPLYING BENFORD'S LAW This PDF contains step-by-step instructions on how to apply Benford's law using Microsoft Excel, which is commonly used by internal auditors around the world in their day-to-day

More information

Chapter 6. Time Value of Money Concepts. Simple Interest 6-1. Interest amount = P i n. Assume you invest $1,000 at 6% simple interest for 3 years.

Chapter 6. Time Value of Money Concepts. Simple Interest 6-1. Interest amount = P i n. Assume you invest $1,000 at 6% simple interest for 3 years. 6-1 Chapter 6 Time Value of Money Concepts 6-2 Time Value of Money Interest is the rent paid for the use of money over time. That s right! A dollar today is more valuable than a dollar to be received in

More information

Using Excel. 4. The Scenario Manager function is used to create and evaluate a collection of what-if scenarios containing multiple input values.

Using Excel. 4. The Scenario Manager function is used to create and evaluate a collection of what-if scenarios containing multiple input values. P L U G - I N T4 Decision Making Using Excel LEARNING OUTCOMES 1. Describe the use of the IF function. 2. Compare the functions of Goal Seek and Solver. 3. List the advantages of using the Scenario Manager.

More information

TIME VALUE OF MONEY PROBLEM #4: PRESENT VALUE OF AN ANNUITY

TIME VALUE OF MONEY PROBLEM #4: PRESENT VALUE OF AN ANNUITY TIME VALUE OF MONEY PROBLEM #4: PRESENT VALUE OF AN ANNUITY Professor Peter Harris Mathematics by Dr. Sharon Petrushka Introduction In this assignment we will discuss how to calculate the Present Value

More information

Texas Instruments BAII Plus Tutorial for Use with Fundamentals 11/e and Concise 5/e

Texas Instruments BAII Plus Tutorial for Use with Fundamentals 11/e and Concise 5/e Texas Instruments BAII Plus Tutorial for Use with Fundamentals 11/e and Concise 5/e This tutorial was developed for use with Brigham and Houston s Fundamentals of Financial Management, 11/e and Concise,

More information

INTRODUCTION TO EXCEL

INTRODUCTION TO EXCEL INTRODUCTION TO EXCEL 1 INTRODUCTION Anyone who has used a computer for more than just playing games will be aware of spreadsheets A spreadsheet is a versatile computer program (package) that enables you

More information

Chapter 8. 48 Financial Planning Handbook PDP

Chapter 8. 48 Financial Planning Handbook PDP Chapter 8 48 Financial Planning Handbook PDP The Financial Planner's Toolkit As a financial planner, you will be doing a lot of mathematical calculations for your clients. Doing these calculations for

More information

first complete "prior knowlegde" -- to refresh knowledge of Simple and Compound Interest.

first complete prior knowlegde -- to refresh knowledge of Simple and Compound Interest. ORDINARY SIMPLE ANNUITIES first complete "prior knowlegde" -- to refresh knowledge of Simple and Compound Interest. LESSON OBJECTIVES: students will learn how to determine the Accumulated Value of Regular

More information

DISCOUNTED CASH FLOW VALUATION and MULTIPLE CASH FLOWS

DISCOUNTED CASH FLOW VALUATION and MULTIPLE CASH FLOWS Chapter 5 DISCOUNTED CASH FLOW VALUATION and MULTIPLE CASH FLOWS The basic PV and FV techniques can be extended to handle any number of cash flows. PV with multiple cash flows: Suppose you need $500 one

More information

What is Microsoft Excel?

What is Microsoft Excel? What is Microsoft Excel? Microsoft Excel is a member of the spreadsheet family of software. Spreadsheets allow you to keep track of data, create charts based from data, and perform complex calculations.

More information

Chapter 6. Learning Objectives Principles Used in This Chapter 1. Annuities 2. Perpetuities 3. Complex Cash Flow Streams

Chapter 6. Learning Objectives Principles Used in This Chapter 1. Annuities 2. Perpetuities 3. Complex Cash Flow Streams Chapter 6 Learning Objectives Principles Used in This Chapter 1. Annuities 2. Perpetuities 3. Complex Cash Flow Streams 1. Distinguish between an ordinary annuity and an annuity due, and calculate present

More information

TIME VALUE OF MONEY (TVM)

TIME VALUE OF MONEY (TVM) TIME VALUE OF MONEY (TVM) INTEREST Rate of Return When we know the Present Value (amount today), Future Value (amount to which the investment will grow), and Number of Periods, we can calculate the rate

More information

Bank: The bank's deposit pays 8 % per year with annual compounding. Bond: The price of the bond is $75. You will receive $100 five years later.

Bank: The bank's deposit pays 8 % per year with annual compounding. Bond: The price of the bond is $75. You will receive $100 five years later. ü 4.4 lternative Discounted Cash Flow Decision Rules ü Three Decision Rules (1) Net Present Value (2) Future Value (3) Internal Rate of Return, IRR ü (3) Internal Rate of Return, IRR Internal Rate of Return

More information

Finance Unit 8. Success Criteria. 1 U n i t 8 11U Date: Name: Tentative TEST date

Finance Unit 8. Success Criteria. 1 U n i t 8 11U Date: Name: Tentative TEST date 1 U n i t 8 11U Date: Name: Finance Unit 8 Tentative TEST date Big idea/learning Goals In this unit you will study the applications of linear and exponential relations within financing. You will understand

More information

Financial Math on Spreadsheet and Calculator Version 4.0

Financial Math on Spreadsheet and Calculator Version 4.0 Financial Math on Spreadsheet and Calculator Version 4.0 2002 Kent L. Womack and Andrew Brownell Tuck School of Business Dartmouth College Table of Contents INTRODUCTION...1 PERFORMING TVM CALCULATIONS

More information

Corporate Finance Fundamentals [FN1]

Corporate Finance Fundamentals [FN1] Page 1 of 32 Foundation review Introduction Throughout FN1, you encounter important techniques and concepts that you learned in previous courses in the CGA program of professional studies. The purpose

More information

Problem Set: Annuities and Perpetuities (Solutions Below)

Problem Set: Annuities and Perpetuities (Solutions Below) Problem Set: Annuities and Perpetuities (Solutions Below) 1. If you plan to save $300 annually for 10 years and the discount rate is 15%, what is the future value? 2. If you want to buy a boat in 6 years

More information

CHAPTER 30, DATA TABLES *

CHAPTER 30, DATA TABLES * CHAPTER 0, DATA TABLES * slight bug fix: July, 00 Chapter contents Overview... 0.. A simple example... 0.. Summary: How to do a one-dimensional data table... 0.. Some notes on data tables... 0.. Two dimensional

More information

Dick Schwanke Finite Math 111 Harford Community College Fall 2013

Dick Schwanke Finite Math 111 Harford Community College Fall 2013 Annuities and Amortization Finite Mathematics 111 Dick Schwanke Session #3 1 In the Previous Two Sessions Calculating Simple Interest Finding the Amount Owed Computing Discounted Loans Quick Review of

More information

Using Financial and Business Calculators. Daniel J. Borgia

Using Financial and Business Calculators. Daniel J. Borgia Using Financial and Business Calculators Daniel J. Borgia Table of Contents Texas Instruments (TI) BA-35 SOLAR......................................1 Texas Instruments (TI) BA II PLUS........................................11

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

CHAPTER 4. The Time Value of Money. Chapter Synopsis

CHAPTER 4. The Time Value of Money. Chapter Synopsis CHAPTER 4 The Time Value of Money Chapter Synopsis Many financial problems require the valuation of cash flows occurring at different times. However, money received in the future is worth less than money

More information

MS-EXCEL: ANALYSIS OF EXPERIMENTAL DATA

MS-EXCEL: ANALYSIS OF EXPERIMENTAL DATA MS-EXCEL: ANALYSIS OF EXPERIMENTAL DATA Rajender Parsad and Shashi Dahiya I.A.S.R.I., Library Avenue, New Delhi-110 012 The inbuilt functions and procedures of MS-EXCEL can be utilized for the analysis

More information

Preface of Excel Guide

Preface of Excel Guide Preface of Excel Guide The use of spreadsheets in a course designed primarily for business and social science majors can enhance the understanding of the underlying mathematical concepts. In addition,

More information

Dick Schwanke Finite Math 111 Harford Community College Fall 2015

Dick Schwanke Finite Math 111 Harford Community College Fall 2015 Using Technology to Assist in Financial Calculations Calculators: TI-83 and HP-12C Software: Microsoft Excel 2007/2010 Session #4 of Finite Mathematics 1 TI-83 / 84 Graphing Calculator Section 5.5 of textbook

More information

The Time Value of Money

The Time Value of Money CHAPTER 7 The Time Value of Money After studying this chapter, you should be able to: 1. Explain the concept of the time value of money. 2. Calculate the present value and future value of a stream of cash

More information

Getting Started with Excel 2008. Table of Contents

Getting Started with Excel 2008. Table of Contents Table of Contents Elements of An Excel Document... 2 Resizing and Hiding Columns and Rows... 3 Using Panes to Create Spreadsheet Headers... 3 Using the AutoFill Command... 4 Using AutoFill for Sequences...

More information

Problems on Time value of money January 22, 2015

Problems on Time value of money January 22, 2015 Investment Planning Problems on Time value of money January 22, 2015 Vandana Srivastava SENSEX closing value on Tuesday: closing value on Wednesday: opening value on Thursday: Top news of any financial

More information

Chapter F: Finance. Section F.1-F.4

Chapter F: Finance. Section F.1-F.4 Chapter F: Finance Section F.1-F.4 F.1 Simple Interest Suppose a sum of money P, called the principal or present value, is invested for t years at an annual simple interest rate of r, where r is given

More information

Basic financial arithmetic

Basic financial arithmetic 2 Basic financial arithmetic Simple interest Compound interest Nominal and effective rates Continuous discounting Conversions and comparisons Exercise Summary File: MFME2_02.xls 13 This chapter deals

More information

sensitivity analysis. Using Excel 2.1 MANUAL WHAT-IF ANALYSIS 2.2 THRESHOLD VALUES

sensitivity analysis. Using Excel 2.1 MANUAL WHAT-IF ANALYSIS 2.2 THRESHOLD VALUES Sensitivity Analysis Using Excel The main goal of sensitivity analysis is to gain insight into which assumptions are critical, i.e., which assumptions affect choice. The process involves various ways of

More information

EXCEL EXERCISE #8: Consolidating and Linking Spreadsheets

EXCEL EXERCISE #8: Consolidating and Linking Spreadsheets EXCEL EXERCISE #: Consolidating and Linking Spreadsheets. Enter the following information onto Sheet. Double click on the tab for the worksheet and rename it: East. (It represents sales in $000.) 0 Record

More information

Chapter 4. The Time Value of Money

Chapter 4. The Time Value of Money Chapter 4 The Time Value of Money 4-2 Topics Covered Future Values and Compound Interest Present Values Multiple Cash Flows Perpetuities and Annuities Inflation and Time Value Effective Annual Interest

More information

MAT116 Project 2 Chapters 8 & 9

MAT116 Project 2 Chapters 8 & 9 MAT116 Project 2 Chapters 8 & 9 1 8-1: The Project In Project 1 we made a loan workout decision based only on data from three banks that had merged into one. We did not consider issues like: What was the

More information

How to calculate present values

How to calculate present values How to calculate present values Back to the future Chapter 3 Discounted Cash Flow Analysis (Time Value of Money) Discounted Cash Flow (DCF) analysis is the foundation of valuation in corporate finance

More information

Using Financial And Business Calculators. Daniel J. Borgia

Using Financial And Business Calculators. Daniel J. Borgia Using Financial And Business Calculators Daniel J. Borgia August 2000 Table of Contents I. Texas Instruments BA-35 SOLAR II. Texas Instruments BAII PLUS III. Hewlett Packard 12C IV. Hewlett Packard 17BII..

More information

PMT. 0 or omitted At the end of the period 1 At the beginning of the period

PMT. 0 or omitted At the end of the period 1 At the beginning of the period PMT Calculates the payment for a loan based on constant payments and a constant interest rate. PMT(rate,nper,pv,fv,type) For a more complete description of the arguments in PMT, see the PV function. Rate

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

In-Depth Guide Advanced Spreadsheet Techniques

In-Depth Guide Advanced Spreadsheet Techniques In-Depth Guide Advanced Spreadsheet Techniques Learning Objectives By reading and completing the activities in this chapter, you will be able to: Create PivotTables using Microsoft Excel Create scenarios

More information

Excel Guide for Finite Mathematics and Applied Calculus

Excel Guide for Finite Mathematics and Applied Calculus Excel Guide for Finite Mathematics and Applied Calculus Revathi Narasimhan Kean University A technology guide to accompany Mathematical Applications, 6 th Edition Applied Calculus, 2 nd Edition Calculus:

More information

Discounted Cash Flow Valuation

Discounted Cash Flow Valuation Discounted Cash Flow Valuation Chapter 5 Key Concepts and Skills Be able to compute the future value of multiple cash flows Be able to compute the present value of multiple cash flows Be able to compute

More information

Excel 2010 Formulas & Functions

Excel 2010 Formulas & Functions Excel is the world s premier spreadsheet software. You can use Excel to analyze numbers, keep track of data, and graphically represent your information. With Excel 2010, you can manage more data than ever,

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