Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a Fortran program that prompts the user for x (as a double-precision real) and the highest order term, m and reports the approximated value

image text in transcribed

Write a Fortran program that prompts the user for x (as a double-precision real) and the highest order term, m and reports the approximated value of arctan(x) (as a double-precision real) using a counting loop. Some notes: To declare a Fortran double-precision real, use the REAL(8) data type, e.g. real(8):: sum, x ! sum and real are double precision floats Related note (but not needed here): Normal Fortran integer variables can hold values up to ~2 billion. To declare Fortran integers large enough to hold larger values (such as the results of a factorial), one might use 8 byte integers. They can be declared as follows integer(kind=8):: VarName ! VarName can hold larger values Caution must be paid in using reals versus integers. If your results seem off, this is a likely cause. Note that, since the tangent of pi/4 (45^degree) is 1, we can use 4 tan^-1(x) = pi as an easy check on how close the approximation is getting. Of course, it is also easy to check using a calculator. (The filename should be hw05_02. f 95.)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Design Application Development And Administration

Authors: Mannino Michael

5th Edition

0983332401, 978-0983332404

More Books

Students also viewed these Databases questions

Question

What are Decision Trees?

Answered: 1 week ago

Question

What is meant by the Term Glass Ceiling?

Answered: 1 week ago