Computer Technology MSIS 22:198:605 Homework 1

Size: px
Start display at page:

Download "Computer Technology MSIS 22:198:605 Homework 1"

Transcription

1 Computer Technology MSIS 22:198:605 Homework 1 Instructor: Farid Alizadeh Due Date: Friday October 3, 2003 by midnight Submission: by See below for detailed instructions) last updated on September 25, 2003 Rules: Please note the following rules: 1. Assignments should be ed on or before the day and time they are due. 2. Late submission will result in loss of 25% of the points. 3. very important: It is not possible to pass this course if you miss more than one programming assignment regardless of your scores in other assignments or exams. 4. All programming projects should be submitted by . Put all the files including all the.java and all the.class and possible input or output files in a single.zip file. The file name should be in the following format: LastnameFirstnameHWno.zip. For example a student named John Smith submitting Home work number 1 will have his file named: SmithJohnHw1.zip. To get a zip archive file you can for instance download the PkZip software form You should your code as an attachment to me at alizadeh@andromeda.rutgers.edu, with subject line MSIS605 HW1, exactly. Any deviation from this may result in delay in grading your home work. 5. Every class that you define must be started with a comment that indicates your name, student ID number, the home work number and your address. For instance if John Smith is turning home work number 1 and as part of his home work he has defined a class named invest then this class will look something like this: 1

2 class invest{ // ame: John Smith // Student ID: // Home work no 1 // smith@somemachine.rutgers.edu... the rest of the program... 2

3 Calculating investment parameters The main purpose of this assignment is to write a Java program that calculates various entities associated with an investment. Here are the parameters you need to work with: 1. PV: is the present value. It refers to the amount invested now. If you are the investor or the lender, this number is negative. Thus if you are are lending some one $1000, then PV = is the annual of return on the investment. 3. n is the number of periods in a year. If the interest is compounded annually then n = 1; if quarterly then n = 4; if monthly then n = 12, and so on. 4. nper is the total span of the investments in periods. Thus if the span of investment is 3 years and interest is compounded quarterly then nper = 3 4 = PMT is the periodic cash flow; this number is positive for the investor or lender, and negative for the borrower. 6. FV is the future value. This is the value of the investment at then end, that is after nper periods. It is positive for the lender and negative for the borrower. These entities are related to each other via the formula FV = PV 1 + r ) nper PMT n 1 + r ) ) nper 1. 1) n r n The Program Your job is to write a single class named invest with several methods as follows: 1. the first method is static void getfv){ In this method you should program the formula given above and calculate and set the future value FV. You may assume that all other necessary variables are already set and only the FV is unknown. The only issue is that in the formula you need to raise a number to the power of another number. In Java to in order to calculate x = a b one needs to call the pow method of the Math class already available on Java standard API: 3

4 x=math.powa,b); It would be much better to save intermediate results in auxiliary variables. ) nper For instance you may save the result of 1 + in an auxiliary variable, say tmp. Then simply calculate FV = PV tmp PMT tmp 1). 2. The second method is static void getpmt){ From the formula above we can get a formula for PMT: ) nper FV + PV 1 + PMT = ) ) nper 2) Your method must use this formula and calculate the periodic payment. 3. The third method is static void getpv){ Again the First formula can be used to find present value in terms of other entities: [ ) )] nper FV + PMT n r PV = 4. The forth method is static void getper){ 1 + Here we first set tmp = 1 + Then solving for tmp we get ) nper 3) ) nper tmp = PMT PMT FV + PV 4

5 Then use the following formula to get nper: nper = logtmp) log ) 1 + Again to use the log function you need to invoke the log method of the Math class in Java. Thus x = logy) is written as x=math.logy); Also nper is supposed to be an integer and the result of the above calculation is not by any means guaranteed to be an integer. To alleviate this problem we first round up the result using the function Math.ceila). The result is a double. For instance Math.ceil3.2) is the double value 4.0. To turn this into an integer you need to cast it into integer: int)4.0 which results in int value Finally you need to write the main method. For this assignment the main method has to solve four different problems and output the results. You may code all four problems in the main method one after another. Here are the four problems: i. A firm invests $5,000,000 in a savings account in a bank for three years. The annual of interest is 5.25% and the interest is compounded quarterly. How much money is in the account at the end of the third year? The main program should output the result with a println statement. ii. A couple wishes to buy a house at $300,000. The bank requires that 20% of the price be paid in cash and the rest be financed on thirty year loan at 5.25% annual compounded monthly. Your main program should do the necessary calculations and find the monthly payment the couple has to pay to bank. iii. Another couple has just started shopping for a new car and they know they can afford at most $500 a month. The best annual interest available to them is 5.15% annual compounded monthly. The main method should determine and print the amount they can borrow for a year 6 year loan. iv. A retiree has $850,000 saved. He wants to invest this money in a certificate of deposit CD) paying 5.75% annual interest compounded monthly. The retiree expects to get $6,000 a month and would like to be left with $300,000 when he closes the account. For how many months should he leave his money on this CD? 5

