Question: OCaml: Write a function evaluate : expression -> float -> float. The application evaluate e v should substitute v for x in the given expression

OCaml:

Write a function evaluate : expression -> float -> float. The application evaluate e v should substitute v for x in the given expression and evaluate it to a float. For example,

evaluate (parse "~3.0*x^2 + x + 2.0") 0.0 = 2.0

evaluate (parse "~3.0*x^2 + x + 2.0") 1.0 = 0.0

evaluate (parse "~3.0*x^2 + x + 2.0") 2.0 = -8.0

Your implementation may be recursive (it need not be tail-recursive).

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!