Question: Write a program called logex.py to compute the following sum for x >= 0: - S = x x + x 33 4 xN
Write a program called logex.py to compute the following sum for x >= 0: - S = x x + x 33 4 xN (-1) N N+1 - + N Both N and x are provided as input to the program. N is a positive integer, while x is a real positive number. For example, an input of x=1 and n=4 would lead to an output s=0.5833333333333333 Hint: Add repeatedly the terms of the sum one at a time. Note: The submission should consist of your Python source code file (*.py). Do not zip the file. Any other forms of submissions will be marked as zero.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