1) Cash Flow Pattern Diagram for Future Value and Present Value of Irregular Cash Flows

1) Cash Flow Pattern Diagram for Future Value and Present Value of Irregular Cash Flows Topics Excel & Business Math Video/Class Project #45 Cash Flow Analysis for Annuities: Savings Plans, Asset Valuation, Retirement Plans and Mortgage Loan. FV, PV and PMT. 1) Cash Flow Pattern Diagram for

More information

Section 5.1 Simple and Compound Interest

Section 5.1 Simple and Compound Interest Section 5.1 Simple and Compound Interest Question 1 What is simple interest? Question 2 What is compound interest? Question 3 - What is an effective interest rate? Question 4 - What is continuous compound

More information

Chapter 21: Savings Models

Chapter 21: Savings Models October 14, 2013 This time Arithmetic Growth Simple Interest Geometric Growth Compound Interest A limit to Compounding Simple Interest Simple Interest Simple Interest is interest that is paid on the original

More information

Money and Banking. Semester 1/2016

Money and Banking. Semester 1/2016 Money and Banking Semester 1/2016 Score Allocation Quizzes 10% Mid-Term Exam 30% Final Exam 30% Individual and Group Reports 20% Class Participation 10% >>> Total 100% Classroom Disciplines I expect regular

More information

Section 4B: The Power of Compounding

Section 4B: The Power of Compounding Section 4B: The Power of Compounding Definitions The principal is the amount of your initial investment. This is the amount on which interest is paid. Simple interest is interest paid only on the original

More information

ExcelBasics.pdf. Here is the URL for a very good website about Excel basics including the material covered in this primer.

ExcelBasics.pdf. Here is the URL for a very good website about Excel basics including the material covered in this primer. Excel Primer for Finance Students John Byrd, November 2015. This primer assumes you can enter data and copy functions and equations between cells in Excel. If you aren t familiar with these basic skills

More information

Name Date. Goal: Solve problems that involve credit.

Name Date. Goal: Solve problems that involve credit. F Math 12 2.3 Solving Problems Involving Credit p. 104 Name Date Goal: Solve problems that involve credit. 1. line of credit: A pre-approved loan that offers immediate access to funds, up to a predefined

More information

FINANCE FOR EVERYONE SPREADSHEETS

FINANCE FOR EVERYONE SPREADSHEETS FINANCE FOR EVERYONE SPREADSHEETS Some Important Stuff Make sure there are at least two decimals allowed in each cell. Otherwise rounding off may create problems in a multi-step problem Always enter the

More information

And you also pay an additional amount which is rent on the use of the money while you have it and the lender doesn t

And you also pay an additional amount which is rent on the use of the money while you have it and the lender doesn t Professor Shoemaker When you borrow money you must eventually return the amount you borrow And you also pay an additional amount which is rent on the use of the money while you have it and the lender doesn

More information

Chapter Organization. The future value (FV) is the cash value of. an investment at some time in the future.

Chapter Organization. The future value (FV) is the cash value of. an investment at some time in the future. Chapter 5 The Time Value of Money Chapter Organization 5.2. Present Value and Discounting The future value (FV) is the cash value of an investment at some time in the future Suppose you invest 100 in a

More information

Math 1070 Sample Exam 2 Spring 2015

Math 1070 Sample Exam 2 Spring 2015 University of Connecticut Department of Mathematics Math 1070 Sample Exam 2 Spring 2015 Name: Instructor Name: Section: Exam 2 will cover Sections 4.6-4.7, 5.3-5.4, 6.1-6.4, and F.1-F.4. This sample exam

More information

Interest and present value Simple Interest Interest amount = P x i x n p = principle i = interest rate n = number of periods Assume you invest $1,000 at 6% simple interest for 3 years. You would earn $180

More information

Management 3 Quantitative Methods. The Time Value of Money Part 1A

Management 3 Quantitative Methods. The Time Value of Money Part 1A Management 3 Quantitative Methods The Time Value of Money Part 1A Money: Today? Tomorrow? money now is not the same as money tomorrow Money now is better: It can be used now; It can invested now; There

More information

Sample Investment Device CD (Certificate of Deposit) Savings Account Bonds Loans for: Car House Start a business

Sample Investment Device CD (Certificate of Deposit) Savings Account Bonds Loans for: Car House Start a business Simple and Compound Interest (Young: 6.1) In this Lecture: 1. Financial Terminology 2. Simple Interest 3. Compound Interest 4. Important Formulas of Finance 5. From Simple to Compound Interest 6. Examples

More information

Computational Mathematics/Information Technology

Computational Mathematics/Information Technology Computational Mathematics/Information Technology 2009 10 Financial Functions in Excel This lecture starts to develop the background for the financial functions in Excel that deal with, for example, loan

More information

Introduction to the Compound Interest Formula

Introduction to the Compound Interest Formula Introduction to the Compound Interest Formula Lesson Objectives: students will be introduced to the formula students will learn how to determine the value of the required variables in order to use the

