Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a program that receives a real number in decimal (base 10) and converts it into binary. You must implement the algorithm discussed in Chapter

Write a program that receives a real number in decimal (base 10) and converts it into binary.

You must implement the algorithm discussed in Chapter 1

Input: x (0, 1), integer 2 and c0 = x;

i = 0;

while ci = 0 .and. i Imax do

i = i + 1;

bi = (ci1)I ;

ci = (ci1)F ;

end while

Output: x = ( . b1b2b3 . . . bi) = i k=1 bk k .

. You may not use libraries or built-in functions (e.g., Double.toHexString(...) in Java or {0:b}.format(...) in Python)

2. The following algorithm (attributed to Clever Moler) estimates machine precision (eps): a = 4.0/3.0; b = a 1.0; c = b + b + b; eps = abs(c 1.0). Implement the program twice with single and double precision variable types and report the value of eps for both single and double precision.

3. a) write a program to compute an approximate value for the derivative of a function using the finite difference formula f (x) f(x + h) f(x) h . (2) Test your program using the function sin(x) for x = 1. Determine the error by comparing with the built-in function cos(x). Plot the magnitude of the error as a function of h, for h = 1 2 , 1 4 , 1 8 , . . . You should use a log scale for h and the magnitude of the error. Is there a minimum value for the magnitude of the error? b) (5 points) Check if the corresponding value of h to the minimum value for the magnitude of the error can be approximately equal to eps ? Why?

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

Step: 3

blur-text-image

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

More Books

Students also viewed these Databases questions

Question

Find the derivative of y= cos cos (x + 2x)

Answered: 1 week ago

Question

3. Identify cultural universals in nonverbal communication.

Answered: 1 week ago

Question

2. Discuss the types of messages that are communicated nonverbally.

Answered: 1 week ago