Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

I have to write out the sqrtfunction in Ocaml using the given functions: close and square. 1. Here is a way to compute the square

image text in transcribed

I have to write out the sqrtfunction in Ocaml using the given functions: close and square.

1. Here is a way to compute the square root of a positive real number say x. We make a wild guess that the square root is some number g. Then we check if g' is close to X. If it is we return g as our answer; if not we refine our guess using the formula 2.0 where g' is the new guess. We keep repeating until we are close enough. Write an OCaml program to implement this idea. Since we are working with floating point numbers we cannot check for equality; we need to check if the numbers are close enough. I have written a function called close for you as well as a function called square . In OCaml floating point operations need special symbols: you need to put a dot after the operation. Thus you need to write, for example, 2.0 +. 3.0. All the basic arithmetic operations have dotted versions: +. , *. , /. and must be used with floating point numbers. You cannot write expressions like 2 +.3.5 or 2.0 + 3.0 We will not test your program on negative inputs so we are not requiring you to deal with the possibility that you may get a negative answer. There are of course built-in functions to compute square roots. We have written the tester program to check if you used this; you will get a zero if you use a built-in function. 2. This is similar to the question above except that we are computing cube roots, The OCaml prelude exception NotImplemented;; let close C(x: float), (y: float)) -abs-float (x-. )

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered 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

Students also viewed these Databases questions