More information

Page Points Score Total: 100

Page Points Score Total: 100 Math 1130 Spring 2019 Sample Midterm 3a 4/11/19 Name (Print): Username.#: Lecturer: Rec. Instructor: Rec. Time: This exam contains 9 pages (including this cover page) and 9 problems. Check to see if any

More information

The Monthly Payment. ( ) ( ) n. P r M = r 12. k r. 12C, which must be rounded up to the next integer.

The Monthly Payment. ( ) ( ) n. P r M = r 12. k r. 12C, which must be rounded up to the next integer. MATH 116 Amortization One of the most useful arithmetic formulas in mathematics is the monthly payment for an amortized loan. Here are some standard questions that apply whenever you borrow money to buy

More information

Page Points Score Total: 100

Page Points Score Total: 100 Math 1130 Autumn 2018 Sample Midterm 2c 2/28/19 Name (Print): Username.#: Lecturer: Rec. Instructor: Rec. Time: This exam contains 8 pages (including this cover page) and 6 problems. Check to see if any

More information

hp calculators HP 20b Loan Amortizations The time value of money application Amortization Amortization on the HP 20b Practice amortizing loans

hp calculators HP 20b Loan Amortizations The time value of money application Amortization Amortization on the HP 20b Practice amortizing loans The time value of money application Amortization Amortization on the HP 20b Practice amortizing loans The time value of money application The time value of money application built into the HP 20b is used

More information

3. Time value of money. We will review some tools for discounting cash flows.

3. Time value of money. We will review some tools for discounting cash flows. 1 3. Time value of money We will review some tools for discounting cash flows. Simple interest 2 With simple interest, the amount earned each period is always the same: i = rp o where i = interest earned

More information

Chapter 3 Mathematics of Finance

Chapter 3 Mathematics of Finance Chapter 3 Mathematics of Finance Section R Review Important Terms, Symbols, Concepts 3.1 Simple Interest Interest is the fee paid for the use of a sum of money P, called the principal. Simple interest

More information

Page Points Score Total: 100

Page Points Score Total: 100 Math 1130 Spring 2019 Sample Midterm 2b 2/28/19 Name (Print): Username.#: Lecturer: Rec. Instructor: Rec. Time: This exam contains 10 pages (including this cover page) and 9 problems. Check to see if any

More information

Measuring Interest Rates

Measuring Interest Rates Measuring Interest Rates Economics 301: Money and Banking 1 1.1 Goals Goals and Learning Outcomes Goals: Learn to compute present values, rates of return, rates of return. Learning Outcomes: LO3: Predict

More information

The High Cost of Other People s Money. Hutch Sprunt Appalachian State University NCCTM October 2005

The High Cost of Other People s Money. Hutch Sprunt Appalachian State University NCCTM October 2005 The High Cost of Other People s Money Hutch Sprunt Appalachian State University NCCTM October 2005 A helpful progression for students: Larger loans Credit cards (and debit cards) Various financial sources

More information

3. Time value of money

3. Time value of money 1 Simple interest 2 3. Time value of money With simple interest, the amount earned each period is always the same: i = rp o We will review some tools for discounting cash flows. where i = interest earned

More information

Financial institutions pay interest when you deposit your money into one of their accounts.

Financial institutions pay interest when you deposit your money into one of their accounts. KEY CONCEPTS Financial institutions pay interest when you deposit your money into one of their accounts. Often, financial institutions charge fees or service charges for providing you with certain services

More information

Full file at

Full file at NEW YORK UNIVERSITY ROBERT F. WAGNER GRADUATE SCHOOL OF PUBLIC SERVICE CORE-GP.1021: Financial Management Midterm Examination Professors Smith and West Fall 2011 SOLUTIONS Name: Student ID: Please circle

More information

FINANCIAL DECISION RULES FOR PROJECT EVALUATION SPREADSHEETS

FINANCIAL DECISION RULES FOR PROJECT EVALUATION SPREADSHEETS FINANCIAL DECISION RULES FOR PROJECT EVALUATION SPREADSHEETS This note is some basic information that should help you get started and do most calculations if you have access to spreadsheets. You could

More information

HKUST. MATH1003 Calculus and Linear Algebra. Directions:

HKUST. MATH1003 Calculus and Linear Algebra. Directions: HKUST MATH1003 Calculus and Linear Algebra Midterm Exam (Version A) 8th October 2016 Name: Student ID: 10:30-12:00 Lecture Section: Directions: Do NOT open the exam until instructed to do so. Please turn

More information

Math 166: Topics in Contemporary Mathematics II

Math 166: Topics in Contemporary Mathematics II Math 166: Topics in Contemporary Mathematics II Xin Ma Texas A&M University October 28, 2017 Xin Ma (TAMU) Math 166 October 28, 2017 1 / 10 TVM Solver on the Calculator Unlike simple interest, it is much

More information

MBF1223 Financial Management Prepared by Dr Khairul Anuar

