Question: python code for root finding problem. Do not use numpy or other python modules but math and copy. Give a well explained comments. The code
python code for root finding problem.
Do not use numpy or other python modules but math and copy. Give a well explained comments. The code should be as for python beginners, so be very didactical.
Please do no answer if it is 09.17.18 20:00 hrs GMT


Write a Python program that mcets the following requirements a) The program must have a function named Norm(x). This function has one argument named x, a b) The program has a function named CumNorn(xval). This function has one argument named xval, floating point number. This function must calculate and return the value of the Normal function as defined above, for the valuc of x passed in. (This should require 2 lines of code) a floating point number. This function must calculate and return the value of the Cumulative Normal function for the given xval. This function does NOT print anything. You must use numerical integration in this function Note that we cannot perform numerical integration with a lower limit of minus infinity. Instead, use a lower limit of (-5). That is surprisingly close enough. (This should require 2 or 3 lines of code c) The program has a function named InvCumNorm(given Value). This function has one argument named givenValue, a floating point number. This function must calculate and return the value of the Inverse Cumulative Normal for the given Value. This function does NOT print anything. You must use your Secant) fuction in this function. I suggest starting guesses in the near xval d) The main program: a. Calls Norm(1.5) and prints the answer, nicely formatted, with a label. Calls CumNorm(1.5) and prints the answer, nicely formatted, with a label. c. Calls InvCumNorm(0 90) and prints the answer, nicely formatted, with a label
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
