User Tools

Site Tools


gibson:teaching:fall-2013:math445:lab3

Math 445 Lab 3: Interest, Exponentials, and Limits

Time Estimate: 4-6 hours.

Important MATLAB commands that will be used: for, while, if, break, format, plot, semilogy, zeros.

Turn in your code, results, and required plots. Use the diary function when necessary or helpful. Be sure to annotate your plots appropriately by labeling your axes, giving the plot a meaningful title, and possibly labeling different lines in the same plot via the legend command.

Problem 1

Suppose you opened a savings account that promised a 100% interest rate (typical rates are closer to 3.5% today). We are going to try to calculate how much money that account would have after one year depending on how the interest is calculated. We will assume that we open the account with $10,000.

If r is the annual interest rate, then after one year assuming the interest is only compounded once a year, the amount after a year is just (1 + r)B where B is the balance before the interest. With B = $10,000 and r = 1.00 we have exactly $20,000 after one year.

If the interest is compounded every six months, then after six months, the balance would be B2 = (1 + r/2)B or in this case $15,000. After another six months the other half of the interest is applied but this time to B2 so that the ending balance is given by


(1 + r/2)B2 = (1 + r/2)(1 + r/2)B = ((1 + r/2)^2 )B.

Similarly if the interest was compounded quarterly the ending balance would be


((1 + r/4)^4 )B,

and the balance at the end of jth quarter would be given by


((1 + r/4)^j )B.

Before you begin, enter the command format bank. What did that command do? Compute the final balance after one year of the initial investment of $10,000 at r = 1.00 or 100% interest if the interest is compounded semi-annually, quartely, monthly, and bi-weekly. Hint: one of your answers should be $26130.35.

Problem 2

Now we will compound the interest weekly. Let's use a for loop to compute not only how much money we will have in our account at the end of the year but each week as well. Use the command B=zeros(53,1) to create a column vector of zeros where we will store the account balances. Let B(1)=10000 to set the initial balance. Next we need to compute the interest after each of the 52 weeks. We can use either of the following formulas,


B_{j+1} = (1 + r/52)^j B_1

or

 
B_{j+1} = (1 + r/52) B_j

We can use the following code to evaluate the former formula

for j=1:52
  B(j+1)=(1+1.00/52)ˆj * B(1);
end

Now we can plot the results using the plot command: plot(B) Turn in a copy of your plot. Repeat the calculation using the equation


B_{j+1} = (1 + r/52) B_j .

making the appropriate adjustments to code given above. Either way you should get the exact same plot and a final value of 26925.97 for B(53) .

Bonus: Can you think of a way to calculate the same vector B in one line, without using a loop?

Problem 3

As the number of compounds increases, the final amount appears to be get closer to some final value. In order to check this, let's compound the interest every second. Compute the result of compounding the interest every second on $10,000 at r = 1.00 interest and check your answer versus the command exp(1)*10000 How close are these two numbers? Note: the command exp(1) calculates e^1 or just e where e is a mathematical constant. Search e (mathematical constant) in Wikipedia and look under the history of e. Does anything look familiar? The e is the same value used commonly in exponential and natural logarithms.

Problem 4

At this point I am going to make a guess that


(1 + 1.00/n)^n \approx  e.

I am going to also guess that the approximation is better for larger values of n until for n large enough, it will be essentially perfect. Mathematically, that is to say that limit as n goes to $\infty$ of (1 + 1.00/n)^n is e, or


\lim_{n \rightarrow \infty} (1 + 1.00/n)^n = e.

In fact the above statement is the definition of e. Let's test this idea of a limit, though. Using the model for for loops above create a vector of 20 values for n where $n_j = 2^j$ with j = 1, …, 20. Then for each of the values of n, again using a for loop, calculate $a_j = (1 + 1.00/n_j )^{n_j}$ for j = 1, …, 20. Plot the values of a. Next plot e − a. You should see a graph that is not very informative since the values quickly go to zero. Instead we will plot the graph on a log scale on the y-axis by entering the command semilogy(exp(1)-a) You should now easily be able to see that as n increases the value of (1 + 1.00/n)^n approaches e since exp(1)-a quickly goes to zero. Turn in all plots.

Bonus: What happens if you let j = 1, …, 60? What happens if when you let $n_j = 10^j$ for j = 1,…,16? Can you make a reasonable guess as to what's happening here?

Problem 5

Using the same procedure as in the previous problem, confirm that


\lim_{n\rightarrow \infty} (1 + 0.754/n)^n= e^{0.754}

by calculating approximations and storing them in a vector a using the same values for n and j as used above. Plot e^0.754 − a on a log scale in y. Turn in your plot. Note: e^0.754 is computed in MATLAB by the command exp(0.754).

Problem 6

We have used several MATLAB functions so far. Now we are going to write our own function. In the main MATLAB window click File → New → Script (or File → New → m-file depending on your version of MATLAB). This will open a file editor. In the first line of the editor put the line

function Bal=InterestCalc(Investment,Rate,Yrs,Ncomp)

Hit Enter several times and then type

end

Any code that is between the function command and the end will execute when you run the function. Somewhere in that function we need to define the value for the variable Bal which will be returned by the function. Mathematically this is what the code needs to return


Bal = (1 + Rate ∗ Yrs/Ncomp)^{Ncomp} Investment

where Bal will be the balance you would have after Yrs years if you invested Investment amount of money at an interest rate of Rate that is compounded Ncomp times per year. You need to use result previously given to figure out exactly what function you need here. Save this function as InterestCalc.m in a directory for this class. Change the directory you are working in by selecting the same directory in the main MATLAB command window. You should now be able to test your function by typing

InterestCalc(1000,0.05,5,60)

which should return the value 1283.36.

Note: if you have more output line in the command window than just the one number, add ; to the end of each line of your function except the first and the last line. Turn in the code for your function.

Problem 7

Enter the command format long then verify the following properties of exponentials and logarithms by testing the appropriate MATLAB functions with the parameters indicated:


e^a e^b = e^{a+b} \text{ for } a= 0.3, b= 0.4,


(e^a)^b = e^{ab}, \text{ for } a = 0.2, b = 10


\log(ab) = \log(a) + \log(b), \text{ for } a = 0.1, b = 5


\log(a^b) = b \log(a), \text{ for } a = 3, b = 3

Note the log function in matlab is the natural logarithm. How would you calculate $\log_{10}$ , $\log_2$ , or $\log_5$?

gibson/teaching/fall-2013/math445/lab3.txt · Last modified: 2013/09/16 18:23 by gibson