MBF1223 Financial Management Prepared by Dr Khairul Anuar MBF1223 Financial Management Prepared by Dr Khairul Anuar L4 Time Value of Money www.mba638.wordpress.com 2 Learning Objectives 1. Calculate future values and understand compounding. 2. Calculate present

More information

MBF1223 Financial Management Prepared by Dr Khairul Anuar

MBF1223 Financial Management Prepared by Dr Khairul Anuar MBF1223 Financial Management Prepared by Dr Khairul Anuar L3 Time Value of Money www.mba638.wordpress.com 2 4 Learning Objectives 1. Calculate future values and understand compounding. 2. Calculate present

More information

Chapter 6. Learning Objectives. Principals Applies in this Chapter. Time Value of Money

Chapter 6. Learning Objectives. Principals Applies in this Chapter. Time Value of Money Chapter 6 Time Value of Money 1 Learning Objectives 1. Distinguish between an ordinary annuity and an annuity due, and calculate the present and future values of each. 2. Calculate the present value of

More information

Copyright 2015 Pearson Education, Inc. All rights reserved.

Copyright 2015 Pearson Education, Inc. All rights reserved. Chapter 4 Mathematics of Finance Section 4.1 Simple Interest and Discount A fee that is charged by a lender to a borrower for the right to use the borrowed funds. The funds can be used to purchase a house,

More information

Running head: THE TIME VALUE OF MONEY 1. The Time Value of Money. Ma. Cesarlita G. Josol. MBA - Acquisition. Strayer University

Running head: THE TIME VALUE OF MONEY 1. The Time Value of Money. Ma. Cesarlita G. Josol. MBA - Acquisition. Strayer University Running head: THE TIME VALUE OF MONEY 1 The Time Value of Money Ma. Cesarlita G. Josol MBA - Acquisition Strayer University FIN 534 THE TIME VALUE OF MONEY 2 Abstract The paper presents computations about

More information

5.3 Amortization and Sinking Funds

5.3 Amortization and Sinking Funds 5.3 Amortization and Sinking Funds Sinking Funds A sinking fund is an account that is set up for a specific purpose at some future date. Typical examples of this are retirement plans, saving money for

More information

Equation of Value II. If we choose t = 0 as the comparison date, then we have

Equation of Value II. If we choose t = 0 as the comparison date, then we have Equation of Value I Definition The comparison date is the date to let accumulation or discount values equal for both direction of payments (e.g. payments to the bank and money received from the bank).

More information

Basic Calculator Course

Basic Calculator Course Basic Calculator Course For use in evaluating notes and other income streams. Purpose: This course is intended to provide a basic introduction to the use of a financial calculator in evaluating notes and

More information

Finance Unit Math 114 Radford University

Finance Unit Math 114 Radford University Finance Unit Math 114 Radford University Section 6.1 Percents ntroduction to Basic Percents The word percent translates to mean out of one hundred. A score of 85% on test means that you scored 85 points

More information

Simple Interest: Interest earned only on the original principal amount invested.

Simple Interest: Interest earned only on the original principal amount invested. 53 Future Value (FV): The amount an investment is worth after one or more periods. Simple Interest: Interest earned only on the original principal amount invested. Compound Interest: Interest earned on

More information

The three formulas we use most commonly involving compounding interest n times a year are

The three formulas we use most commonly involving compounding interest n times a year are Section 6.6 and 6.7 with finance review questions are included in this document for your convenience for studying for quizzes and exams for Finance Calculations for Math 11. Section 6.6 focuses on identifying

More information

Engineering Economics

Engineering Economics Economic Analysis Methods Engineering Economics Day 3: Rate of Return Analysis Three commonly used economic analysis methods are 1. Present Worth Analysis 2. Annual Worth Analysis 3. www.engr.sjsu.edu/bjfurman/courses/me195/presentations/engeconpatel3nov4.ppt

More information

Chapter 2. Time Value of Money (TVOM) Principles of Engineering Economic Analysis, 5th edition

Chapter 2. Time Value of Money (TVOM) Principles of Engineering Economic Analysis, 5th edition Chapter 2 Time Value of Money (TVOM) Cash Flow Diagrams $5,000 $5,000 $5,000 ( + ) 0 1 2 3 4 5 ( - ) Time $2,000 $3,000 $4,000 Example 2.1: Cash Flow Profiles for Two Investment Alternatives (EOY) CF(A)

More information

Name: Date: Period: MATH MODELS (DEC 2017) 1 st Semester Exam Review

Name: Date: Period: MATH MODELS (DEC 2017) 1 st Semester Exam Review Name: Date: Period: MATH MODELS (DEC 2017) 1 st Semester Exam Review Unit 1 Vocabulary: Match the following definitions to the words below. 1) Money charged on transactions that goes to fund state and

More information

6.1 Simple and Compound Interest

6.1 Simple and Compound Interest 6.1 Simple and Compound Interest If P dollars (called the principal or present value) earns interest at a simple interest rate of r per year (as a decimal) for t years, then Interest: I = P rt Accumulated

More information

