Question
Q) Negative3Sum = 0; for (i = 1; i
Q)
Negative3Sum = 0;
for (i = 1; i <= 3*n; i++)
Negative3Sum = Negative3Sum i ;
a. Calculate the theoretical time complexity by counting the number of subtractions as a basic operation. What do you think is the Big-Oh for the complexity? Prove how did you get the big-Oh only for 1.
b. Plot a graph of the theoretical time complexity.
c. Implement the code in the language of your choice, and find the running time for several values of n (for instance, for n = 1000, 2000, 3000,10000) and plot the results. (make sure not to have other applications running in the background. You can use different values for n as you see fit). show the full code. (python)
d. Using the two plotted graphs, comment on the growth rate of the theoretical time complexity in comparison with the actual running times.
Please solve briefly.
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