(1) S = R, where S is the sum, i is the rate of interest per compounding

Size: px
Start display at page:

Download "(1) S = R, where S is the sum, i is the rate of interest per compounding"

Transcription

1 Solving Annuity Formulas for Interest Rate Iterative Routines on the TI 83/84 Floyd Vest Basic to mathematics of finance is the formula for the sum of an ordinary annuity. The formula in traditional terminology is n (1 + i) 1 (1) S = R, where S is the sum, i is the rate of interest per compounding i period, R is termed rent which is generic for payment or withdrawal per compounding period, n is the number of compounding periods (Bowen, 1976). (See the manuals for the TI 83/84 for notation and annuity formulas for the TVM Solver. See in this course, Vest, Floyd, A Master Time Value of Money Formula, for derivations of the annuity formulas as used in the TVM Solver.) Most students are aware that they can solve explicitly for all variables in annuity formulas except for i. (See the Exercises.) It is well know that there are iterative programs for solving numerically for i. Programming the TI83/84 to compute i in the formula for the sum of an ordinary annuity (Newton s Method). (We note that the original Formula 1 is undefined at i = 0.) Newton's method uses some differential calculus. Many students studying financial mathematics have had calculus or are studying it concurrently. Formula 1 can be written as (2) 0 = R(1 + i) n Si R. Let (3) f(i) = R(1 + i) n Si R and solve Formula 2 for i. The first derivative of f(i) is (4) f '(i) = nr(1 + i) n 1 S. Newton s iteration formula is f( ik ) (5) ik+ 1 = ik. Substituting we have f '( i ) K n R(1 + ik) SiK R (6) ik+ 1 = ik for K = 0, 1, 2,, which converges to the desired n 1 nr(1 + ik ) S root under certain circumstances. For programming the TI83/84, we determine the variables as follows: store i K in I, R in R, S in S, and n in N. (Letters on the TI83 are not in italics.) Example 1 The following is an example of entering a program and TI 83/84 code that evaluates i K+1 from i K and displays i K+1 as I. (See Chapter 16 of the TI83 manual.) We will first set up an Input program separate from the calculate program. TI83 code and commentary: Press Prgm > > to display the Prgm New menu. Press Enter to select 1: Create New. Then the Name = prompt is displayed and alpha lock is on. Press I N P U T and then Enter to name the program Input. You are now in the program editor. The colon in the first column indicates the beginning of a command line. Solving Annuity Formulas for Interest Rate May,

2 Press Prgm > 2 to select 2: Prompt from the I/O menu. Prompt appears on the command line. Press Alpha R, Alpha S, Alpha N, and Alpha I for the first estimate and subsequent estimates for i K, K = 0, 1, 2,. Press Enter. To enter the calculating program: TI83/84 code and commentary: Press Prgm > > to display the Prgm New menu. Press Enter to select : 1Create New. Then the Name = prompt appears, and alpha lock is on. Write C A L C Enter to name the program CALC. Press Prgm > 3 to select 3:Disp from the Prgm I/O menu. Disp appears on the command line. Press Alpha I Enter to set the program to display i K. f( ik ) Write the following code to enter the expression ik = i and store i K+ 1 K+1 in I. f '( ik ) Precede each letter with Alpha. Press I ( ( R ( 1 + I ) N S I R ) ( N R ( 1 + I ) ( N 1 ) S ) ) I. Press 2 nd Quit for the home screen. Press Clear to clear the home screen. Press Prgm to display the Prgm Exec menu. You may see 1:Input. Press Enter to paste Prgm Input to the cursor. Press Enter to execute the program. You will see R =?. Write 100 Enter. For S =?, write Enter. For N =?, write 30 Enter. For I =? write.01 Enter for the first estimate i 0. To run the program Calc with these inputs, press Prgm 2 Enter for Calc. Press Enter you will see.01 for i 0 and for i 1. Again press Prgm 2 Enter for i 2 = Again press Prgm 2 Enter for i 3 = Again press Prgm 2 Enter for i 4 = Within the capabilities of the calculator and the program, the convergence to.0075 is complete. (See the Exercises for a word problem and formula with these inputs. See the Exercises for using the TI83/84 TVM Solver for this example.) This particular program has been written so that the user can participate in the iteration and watch the sequence of estimates converge. It is the task of Calculus to derive Newton s Formula and prove the convergence of the sequence. It is the task of a course in numerical methods to investigate conditions for convergence to selected roots, convergence tests, and more efficient and general programs such as those in the TI83/84 TVM Solver. Investigating f(i) (Formula 3) for possible nonnegative roots Examination of f(i) = 0 reveals a root at i = 0. Descartes Rule of Signs indicates that there is only one positive root. This information suggest a graphing window of Xmin =.002, Xmax =.01, Xscl =.001, Ymin = 1, Ymax = 2, Yscl = 1. Trace suggests the root of , which we have calculated. The graph indicates a relative minimum at about /2 = , actually at To experiment with the results of a Solving Annuity Formulas for Interest Rate May,