3.1 Simple Interest. Definition: I = Prt I = interest earned P = principal ( amount invested) r = interest rate (as a decimal) t = time

3.1 Simple Interest. Definition: I = Prt I = interest earned P = principal ( amount invested) r = interest rate (as a decimal) t = time 3.1 Simple Interest Definition: I = Prt I = interest earned P = principal ( amount invested) r = interest rate (as a decimal) t = time An example: Find the interest on a boat loan of $5,000 at 16% for

More information

Math 1070 Final Exam Practice Spring 2014

Math 1070 Final Exam Practice Spring 2014 University of Connecticut Department of Mathematics Math 1070 Practice Spring 2014 Name: Instructor Name: Section: Read This First! This is a closed notes, closed book exam. You can not receive aid on

More information

Time Value of Money. Ex: How much a bond, which can be cashed out in 2 years, is worth today

Time Value of Money. Ex: How much a bond, which can be cashed out in 2 years, is worth today Time Value of Money The time value of money is the idea that money available now is worth more than the same amount in the future - this is essentially why interest exists. Present value is the current

More information

Using the Finance Menu of the TI-83/84/Plus calculators

Using the Finance Menu of the TI-83/84/Plus calculators Using the Finance Menu of the TI-83/84/Plus calculators To get to the FINANCE menu On the TI-83 press 2 nd x -1 On the TI-83, TI-83 Plus, TI-84, or TI-84 Plus press APPS and then select 1:FINANCE The FINANCE

More information

1. The Rule of 72 states that the estimate for doubling time =. A) 2. Unlike APR, APY tells us the actual percentage growth per year.

1. The Rule of 72 states that the estimate for doubling time =. A) 2. Unlike APR, APY tells us the actual percentage growth per year. Dr. Katiraie MA115A Practice Problems for Quiz 5 (Sections 4.1, 4.2, 4.3, and 1.4 1. The Rule of 72 states that the estimate for doubling time =. A) B) C) D) 2. Unlike APR, APY tells us the actual percentage

More information

Q-Center Math 1070 Exam #2 Review. November 8, 2016

Q-Center Math 1070 Exam #2 Review. November 8, 2016 Q-Center Math 1070 Exam #2 Review November 8, 2016 1 #1 Arsenic is a compound that occurs naturally in very low concentrations. Arsenic blood concentrations in healthy adults are normally distributed with

More information

Intermediate Excel. Winter Winter 2011 CS130 - Intermediate Excel 1

Intermediate Excel. Winter Winter 2011 CS130 - Intermediate Excel 1 Intermediate Excel Winter 2011 Winter 2011 CS130 - Intermediate Excel 1 Combination Cell References How do $A1 and A$1 differ from $A$1? A B C D E 1 4 8 =A1/$A$3 2 6 4 =A$1*$B4+B2 3 =A1+A2 1 4 5 What formula

More information

Unit 9: Borrowing Money

Unit 9: Borrowing Money Unit 9: Borrowing Money 1 Financial Vocab Amortization Table A that lists regular payments of a loan and shows how much of each payment goes towards the interest charged and the principal borrowed, as

More information

Further Mathematics 2016 Core: RECURSION AND FINANCIAL MODELLING Chapter 7 Loans, investments and asset values

Further Mathematics 2016 Core: RECURSION AND FINANCIAL MODELLING Chapter 7 Loans, investments and asset values Further Mathematics 2016 Core: RECURSION AND FINANCIAL MODELLING Chapter 7 Loans, investments and asset values Key knowledge (Chapter 7) Amortisation of a reducing balance loan or annuity and amortisation

More information

Chapter 7. Confidence Intervals and Sample Sizes. Definition. Definition. Definition. Definition. Confidence Interval : CI. Point Estimate.

Chapter 7. Confidence Intervals and Sample Sizes. Definition. Definition. Definition. Definition. Confidence Interval : CI. Point Estimate. Chapter 7 Confidence Intervals and Sample Sizes 7. Estimating a Proportion p 7.3 Estimating a Mean µ (σ known) 7.4 Estimating a Mean µ (σ unknown) 7.5 Estimating a Standard Deviation σ In a recent poll,

More information

Chapter 5. Finance 300 David Moore

Chapter 5. Finance 300 David Moore Chapter 5 Finance 300 David Moore Time and Money This chapter is the first chapter on the most important skill in this course: how to move money through time. Timing is everything. The simple techniques

More information

Intermediate Excel. Combination Cell References A B C D E =A1/$A$ =A$1*$B4+B2 3 =A1+A

Intermediate Excel. Combination Cell References A B C D E =A1/$A$ =A$1*$B4+B2 3 =A1+A Intermediate Excel SPRING 2016 Spring 2016 CS130 - INTERMEDIATE EXCEL 1 Combination Cell References How do $A1 and A$1 differ from $A$1? A B C D E 1 4 8 =A1/$A$3 2 6 4 =A$1*$B4+B2 3 =A1+A2 1 4 5 What formula

More information

Solutions to Problems

