Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Here's output of another sample run ( again , user input is shown in bold red ) : This program will calculate the integral of
Here's output of another sample run again user input is shown in bold red:
This program will calculate the integral of the function
between user defined limits: a and
What is the value of
What is the value of b:
The accuracy of this calculation depends on the value
of that you use.
What is the value of :
The integral over the provided limits is
And yet another sample run:
This program will calculate the integral of the function
between user defined limits: a and
What is the value of :
What is the value of :
The accuracy of this calculation depends on the value
of that you use.
What is the value of :
The integral over the provided limits is
To help clarify, here are some specifics andor constraints:
Your program will require at least five userdefined functions. Feel free to add any extra functions you think are necessary.
A function that is in charge of prompting the user for any information. It takes a single argument representing the value required, prompts the user for that value, and returns the result to the calling statement.
A function that prints the introductory statements of the program. It does not take any arguments and does not return any values.
A function that prints out the statement about the accuracy of the value. It does not take any arguments and does not return any values.
A function that evaluates the given mathematical function ie It takes a single argument that represents and returns the result of to the calling statement.
A function that calculates the riemann sum. It takes three arguments that represent the lower and upper limits of the integral, as well as the value of ie the number of steps between the lower and upper limit It returns the riemann sum to the calling statement.
The main part of your program should make use of the functions outlined above in such a way as to satisfy the problem statement ie print the appropriate information, prompt for the appropriate information, and print out the appropriate results.
Your output should be exactly like the sample runs shown above of course, actual input values and calculations will vary depending on the provided inputs;
You must include a meaningful header, use good coding style, use meaningful variable names, and comment your source code where appropriate;
You must use the provided source code template it contains helpful comments that can help you structure your code; and
You must submit your source che as a single py file.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started