3 choice of a first estimate, try i 0 as to the left of the relative minimum i value, and run the two programs. You will see a convergence to the zero root. Later courses will address the topic of the choice of the first estimate. Try i 0 as on the other side of the relative minimum i value. You will see slower convergence to A better understanding of Newton s Formula would predict these results. Programming to compute interest rate in the formula for the present value of an ordinary annuity (Fixed Point Method) We present the formula in the following notation: 1 (1 + R) N (7) A= M, where A is the present value, M is the rent or payment at R the end of each compounding period, R is the interest rate per compounding period, and N is the number of compounding periods. Manipulating the formula gives RA = M[1 (1 + R) N ] and (AR M)(1 + RI N + M = 0. If we let X = 1 + R for R > 0, then X N (AX A M) + M = 0 and M N (8) 1+ ( 1 X ) = X. Therefore X is a fixed point of A (8.1) f ( X ) = 1+ M A 1! X! N ( ) where X > 1. For the fixed point method, X K+1 = f(x K ) converges to the desired root of f(x) = X under certain conditions. The following theorem states more precisely the conditions for this convergence. Theorem: Assume a function f defined on a closed interval J, and f maps J into itself. If f is differentiable on J and f(x) k for all X in J for some nonnegative constant k < 1, then f has exactly one fixed point in J. Furthermore, its value may be determined by first choosing any point X 0 in J, and then generating the sequence X 1, X 2,... by letting X K+1 = f(x K ) for K = 0, 1, 2,. This sequence will converge to the fixed point (Conte and deboor 1980, p. 90). Example 2 To solve numerically Formula 7 and Formula 8 for X = 1 + R we set up the programs INPUTA and CALCA. To setup INPUTA, press Prgm > > to display the PrgmNew menu. Press Enter to select 1:CreatNew. Then the Name= prompt is displayed and alpha lock is on. Press I N P U T A and then Enter to name the program. You are now in the program editor. Press Prgm > 2 to select 2:Promt from the I/O menu. Promt appears on the command line. Press Alpha A, Alpha M, Alpha N, and X for X 0 and successive estimates which will converge to the desired root. Press Enter. To setup program CALCA, Prgm > > Enter to get Create New. For Name =, write in C A L C A Enter. Prgm > 3. You see Disp. Write X Enter. Then write the iteration formula 1 + ( Alpha M Alpha A ) ( 1 X (-) Alpha N ) X. Press 2 nd Quit and clear the home screen. Solving Annuity Formulas for Interest Rate May,

4 To run the programs, Prgm Select PrgmExec. Select InputA. Enter A = 50000, M = , N = 36, X = 1.2 for the first estimate. Enter Prgm Select CALCA Enter Enter Enter. You see gradual convergence to the desired X = 1.01 for R =.01. (See the Exercises for a problem with this input data and solution.) (This program converges slowly. For an accelerator formula, see Conte and deboor 1980, p. 98). Investigating a present value formula for possible roots We consider a simpler example that is more manageable on the TI83/84 grapher. 2 1 (1 + x) (9) = 1, x 0, and graph g(x) = (1 + x) x + 1. Use the x Window: Xmin=-2, Xmax=2, Xscl=1, Ymin=-10, Ymax=10, Yscl=1. You get an interesting graph of g(x) with roots 0, 0.06, 1.515, and asymptotes x = 1 and g(x) = 1.833x + 1, and a relative maximum between 0 and Although g(x) could be considered defined at zero, giving another root of 0, Formula 9 is not. Again, without a careful choice of the first estimate, the program might give unexpected results. Solving Annuity Formulas for Interest Rate May,

5 Exercises 1. Read the theory before Example 1 and do the programming steps and run the programs. Report your device and some of your results. Run program Calc again with a different first estimate such as Report the results. 2. Read the theory before Example 2 and do the programming steps and run the programs. Report your device and some of your results. Run program CalcA again with a different first estimate such as 1.1 for X. Report the results for X and R. 3. For the inputs for Formula 1, we give the following word problem. A person was depositing $100 at the end of each month in a savings account to pay a debt due in 30 months of $ What was the monthly and annual interest rate? Substitute into Formula 1 and solve for i. Report your method of solving and the answer in monthly and annual terms. Try the TVM Solver on the TI83/ Make up and solve a word problem for the input for the program InputA. Substitute in Formula 7. Report you method of solving and the answer in monthly and annual terms. 5. See if you can squeeze a revision of Programs Input and Calc into an inexpensive scientific calculator with a programming feature. Give the name of the calculator, the price of the calculator, your program code, and the results of the iterations. 6. Use a Newton s Method program to solve for the positive root x in this word problem. An amount of $ is saved at the end of each month for 36 months to get $ What is i = the monthly rate? What is the annual rate? Report your experience point of convergence, first estimate, number of iterations, program code, and calculator. Report any insights you have into Newton s Method. Report a generalization of your method of calculating the first derivative. 7. Use a Fixed Point Method program for solving Formula 9. Use X 0 = 1 + x = 1.1. Try other values and see what happens. 8. Report your success in graphing Formula 7 with the inputs in program InputA, in the form g(r) = (1 + R) R Try different windows, Zoom, and Trace. Report your device and what information you manage to get from the effort. See if the TVM Solver can calculate the root. 9. (a) For f(x) = (1 + x) N x 1 give an annuity formula. Make a word problem for a practical value of N and solve it. (b) Investigate the graph and roots of f(x) = 0 for N = 2, 3, 4, 5. What does Descartes Rule of Signs say about roots? What does the TVM Solver report about roots? Estimate the positive and negative roots. Report your results and generalizations. Solving Annuity Formulas for Interest Rate May,

6 10. For Formula 9, devise a guess and check method for solving for a positive root. Use bisection averaging estimates from opposite side of the root to acquire a next estimate. Devise a notation and write out the steps and tests. 11. (a) Solve this two-step word problem. Write the formulas and draw timelines. A person owes $5000 in 36 months. He has $1000 to deposit at 2% compounded monthly to pay part of it. How much should he save at the end of each month in the account to pay the rest? (b) Write and solve your own two-step word problem. See how creative and varied you can be. (c) Appoint a class committee to check the problems and their answers. Collect the problems for an exercise for the next financial mathematics class. 12. Solve Formulas 1 and 7 explicitly for the variables. 13. (a) Write Formula 7 in terms of X = 1 + R. For what value of X is Formula 7 undefined? (b) Write formula 8.1 for M = , A = 50,000, N = 36. What is f(1.01)? (c) Graph f(x) with these given values of M, A, and N. Use Window: 0, 2,.1, -.5, 1.5,.1. (d) Press TRACE and track the curve. What does f(x) approach as X gets larger? Type 1.01 Enter What do you get? (e) Use the calculator while in Trace with 2 nd Calc dy/dx to calculate the slope of the curve at points close to 0.91, 1, 1.01, 1.02, 1.1. Then calculate the angle of inclination from the x-axis of the tangent line to the curve in degrees for each point. Record the values X, Y, dy/dx, and tan 1 (dy/dx). (f) What is the fixed point for f(x)? (g) Estimate slope at X = 0.91 by slope = rise f (x +!x) " f (x) = with Δx = run!x (i) For what value of X is f(x) = 0? 15. Make up a Newton s Method program with InputB and CalcB to solve the present value of an ordinary annuity Formula 7. Follow steps (2), (3), (4), and (5) to set up the iteration formula. The first derivative, f '(R) = ( M)( N)(1 + R) N 1 A. Make up a test problem where all variables are known, with 0 < R < 1, to test the program. Solving Annuity Formulas for Interest Rate May,

7 Side Bar Notes For many years, unknowns in financial mathematics formulas were found by using as many as four tables that were inadequate for many applications (Bowen, 1976). Interpolation between table values was often done by hand calculations. In some of the major financial literature, it is still stated that annuity formulas are solved for interest rate by simple guess and check. Solving Annuity Formulas for Interest Rate May,

8 References Vest, Floyd, Computerized Business Calculus Using Calculators, Examples from Mathematics of Finance, Journal of Computers in Mathematics and Science Teaching, Vol. 10(4) Summer (The current article is an adaptation from the 1991 article. The author found it difficult to acquire a pdf copy and permission from the print editor and from electronic resources.) Conte, S. D. and C. deboor, Elementary Numerical Analysis, Third Edition, McGraw- Hill, Bowen, E. K., Mathematics with Applications in Management and Economics, Fourth Edition, Richard D. Erwin, Texas Instruments, TI-83 Graphing Calculator Guidebook, 1996 Solving Annuity Formulas for Interest Rate May,

9 Answers to Exercises 9. (a) = (1 ) N + i 1. i (b) N Descartes Rule TVM Solver Roots 2 1 pos. root No neg. roots 3 1 neg. root 1 pos. root and approx neg. root No pos. roots neg. roots or none No pos. roots and approx. 2.5 Exercise: Describe the investment results given by the roots for N = 2, 3, and 4. Can you make the TVM Solver report a root of zero? Graph this f(x) for f(x) = 0. What does Descartes Rule of Signs say? Note: In this formula there is always a zero root. When N is odd, there is a relative minimum point and a relative maximum point. When N is even, there is only a relative minimum point. This could be predicted by calculus. This determines the number of roots.! 11. (a) $ " # 12 % & 36 (! $ * " # 12 % & = R * * 0.02 * 12 )* 36 = $ = $ ' R = $ per month saved. -,- Solving Annuity Formulas for Interest Rate May,

10 N 1 X 13. (a) A= M Formula 7 is undefined at X = 1. X 1 (b) f(x) = !36 ( 1! X ) = ! X! (d) f(x) approaches as X continues larger than ( ). f(1.01) = (e) Some values are: X f(x) slope tan 1 (dy/dx) (In solving for interest rate > 0, we are limiting the program to X > 1.) (f) For X > 1, the fixed point of f(x) is at X = 1.01, since f(1.01) = (g) rise run = tan 1 ( ) = (i) f(x) = 0 at X = Solving Annuity Formulas for Interest Rate May,

11 Teachers Notes For a copy of the manual for the TI84, see If you detect in Exercise 9 that a student uses a reference, have them cite the source. Don t announce this in advance. Solving Annuity Formulas for Interest Rate May,

Getting to know your TI-83

Getting to know your TI-83 Calculator Activity Intro Getting to know your TI-83 Press ON to begin using calculator.to stop, press 2 nd ON. To darken the screen, press 2 nd alternately. To lighten the screen, press nd 2 alternately.

More information

Academic Support Center. Using the TI-83/84+ Graphing Calculator PART II

Academic Support Center. Using the TI-83/84+ Graphing Calculator PART II Academic Support Center Using the TI-83/84+ Graphing Calculator PART II Designed and Prepared by The Academic Support Center Revised June 2012 1 Using the Graphing Calculator (TI-83+ or TI-84+) Table of

More information

14 Financial. Functions. Financial Functions 14-1. Contents

14 Financial. Functions. Financial Functions 14-1. Contents 14 Financial Functions Contents Getting Started: Financing a Car... 14-2 Getting Started: Computing Compound Interest... 14-3 Using the TVM Solver... 14-4 Using the Financial Functions... 14-5 Calculating

More information

Some Mathematics of Investing in Rental Property. Floyd Vest

Some Mathematics of Investing in Rental Property. Floyd Vest Some Mathematics of Investing in Rental Property Floyd Vest Example 1. In our example, we will use some of the assumptions from Luttman, Frederick W. (1983) Selected Applications of Mathematics of Finance

More information

Math Tools Cell Phone Plans

Math Tools Cell Phone Plans NATIONAL PARTNERSHIP FOR QUALITY AFTERSCHOOL LEARNING www.sedl.org/afterschool/toolkits Math Tools Cell Phone Plans..............................................................................................

More information

Guide for Texas Instruments TI-83, TI-83 Plus, or TI-84 Plus Graphing Calculator

Guide for Texas Instruments TI-83, TI-83 Plus, or TI-84 Plus Graphing Calculator Guide for Texas Instruments TI-83, TI-83 Plus, or TI-84 Plus Graphing Calculator This Guide is designed to offer step-by-step instruction for using your TI-83, TI-83 Plus, or TI-84 Plus graphing calculator

More information

Pre-Calculus Graphing Calculator Handbook

Pre-Calculus Graphing Calculator Handbook Pre-Calculus Graphing Calculator Handbook I. Graphing Functions A. Button for Functions This button is used to enter any function to be graphed. You can enter up to 10 different functions at a time. Use

More information

I. Turn it on: Press É

I. Turn it on: Press É Graphing Calculator Guide for the TI-83/84 Plus The following pages describe how to use the calculator to graph functions, use some of the matrix menu, use scientific notation, and other various keys.

More information

Introduction to the Graphing Calculator

Introduction to the Graphing Calculator Unit 0 Introduction to the Graphing Calculator Intermediate Algebra Update 2/06/06 Unit 0 Activity 1: Introduction to Computation on a Graphing Calculator Why: As technology becomes integrated into all

More information

Lesson 3 Using the Sine Function to Model Periodic Graphs

Lesson 3 Using the Sine Function to Model Periodic Graphs Lesson 3 Using the Sine Function to Model Periodic Graphs Objectives After completing this lesson you should 1. Know that the sine function is one of a family of functions which is used to model periodic

More information

THE VALUE OF MONEY PROBLEM #3: ANNUITY. Professor Peter Harris Mathematics by Dr. Sharon Petrushka. Introduction

THE VALUE OF MONEY PROBLEM #3: ANNUITY. Professor Peter Harris Mathematics by Dr. Sharon Petrushka. Introduction THE VALUE OF MONEY PROBLEM #3: ANNUITY Professor Peter Harris Mathematics by Dr. Sharon Petrushka Introduction Earlier, we explained how to calculate the future value of a single sum placed on deposit

More information

Finance Application for the TI-89 / TI-92 Plus

Finance Application for the TI-89 / TI-92 Plus Finance Application for the TI-89 / TI-92 Plus Important Information 2 Where to Find Installation Instructions 3 The Time-Value-of-Money (TVM) Solver 4 Editing Values in the TVM Solver 5 Calculating TVM

More information

EL-9650/9600c/9450/9400 Handbook Vol. 1

EL-9650/9600c/9450/9400 Handbook Vol. 1 Graphing Calculator EL-9650/9600c/9450/9400 Handbook Vol. Algebra EL-9650 EL-9450 Contents. Linear Equations - Slope and Intercept of Linear Equations -2 Parallel and Perpendicular Lines 2. Quadratic Equations

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

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

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

1. Annuity a sequence of payments, each made at equally spaced time intervals.

1. Annuity a sequence of payments, each made at equally spaced time intervals. Ordinary Annuities (Young: 6.2) In this Lecture: 1. More Terminology 2. Future Value of an Ordinary Annuity 3. The Ordinary Annuity Formula (Optional) 4. Present Value of an Ordinary Annuity More Terminology

More information

DATA HANDLING AND ANALYSIS ON THE TI-82 AND TI-83/83 PLUS GRAPHING CALCULATORS:

DATA HANDLING AND ANALYSIS ON THE TI-82 AND TI-83/83 PLUS GRAPHING CALCULATORS: DATA HANDLING AND ANALYSIS ON THE TI-82 AND TI-83/83 PLUS GRAPHING CALCULATORS: A RESOURCE FOR SCIENCE AND MATHEMATICS STUDENTS John L. McClure Scott A. Sinex Barbara A. Gage Prince George s Community

More information

Objectives. Materials

Objectives. Materials . Objectives Activity 12 To model the process of cooling To use a cooling curve to simulate a forensic scenario to predict the time of death To use technology to find an exponential plot Materials TI-83

More information

Calculating the Value of Social Security Benefits for Different Retirement Ages. Floyd Vest

Calculating the Value of Social Security Benefits for Different Retirement Ages. Floyd Vest Calculating the Value of Social Security Benefits for Different Retirement Ages Floyd Vest Many people calculate the value of Social Security Benefits for different ages of retirement. There are dozens

More information

How To Use The Ti-83+/84+ Calculator For Math 111

How To Use The Ti-83+/84+ Calculator For Math 111 Using the TI-83+/84+ Graphing Calculator in Math 111 at Tacoma Community College Version 1.0 Scott MacDonald Copyright c 2005 by Scott MacDonald Permission is given to reproduce this document in whole

More information

Calculator Notes for the TI-89, TI-92 Plus, and Voyage 200

Calculator Notes for the TI-89, TI-92 Plus, and Voyage 200 CHAPTER 1 Note 1A Reentry Calculator Notes for the TI-89, TI-92 Plus, and Voyage 200 If you want to do further calculation on a result you ve just found, and that result is the first number in the expression

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

If we denote the monthly payment by p, then we can compute the balance after one month as

If we denote the monthly payment by p, then we can compute the balance after one month as Introduction to Modeling 6.2-1 6.2 How to Manage Credit Suppose you have a credit card with the Students R Us bank. When you started college, they gave you a credit card without requiring any credit history.

More information

Activity 3.1 Annuities & Installment Payments

Activity 3.1 Annuities & Installment Payments Activity 3.1 Annuities & Installment Payments A Tale of Twins Amy and Amanda are identical twins at least in their external appearance. They have very different investment plans to provide for their retirement.

More information

Review Page 468 #1,3,5,7,9,10

Review Page 468 #1,3,5,7,9,10 MAP4C Financial Student Checklist Topic/Goal Task Prerequisite Skills Simple & Compound Interest Video Lesson Part Video Lesson Part Worksheet (pages) Present Value Goal: I will use the present value formula

More information

www.mathsbox.org.uk ab = c a If the coefficients a,b and c are real then either α and β are real or α and β are complex conjugates

www.mathsbox.org.uk ab = c a If the coefficients a,b and c are real then either α and β are real or α and β are complex conjugates Further Pure Summary Notes. Roots of Quadratic Equations For a quadratic equation ax + bx + c = 0 with roots α and β Sum of the roots Product of roots a + b = b a ab = c a If the coefficients a,b and c

More information

APPLYING PRE-CALCULUS/CALCULUS SHARP EL-9600. Graphing Calculator DAVID P. LAWRENCE

APPLYING PRE-CALCULUS/CALCULUS SHARP EL-9600. Graphing Calculator DAVID P. LAWRENCE APPLYING PRE-CALCULUS/CALCULUS SHARP U S I N G T H E EL-9600 Graphing Calculator DAVID P. LAWRENCE Applying PRE-CALCULUS/CALCULUS using the SHARP EL-9600 GRAPHING CALCULATOR David P. Lawrence Southwestern

More information

A Slide Show Demonstrating Newton s Method

A Slide Show Demonstrating Newton s Method The AcroT E X Web Site, 1999 A Slide Show Demonstrating Newton s Method D. P. Story The Department of Mathematics and Computer Science The Universityof Akron, Akron, OH Now go up to the curve. Now go

More information

During the analysis of cash flows we assume that if time is discrete when:

During the analysis of cash flows we assume that if time is discrete when: Chapter 5. EVALUATION OF THE RETURN ON INVESTMENT Objectives: To evaluate the yield of cash flows using various methods. To simulate mathematical and real content situations related to the cash flow management

More information

Saving Money for Finance Students by Utilizing the TVM Capabilities of Graphing Calculators

Saving Money for Finance Students by Utilizing the TVM Capabilities of Graphing Calculators Saving Money for Finance Students by Utilizing the TVM Capabilities of Graphing Calculators Glenna Sumner, Ph.D. Assistant Professor of Economics Abstract Michael Lloyd, Ph.D. Professor of Mathematics

More information

TI-83 GRAPHING CALCULATOR GUIDEBOOK

TI-83 GRAPHING CALCULATOR GUIDEBOOK TI-83 GRAPHING CALCULATOR GUIDEBOOK TI-GRAPH LINK, Calculator-Based Laboratory, CBL, CBL 2, Calculator-Based Ranger, CBR, Constant Memory, Automatic Power Down, APD, and EOS are trademarks of Texas Instruments

More information

Future Value of an Annuity Sinking Fund. MATH 1003 Calculus and Linear Algebra (Lecture 3)

Future Value of an Annuity Sinking Fund. MATH 1003 Calculus and Linear Algebra (Lecture 3) MATH 1003 Calculus and Linear Algebra (Lecture 3) Future Value of an Annuity Definition An annuity is a sequence of equal periodic payments. We call it an ordinary annuity if the payments are made at the

More information

9.2 Summation Notation

9.2 Summation Notation 9. Summation Notation 66 9. Summation Notation In the previous section, we introduced sequences and now we shall present notation and theorems concerning the sum of terms of a sequence. We begin with a

More information

USING A TI-83 OR TI-84 SERIES GRAPHING CALCULATOR IN AN INTRODUCTORY STATISTICS CLASS

USING A TI-83 OR TI-84 SERIES GRAPHING CALCULATOR IN AN INTRODUCTORY STATISTICS CLASS USING A TI-83 OR TI-84 SERIES GRAPHING CALCULATOR IN AN INTRODUCTORY STATISTICS CLASS W. SCOTT STREET, IV DEPARTMENT OF STATISTICAL SCIENCES & OPERATIONS RESEARCH VIRGINIA COMMONWEALTH UNIVERSITY Table

More information

Unit 7 Quadratic Relations of the Form y = ax 2 + bx + c

Unit 7 Quadratic Relations of the Form y = ax 2 + bx + c Unit 7 Quadratic Relations of the Form y = ax 2 + bx + c Lesson Outline BIG PICTURE Students will: manipulate algebraic expressions, as needed to understand quadratic relations; identify characteristics

More information

Objectives. Materials

Objectives. Materials Activity 4 Objectives Understand what a slope field represents in terms of Create a slope field for a given differential equation Materials TI-84 Plus / TI-83 Plus Graph paper Introduction One of the ways

More information

correct-choice plot f(x) and draw an approximate tangent line at x = a and use geometry to estimate its slope comment The choices were:

correct-choice plot f(x) and draw an approximate tangent line at x = a and use geometry to estimate its slope comment The choices were: Topic 1 2.1 mode MultipleSelection text How can we approximate the slope of the tangent line to f(x) at a point x = a? This is a Multiple selection question, so you need to check all of the answers that

More information

EASY STEPS TO SUCCESS: A GRAPHING CALCULATOR GUIDE

EASY STEPS TO SUCCESS: A GRAPHING CALCULATOR GUIDE EASY STEPS TO SUCCESS: A GRAPHING CALCULATOR GUIDE TO ACCOMPANY MATHEMATICAL APPLICATIONS FOR THE MANAGEMENT, LIFE, AND SOCIAL SCIENCES EIGHTH EDITION HARSHBARGER/REYNOLDS LISA S. YOCCO Georgia Southern

More information

Math Review. for the Quantitative Reasoning Measure of the GRE revised General Test

Math Review. for the Quantitative Reasoning Measure of the GRE revised General Test Math Review for the Quantitative Reasoning Measure of the GRE revised General Test www.ets.org Overview This Math Review will familiarize you with the mathematical skills and concepts that are important

More information

Roots of Equations (Chapters 5 and 6)

Roots of Equations (Chapters 5 and 6) Roots of Equations (Chapters 5 and 6) Problem: given f() = 0, find. In general, f() can be any function. For some forms of f(), analytical solutions are available. However, for other functions, we have

More information

Introductory Handbook for the TI-89 Titanium

Introductory Handbook for the TI-89 Titanium Introductory Handbook for the TI-89 Titanium Note: This handbook will, for the most part, work for the standard TI-89 as well. The color-coding used on the TI-89 differs from the color-coding used on the

More information

Grade Level Year Total Points Core Points % At Standard 9 2003 10 5 7 %

Grade Level Year Total Points Core Points % At Standard 9 2003 10 5 7 % Performance Assessment Task Number Towers Grade 9 The task challenges a student to demonstrate understanding of the concepts of algebraic properties and representations. A student must make sense of the

More information

Part V: Texas Instruments TI-92, TI-92 Plus, Voyage 200

Part V: Texas Instruments TI-92, TI-92 Plus, Voyage 200 Part V: Texas Instruments TI-92, TI-92 Plus, Voyage 200 V.1 Getting started with the TI-92, TI-92 Plus, Voyage 200 Note: All keystroke sequences given for the Voyage 200 are applicable to the TI-92 and

More information

Definition: A vector is a directed line segment that has and. Each vector has an initial point and a terminal point.

Definition: A vector is a directed line segment that has and. Each vector has an initial point and a terminal point. 6.1 Vectors in the Plane PreCalculus 6.1 VECTORS IN THE PLANE Learning Targets: 1. Find the component form and the magnitude of a vector.. Perform addition and scalar multiplication of two vectors. 3.

More information

MATH 132: CALCULUS II SYLLABUS

MATH 132: CALCULUS II SYLLABUS MATH 32: CALCULUS II SYLLABUS Prerequisites: Successful completion of Math 3 (or its equivalent elsewhere). Math 27 is normally not a sufficient prerequisite for Math 32. Required Text: Calculus: Early

More information

In the Herb Business, Part III Factoring and Quadratic Equations

In the Herb Business, Part III Factoring and Quadratic Equations 74 In the Herb Business, Part III Factoring and Quadratic Equations In the herbal medicine business, you and your partner sold 120 bottles of your best herbal medicine each week when you sold at your original

More information

Chapter. Numerical Calculations

Chapter. Numerical Calculations Chapter 3 Numerical Calculations 3-1 Before Performing a Calculation 3-2 Differential Calculations 3-3 Quadratic Differential Calculations 3-4 Integration Calculations 3-5 Maximum/Minimum Value Calculations

More information

How Does My TI-84 Do That

How Does My TI-84 Do That How Does My TI-84 Do That A guide to using the TI-84 for statistics Austin Peay State University Clarksville, Tennessee How Does My TI-84 Do That A guide to using the TI-84 for statistics Table of Contents

More information

Financial Literacy in Grade 11 Mathematics Understanding Annuities

Financial Literacy in Grade 11 Mathematics Understanding Annuities Grade 11 Mathematics Functions (MCR3U) Connections to Financial Literacy Students are building their understanding of financial literacy by solving problems related to annuities. Students set up a hypothetical

More information

AP CALCULUS AB 2009 SCORING GUIDELINES

AP CALCULUS AB 2009 SCORING GUIDELINES AP CALCULUS AB 2009 SCORING GUIDELINES Question 5 x 2 5 8 f ( x ) 1 4 2 6 Let f be a function that is twice differentiable for all real numbers. The table above gives values of f for selected points in

More information

The Basics of Interest Theory

The Basics of Interest Theory Contents Preface 3 The Basics of Interest Theory 9 1 The Meaning of Interest................................... 10 2 Accumulation and Amount Functions............................ 14 3 Effective Interest

More information

TI-83 GRAPHING CALCULATOR BASIC OPERATIONS by Carolyn Meitler Concordia University Wisconsin

TI-83 GRAPHING CALCULATOR BASIC OPERATIONS by Carolyn Meitler Concordia University Wisconsin TI-83 GRAPHING CALCULATOR BASIC OPERATIONS by Carolyn Meitler Concordia University Wisconsin B-1 Getting Started Press ON to turn on the calculator. Press 2nd + to get the MEMORY screen (shown at the right).

More information

Calculator Notes for the TI-89, TI-92 Plus, and Voyage 200

Calculator Notes for the TI-89, TI-92 Plus, and Voyage 200 CHAPTER 8 Note 8A Changing Mode Calculator Notes for the TI-89, TI-92 Plus, and Voyage 200 For your work in this chapter, check and change, if necessary, three settings. a. Press MODE. In the first line,

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

Time Value of Money Revisited: Part 1 Terminology. Learning Outcomes. Time Value of Money

Time Value of Money Revisited: Part 1 Terminology. Learning Outcomes. Time Value of Money Time Value of Money Revisited: Part 1 Terminology Intermediate Accounting II Dr. Chula King 1 Learning Outcomes Definition of Time Value of Money Components of Time Value of Money How to Answer the Question

More information

2 Describing, Exploring, and

2 Describing, Exploring, and 2 Describing, Exploring, and Comparing Data This chapter introduces the graphical plotting and summary statistics capabilities of the TI- 83 Plus. First row keys like \ R (67$73/276 are used to obtain

More information

V. Systems of Equations and Inequalities

V. Systems of Equations and Inequalities VIRGINIA DEPARTMENT OF EDUCATION Worksheets to accompany Videos VIRGINIA STANDARDS OF LEARNING MATHEMATICS AND THE TEXAS INSTRUMENT GRAPHING CALCULATOR Worksheets for SIX PROGRAMS Written by Ellen S. Hook

More information

Reducing balance loans

Reducing balance loans Reducing balance loans 5 VCEcoverage Area of study Units 3 & 4 Business related mathematics In this chapter 5A Loan schedules 5B The annuities formula 5C Number of repayments 5D Effects of changing the

More information

This is Time Value of Money: Multiple Flows, chapter 7 from the book Finance for Managers (index.html) (v. 0.1).

This is Time Value of Money: Multiple Flows, chapter 7 from the book Finance for Managers (index.html) (v. 0.1). This is Time Value of Money: Multiple Flows, chapter 7 from the book Finance for Managers (index.html) (v. 0.1). This book is licensed under a Creative Commons by-nc-sa 3.0 (http://creativecommons.org/licenses/by-nc-sa/

More information

Don't Forget the Differential Equations: Finishing 2005 BC4

Don't Forget the Differential Equations: Finishing 2005 BC4 connect to college success Don't Forget the Differential Equations: Finishing 005 BC4 Steve Greenfield available on apcentral.collegeboard.com connect to college success www.collegeboard.com The College

More information

Section 5.1 - Compound Interest

Section 5.1 - 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

TI-83/84 Plus Graphing Calculator Worksheet #2

TI-83/84 Plus Graphing Calculator Worksheet #2 TI-83/8 Plus Graphing Calculator Worksheet #2 The graphing calculator is set in the following, MODE, and Y, settings. Resetting your calculator brings it back to these original settings. MODE Y Note that

More information

TVM Applications Chapter

TVM Applications Chapter Chapter 6 Time of Money UPS, Walgreens, Costco, American Air, Dreamworks Intel (note 10 page 28) TVM Applications Accounting issue Chapter Notes receivable (long-term receivables) 7 Long-term assets 10

More information

TI-Nspire CAS Graphing Calculator

TI-Nspire CAS Graphing Calculator TI-Nspire CAS Graphing Calculator Contents Opening a New Document 2 Setting Auto/Approximate Mode 2 Setting Degree Mode 2 Copying and Pasting a Expression or Equation 3 Accessing the Catalogue 3 Defining

More information

Aim. Decimal Search. An Excel 'macro' was used to do the calculations. A copy of the script can be found in Appendix A.

Aim. Decimal Search. An Excel 'macro' was used to do the calculations. A copy of the script can be found in Appendix A. Aim The aim of this investigation is to use and compare three different methods of finding specific solutions to polynomials that cannot be solved algebraically. The methods that will be considered are;

More information

7.1 Graphs of Quadratic Functions in Vertex Form

7.1 Graphs of Quadratic Functions in Vertex Form 7.1 Graphs of Quadratic Functions in Vertex Form Quadratic Function in Vertex Form A quadratic function in vertex form is a function that can be written in the form f (x) = a(x! h) 2 + k where a is called

More information

Birmingham City Schools

Birmingham City Schools Activity 1 Classroom Rules & Regulations Policies & Procedures Course Curriculum / Syllabus LTF Activity: Interval Notation (Precal) 2 Pre-Assessment 3 & 4 1.2 Functions and Their Properties 5 LTF Activity:

More information

2 The Mathematics. of Finance. Copyright Cengage Learning. All rights reserved.

2 The Mathematics. of Finance. Copyright Cengage Learning. All rights reserved. 2 The Mathematics of Finance Copyright Cengage Learning. All rights reserved. 2.3 Annuities, Loans, and Bonds Copyright Cengage Learning. All rights reserved. Annuities, Loans, and Bonds A typical defined-contribution

More information

Equations, Lenses and Fractions

Equations, Lenses and Fractions 46 Equations, Lenses and Fractions The study of lenses offers a good real world example of a relation with fractions we just can t avoid! Different uses of a simple lens that you may be familiar with are

More information

Polynomials. Dr. philippe B. laval Kennesaw State University. April 3, 2005

Polynomials. Dr. philippe B. laval Kennesaw State University. April 3, 2005 Polynomials Dr. philippe B. laval Kennesaw State University April 3, 2005 Abstract Handout on polynomials. The following topics are covered: Polynomial Functions End behavior Extrema Polynomial Division

More information

The time value of money: Part II

The time value of money: Part II The time value of money: Part II A reading prepared by Pamela Peterson Drake O U T L I E 1. Introduction 2. Annuities 3. Determining the unknown interest rate 4. Determining the number of compounding periods

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

College Teaching Methods & Styles Journal September 2008 Volume 4, Number 9

College Teaching Methods & Styles Journal September 2008 Volume 4, Number 9 Finding Multiple Internal Rates Of Return For A Project With Non-Conventional Cash Flows: Utilizing Popular Financial/Graphing Calculators And Spreadsheet Software Jeng-Hong Chen, Albany State University,

More information

Solutions of Equations in One Variable. Fixed-Point Iteration II

Solutions of Equations in One Variable. Fixed-Point Iteration II Solutions of Equations in One Variable Fixed-Point Iteration II Numerical Analysis (9th Edition) R L Burden & J D Faires Beamer Presentation Slides prepared by John Carroll Dublin City University c 2011

More information

14. Nonlinear least-squares

14. Nonlinear least-squares 14 Nonlinear least-squares EE103 (Fall 2011-12) definition Newton s method Gauss-Newton method 14-1 Nonlinear least-squares minimize r i (x) 2 = r(x) 2 r i is a nonlinear function of the n-vector of variables

More information

Thnkwell s Homeschool Precalculus Course Lesson Plan: 36 weeks

Thnkwell s Homeschool Precalculus Course Lesson Plan: 36 weeks Thnkwell s Homeschool Precalculus Course Lesson Plan: 36 weeks Welcome to Thinkwell s Homeschool Precalculus! We re thrilled that you ve decided to make us part of your homeschool curriculum. This lesson

More information

Creating, Solving, and Graphing Systems of Linear Equations and Linear Inequalities

Creating, Solving, and Graphing Systems of Linear Equations and Linear Inequalities Algebra 1, Quarter 2, Unit 2.1 Creating, Solving, and Graphing Systems of Linear Equations and Linear Inequalities Overview Number of instructional days: 15 (1 day = 45 60 minutes) Content to be learned

More information

Zeros of Polynomial Functions

Zeros of Polynomial Functions Zeros of Polynomial Functions The Rational Zero Theorem If f (x) = a n x n + a n-1 x n-1 + + a 1 x + a 0 has integer coefficients and p/q (where p/q is reduced) is a rational zero, then p is a factor of

More information

Scatter Plot, Correlation, and Regression on the TI-83/84

Scatter Plot, Correlation, and Regression on the TI-83/84 Scatter Plot, Correlation, and Regression on the TI-83/84 Summary: When you have a set of (x,y) data points and want to find the best equation to describe them, you are performing a regression. This page

More information

Georgia Department of Education Kathy Cox, State Superintendent of Schools 7/19/2005 All Rights Reserved 1

Georgia Department of Education Kathy Cox, State Superintendent of Schools 7/19/2005 All Rights Reserved 1 Accelerated Mathematics 3 This is a course in precalculus and statistics, designed to prepare students to take AB or BC Advanced Placement Calculus. It includes rational, circular trigonometric, and inverse

More information

Taylor and Maclaurin Series

Taylor and Maclaurin Series Taylor and Maclaurin Series In the preceding section we were able to find power series representations for a certain restricted class of functions. Here we investigate more general problems: Which functions

More information

Linear Equations. 5- Day Lesson Plan Unit: Linear Equations Grade Level: Grade 9 Time Span: 50 minute class periods By: Richard Weber

Linear Equations. 5- Day Lesson Plan Unit: Linear Equations Grade Level: Grade 9 Time Span: 50 minute class periods By: Richard Weber Linear Equations 5- Day Lesson Plan Unit: Linear Equations Grade Level: Grade 9 Time Span: 50 minute class periods By: Richard Weber Tools: Geometer s Sketchpad Software Overhead projector with TI- 83

More information

Graphing Parabolas With Microsoft Excel

Graphing Parabolas With Microsoft Excel Graphing Parabolas With Microsoft Excel Mr. Clausen Algebra 2 California State Standard for Algebra 2 #10.0: Students graph quadratic functions and determine the maxima, minima, and zeros of the function.

More information

FX 115 MS Training guide. FX 115 MS Calculator. Applicable activities. Quick Reference Guide (inside the calculator cover)

FX 115 MS Training guide. FX 115 MS Calculator. Applicable activities. Quick Reference Guide (inside the calculator cover) Tools FX 115 MS Calculator Handouts Other materials Applicable activities Quick Reference Guide (inside the calculator cover) Key Points/ Overview Advanced scientific calculator Two line display VPAM to

More information

BookTOC.txt. 1. Functions, Graphs, and Models. Algebra Toolbox. Sets. The Real Numbers. Inequalities and Intervals on the Real Number Line

BookTOC.txt. 1. Functions, Graphs, and Models. Algebra Toolbox. Sets. The Real Numbers. Inequalities and Intervals on the Real Number Line College Algebra in Context with Applications for the Managerial, Life, and Social Sciences, 3rd Edition Ronald J. Harshbarger, University of South Carolina - Beaufort Lisa S. Yocco, Georgia Southern University

More information

Mathematics. Rosella Castellano. Rome, University of Tor Vergata

Mathematics. Rosella Castellano. Rome, University of Tor Vergata and Loans Mathematics Rome, University of Tor Vergata and Loans Future Value for Simple Interest Present Value for Simple Interest You deposit E. 1,000, called the principal or present value, into a savings

More information

Chapter 3 Mathematics of Finance

Chapter 3 Mathematics of Finance Chapter 3 Mathematics of Finance Section 3 Future Value of an Annuity; Sinking Funds Learning Objectives for Section 3.3 Future Value of an Annuity; Sinking Funds The student will be able to compute the

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

TOPIC 4: DERIVATIVES

TOPIC 4: DERIVATIVES TOPIC 4: DERIVATIVES 1. The derivative of a function. Differentiation rules 1.1. The slope of a curve. The slope of a curve at a point P is a measure of the steepness of the curve. If Q is a point on the

More information

3.3. Solving Polynomial Equations. Introduction. Prerequisites. Learning Outcomes

3.3. Solving Polynomial Equations. Introduction. Prerequisites. Learning Outcomes Solving Polynomial Equations 3.3 Introduction Linear and quadratic equations, dealt within Sections 3.1 and 3.2, are members of a class of equations, called polynomial equations. These have the general

More information

Biggar High School Mathematics Department. National 5 Learning Intentions & Success Criteria: Assessing My Progress

Biggar High School Mathematics Department. National 5 Learning Intentions & Success Criteria: Assessing My Progress Biggar High School Mathematics Department National 5 Learning Intentions & Success Criteria: Assessing My Progress Expressions & Formulae Topic Learning Intention Success Criteria I understand this Approximation

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

FACTORING QUADRATICS 8.1.1 and 8.1.2

FACTORING QUADRATICS 8.1.1 and 8.1.2 FACTORING QUADRATICS 8.1.1 and 8.1.2 Chapter 8 introduces students to quadratic equations. These equations can be written in the form of y = ax 2 + bx + c and, when graphed, produce a curve called a parabola.

More information

Mathematics Georgia Performance Standards

Mathematics Georgia Performance Standards Mathematics Georgia Performance Standards K-12 Mathematics Introduction The Georgia Mathematics Curriculum focuses on actively engaging the students in the development of mathematical understanding by

More information

Let P denote the payment amount. Then the accumulated value of the annuity on the daughter s eighteenth birthday is. P s 18.

Let P denote the payment amount. Then the accumulated value of the annuity on the daughter s eighteenth birthday is. P s 18. MATH 3060 Introduction to Financial Mathematics February 2, 205 Example. (Annuity-immediate with unknown payment and a given discount rate. From Vaaler and Daniel, Example 3.2.5, p. 5. ) Mr. Liang wishes

More information

x), etc. In general, we have

x), etc. In general, we have BASIC CALCULUS REFRESHER. Introduction. Ismor Fischer, Ph.D. Dept. of Statistics UW-Madison This is a very condensed and simplified version of basic calculus, which is a prerequisite for many courses in

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

Vieta s Formulas and the Identity Theorem

Vieta s Formulas and the Identity Theorem Vieta s Formulas and the Identity Theorem This worksheet will work through the material from our class on 3/21/2013 with some examples that should help you with the homework The topic of our discussion

More information

5.1 Derivatives and Graphs

5.1 Derivatives and Graphs 5.1 Derivatives and Graphs What does f say about f? If f (x) > 0 on an interval, then f is INCREASING on that interval. If f (x) < 0 on an interval, then f is DECREASING on that interval. A function has

More information