Solutions to Problems Solutions to Problems 1. The investor would earn income of $2.25 and a capital gain of $52.50 $45 =$7.50. The total gain is $9.75 or 21.7%. $8.25 on a stock that paid $3.75 in income and sold for $67.50.

More information

Chapter 5. Interest Rates ( ) 6. % per month then you will have ( 1.005) = of 2 years, using our rule ( ) = 1.

Chapter 5. Interest Rates ( ) 6. % per month then you will have ( 1.005) = of 2 years, using our rule ( ) = 1. Chapter 5 Interest Rates 5-. 6 a. Since 6 months is 24 4 So the equivalent 6 month rate is 4.66% = of 2 years, using our rule ( ) 4 b. Since one year is half of 2 years ( ).2 2 =.0954 So the equivalent

More information

Math 101: Exam 2 Review Sheet

Math 101: Exam 2 Review Sheet Math 101: Exam 2 Review Sheet Exam Date, Time, Locations & Coverage Exam 2 will be given on Friday, November 20, from 8:00-8:50 a.m. You should arrive by 7:50 a.m. Use the following table to determine

More information

Chapter Review Problems

Chapter Review Problems Chapter Review Problems Unit 9. Time-value-of-money terminology For Problems 9, assume you deposit $,000 today in a savings account. You earn 5% compounded quarterly. You deposit an additional $50 each

More information

Manual for SOA Exam FM/CAS Exam 2.

Manual for SOA Exam FM/CAS Exam 2. Manual for SOA Exam FM/CAS Exam 2. Chapter 1. Basic Interest Theory. c 2009. Miguel A. Arcones. All rights reserved. Extract from: Arcones Manual for the SOA Exam FM/CAS Exam 2, Financial Mathematics.

More information

1/1 (automatic unless something is incorrect)

1/1 (automatic unless something is incorrect) Your name and Perm # Econ 234A John Hartman Test 1 February 4, 20 Instructions: You have 60 minutes to complete this test, unless you arrive late. Late arrival will lower the time available to you, and

More information

Fin 5413: Chapter 04 - Fixed Interest Rate Mortgage Loans Page 1 Solutions to Problems - Chapter 4 Fixed Interest Rate Mortgage Loans

Fin 5413: Chapter 04 - Fixed Interest Rate Mortgage Loans Page 1 Solutions to Problems - Chapter 4 Fixed Interest Rate Mortgage Loans Fin 5413: Chapter 04 - Fixed Interest Rate Mortgage Loans Page 1 Solutions to Problems - Chapter 4 Fixed Interest Rate Mortgage Loans Problem 4-1 A borrower makes a fully amortizing CPM mortgage loan.

More information

Chapter 6. Evaluating the Financial Impact of Loans and Investments

Chapter 6. Evaluating the Financial Impact of Loans and Investments Chapter 6 Evaluating the Financial Impact of Loans and Investments Chapter Introduction Fundamental financial calculations used to evaluate different financing options Developing an amortization table

More information

Math 373 Test 2 Fall 2013 October 17, 2013

Math 373 Test 2 Fall 2013 October 17, 2013 Math 373 Test 2 Fall 2013 October 17, 2013 1. You are given the following table of interest rates: Year 1 Year 2 Year 3 Portfolio Year 2007 0.060 0.058 0.056 0.054 2010 2008 0.055 0.052 0.049 0.046 2011

More information

Time value of money-concepts and Calculations Prof. Bikash Mohanty Department of Chemical Engineering Indian Institute of Technology, Roorkee

Time value of money-concepts and Calculations Prof. Bikash Mohanty Department of Chemical Engineering Indian Institute of Technology, Roorkee Time value of money-concepts and Calculations Prof. Bikash Mohanty Department of Chemical Engineering Indian Institute of Technology, Roorkee Lecture - 01 Introduction Welcome to the course Time value

More information

Section 8.3 Compound Interest

Section 8.3 Compound Interest Section 8.3 Compound Interest Objectives 1. Use the compound interest formulas. 2. Calculate present value. 3. Understand and compute effective annual yield. 4/24/2013 Section 8.3 1 Compound interest is

More information

Section Compound Interest

Section Compound Interest Section 5.1 - Compound Interest Simple Interest Formulas If I denotes the interest on a principal P (in dollars) at an interest rate of r (as a decimal) per year for t years, then we have: Interest: Accumulated

More information

Introduction to Earning Interest: APR, APY and Compound Interest

Introduction to Earning Interest: APR, APY and Compound Interest Principal and Interest Example 1 Michael is saving money to buy a car. He takes $8,000 to the bank and opens an annual CD upon which the bank agrees to pay him 2% interest. Principal = 8000 Term = 1 year

More information

College of Southern Maryland BUSINESS FINANCE. Course / Instructor Information. Things to Purchase. Course Description.

College of Southern Maryland BUSINESS FINANCE. Course / Instructor Information. Things to Purchase. Course Description. College of Southern Maryland BUSINESS FINANCE Course / Instructor Information Course: ACC 2681 Semester: Spring Section: 121547 Year: 2015 Time: n/a (Web-based section) Prerequisites: ACC 2010 Location:

