Question: python code please Write a program named Lab1b_Act3.py that performs the following tasks for the function f(x) = V(x+5) = V(5) evaluated close to x

Write a program named Lab1b_Act3.py that performs the following tasks for the function f(x) = V(x+5) = V(5) evaluated close to x = 0. Use values of x ranging from 1 to 10-? in steps of 1/10 of the previous value (x = 1, x = 0.1, x = 0.01...). 1) First, print a line of text stating the purpose of the program 2) Next, print a line of text stating your guess for the final calculated value a. There are no wrong answers, just make a guess b. Think about the answer then see if your guess was close 3) Next, print out a sequence of 8 numbers, representing evaluating the function at 8 different values 4) Finally, print one blank line, followed by a statement of how good your guess is As an example, for the equation f() =tan(x)/x evaluated close to x = 0, your output would look like what's shown below. Make sure your code evaluates f(x) (x+5)-(5) Example output (using tan(x)/x): This shows the evaluation of tan(x)/x evaluated close to x=0 My guess is 2 1.5574077246549023 1.0033467208545055 1.0000333346667207 1.0000003333334668 1.0000000033333334 1.0000000000333333 1.0000000000003333 1.0000000000000033 My guess was a little off
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
