Collaborative problems:
- Choose the text editor you plan to use to write your FORTRAN programs. Indicate somewhere on your homework which one you picked and why you picked it. Justify your decision by indicating which specific features of the editor you liked. If you don't provide a justification, you will not receive credit for this problem.
- Compute the Taylor series of the exponential function, exp(t) about t=0.
- Write a FORTRAN program that uses the Taylor series to compute the exponential of a specified value. The program should:
- prompt the user for how many terms should be used in the series;
- prompt the user for the value of t that should be used in exp(t); and,
- print the answer.
- Investigate how accurate the approximation is for different values of t and for different numbers of iterations. Submit a table that tabulates to how many digits the approximation is valid for different numbers of iterations and different ranges of t. You may use the exp() function in FORTRAN to check the accuracy of your iterative computation.
- Upload your program as an attachment in the uploads section of the forum for homework 1. Your program should have your name at the top as a comment as well as which problem it is.
- Register for the course web page. You will be required to upload programs during the semester so if you do not register you will not be able to submit part of each homework assignment and possibly parts of each exam. Registration will be disabled on Wednesday, September 3, 2008.
- Repeat the problem above but for the sine function instead of the exponential function. You may use the sin() function in FORTRAN to check the accuracy of your iterative computation.
- Upload your program as an attachment in the uploads section of the forum for homework 1. Your program should have your name at the top as a comment as well as which problem it is.
Submit everything in class including any written work and printouts of any computer code. Also, upload every FORTRAN program that you write for this assignment.