More information

Chapter 5. Learning Objectives. Principals Applied in this Chapter. Time Value of Money. Principle 1: Money Has a Time Value.

Chapter 5. Learning Objectives. Principals Applied in this Chapter. Time Value of Money. Principle 1: Money Has a Time Value. Chapter 5 Time Value of Money Learning Objectives 1. Construct cash flow timelines to organize your analysis of problems involving the time value of money. 2. Understand compounding and calculate the future

More information

Time Value of Money: A Self-test

Time Value of Money: A Self-test Personal Finance: Another Perspective Time Value of Money: A Self-test Updated 2017-01-20 1 Objectives A. Understand the importance compound interest and time B. Pass an un-graded assessment test with

More information

Chapter 5. Time Value of Money

Chapter 5. Time Value of Money Chapter 5 Time Value of Money Using Timelines to Visualize Cashflows A timeline identifies the timing and amount of a stream of payments both cash received and cash spent - along with the interest rate

More information

Name Date. Goal: Solve problems that involve simple interest. 1. term: The contracted duration of an investment or loan.

Name Date. Goal: Solve problems that involve simple interest. 1. term: The contracted duration of an investment or loan. F Math 12 1.1 Simple Interest p.6 Name Date Goal: Solve problems that involve simple interest. 1. term: The contracted duration of an investment or loan. 2. interest (i): The amount of money earned on

More information

Capstone Design. Cost Estimating and Estimating Models

Capstone Design. Cost Estimating and Estimating Models Capstone Design Engineering Economics II Engineering Economics II (1 of 14) Cost Estimating and Estimating Models Engineering economic analysis involves present and future economic factors It is critical

More information

Learning Goal: What is compound interest? How do we compute the interest on an investment?

Learning Goal: What is compound interest? How do we compute the interest on an investment? Name IB Math Studies Year 1 Date 7-6 Intro to Compound Interest Learning Goal: What is compound interest? How do we compute the interest on an investment? Warm-Up: Let s say that you deposit $100 into

More information

MATH 1012 Section 6.6 Solving Application Problems with Percent Bland

MATH 1012 Section 6.6 Solving Application Problems with Percent Bland MATH 1012 Section 6.6 Solving Application Problems with Percent Bland Office Max sells a flat panel computer monitor for $299. If the sales tax rate is 5%, how much tax is paid? What is the total cost

More information

MATH 1332 College Mathematics, Fall 2010 Exam 3, Part II (take-home) Due: 7:05 pm, Tuesday, November 20. Instructor: Merianne Prickett

MATH 1332 College Mathematics, Fall 2010 Exam 3, Part II (take-home) Due: 7:05 pm, Tuesday, November 20. Instructor: Merianne Prickett MATH 1332 College Mathematics, Fall 2010 Exam 3, Part II (take-home) Due: 7:05 pm, Tuesday, November 20 Name Instructor: Merianne Prickett Instructions: This exam has 10 problems on 5 pages. Take a moment

More information

Math Fall 2016 Final Exam December 10, Total 100

Math Fall 2016 Final Exam December 10, Total 100 Name: Math 111 - Fall 2016 Final Exam December 10, 2016 Section: Student ID Number: 1 15 2 13 3 14 4 15 5 13 6 15 7 15 Total 100 You are allowed to use a Ti-30x IIS Calculator (only this model!), a ruler,

More information

Sections F.1 and F.2- Simple and Compound Interest

Sections F.1 and F.2- Simple and Compound Interest Sections F.1 and F.2- Simple and Compound Interest Simple Interest Formulas If I denotes the interest on a principal P (in dollars) at an interest rate of r (as a decimal) per year for t years, then we

More information

Math 14, Homework 6.2 p. 337 # 3, 4, 9, 10, 15, 18, 19, 21, 22 Name

Math 14, Homework 6.2 p. 337 # 3, 4, 9, 10, 15, 18, 19, 21, 22 Name Name 3. Population in U.S. Jails The average daily jail population in the United States is 706,242. If the distribution is normal and the standard deviation is 52,145, find the probability that on a randomly

More information

Annual = Semi- Annually= Monthly=

Annual = Semi- Annually= Monthly= F Math 12 1.1 Simple Interest p.6 1. Term: The of an investment or loan 2. Interest (i): the amount of earned on an investment or paid on a loan 3. Fixed interest rate: An interest rate that is guaranteed

More information

Full file at https://fratstock.eu

Full file at https://fratstock.eu Chapter 2 Time Value of Money ANSWERS TO END-OF-CHAPTER QUESTIONS 2-1 a. PV (present value) is the value today of a future payment, or stream of payments, discounted at the appropriate rate of interest.

More information

The Regular Payment of an Annuity with technology

The Regular Payment of an Annuity with technology UNIT 7 Annuities Date Lesson Text TOPIC Homework Dec. 7 7.1 7.1 The Amount of an Annuity with technology Pg. 415 # 1 3, 5 7, 12 **check answers withti-83 Dec. 9 7.2 7.2 The Present Value of an Annuity

More information

Name Date. Which option is most beneficial for the bank, and which is most beneficial for Leandro? A B C N = N = N = I% = I% = I% = PV = PV = PV =

Name Date. Which option is most beneficial for the bank, and which is most beneficial for Leandro? A B C N = N = N = I% = I% = I% = PV = PV = PV = F Math 12 2.0 Getting Started p. 78 Name Date Doris works as a personal loan manager at a bank. It is her job to decide whether the bank should lend money to a customer. When she approves a loan, she thinks

More information

F.3 - Annuities and Sinking Funds

F.3 - Annuities and Sinking Funds F.3 - Annuities and Sinking Funds Math 166-502 Blake Boudreaux Department of Mathematics Texas A&M University March 22, 2018 Blake Boudreaux (TAMU) F.3 - Annuities March 22, 2018 1 / 12 Objectives Know

More information

Math 101 Final Exam Spring 2017

Math 101 Final Exam Spring 2017 Make sure that your scantron matches the color of this page. Read ALL directions carefully before beginning the exam. Anyone found using a graphing/programmable calculator or cell phone during the final

More information

MA 162: Finite Mathematics

MA 162: Finite Mathematics MA 162: Finite Mathematics Fall 2014 Ray Kremer University of Kentucky December 1, 2014 Announcements: First financial math homework due tomorrow at 6pm. Exam scores are posted. More about this on Wednesday.

More information

บทท 3 ม ลค าของเง นตามเวลา (Time Value of Money)

บทท 3 ม ลค าของเง นตามเวลา (Time Value of Money) บทท 3 ม ลค าของเง นตามเวลา (Time Value of Money) Topic Coverage: The Interest Rate Simple Interest Rate Compound Interest Rate Amortizing a Loan Compounding Interest More Than Once per Year The Time Value

More information

4: Single Cash Flows and Equivalence

4: Single Cash Flows and Equivalence 4.1 Single Cash Flows and Equivalence Basic Concepts 28 4: Single Cash Flows and Equivalence This chapter explains basic concepts of project economics by examining single cash flows. This means that each

More information

These terms are the same whether you are the borrower or the lender, but I describe the words by thinking about borrowing the money.

These terms are the same whether you are the borrower or the lender, but I describe the words by thinking about borrowing the money. Simple and compound interest NAME: These terms are the same whether you are the borrower or the lender, but I describe the words by thinking about borrowing the money. Principal: initial amount you borrow;

More information

Copyright 2015 by the McGraw-Hill Education (Asia). All rights reserved.

Copyright 2015 by the McGraw-Hill Education (Asia). All rights reserved. Copyright 2015 by the McGraw-Hill Education (Asia). All rights reserved. Key Concepts and Skills Be able to compute: The future value of an investment made today The present value of cash to be received

More information

4. INTERMEDIATE EXCEL

4. INTERMEDIATE EXCEL Winter 2019 CS130 - Intermediate Excel 1 4. INTERMEDIATE EXCEL Winter 2019 Winter 2019 CS130 - Intermediate Excel 2 Problem 4.1 Import and format: zeus.cs.pacificu.edu/chadd/cs130w17/problem41.html For

More information

Math 1090 Final Exam Fall 2012

Math 1090 Final Exam Fall 2012 Math 1090 Final Exam Fall 2012 Name Instructor: Student ID Number: Instructions: Show all work, as partial credit will be given where appropriate. If no work is shown, there may be no credit given. All

More information

6.1 Simple Interest page 243

6.1 Simple Interest page 243 page 242 6 Students learn about finance as it applies to their daily lives. Two of the most important types of financial decisions for many people involve either buying a house or saving for retirement.

More information

Quantitative Literacy: Thinking Between the Lines

Quantitative Literacy: Thinking Between the Lines Quantitative Literacy: Thinking Between the Lines Crauder, Evans, Johnson, Noell Chapter 4: Personal Finance 2011 W. H. Freeman and Company 1 Chapter 4: Personal Finance Lesson Plan Saving money: The power

More information

Signature Assignment. Course. MATH 1324: Math for Business and Social Sciences. Outcomes/Rubrics to be Assessed by the Assignment

Signature Assignment. Course. MATH 1324: Math for Business and Social Sciences. Outcomes/Rubrics to be Assessed by the Assignment Signature Assignment Course MATH 1324: Math for Business and Social Sciences Assignment Title MATHEMATICAL REASONING EXERCISE Assignment ID Kevin Pinegar Outcomes/Rubrics to be Assessed by the Assignment

More information

Economics 101 Fall 2018 Answers to Homework #1 Due Thursday, September 27, Directions:

Economics 101 Fall 2018 Answers to Homework #1 Due Thursday, September 27, Directions: Economics 101 Fall 2018 Answers to Homework #1 Due Thursday, September 27, 2018 Directions: The homework will be collected in a box labeled with your TA s name before the lecture. Please place your name,

More information