Question: PLEASE PLOT A GRAPH OF THE GIVEN CODE IN PYTHON. Q: Also compute the sequence with f(x) = cx(1x), for case, namely, c = 1.55,
PLEASE PLOT A GRAPH OF THE GIVEN CODE IN PYTHON.
Q: Also compute the sequence with f(x) = cx(1x), for case, namely, c = 1.55, For the case choose the value of x (0) to lie between 0 and 1, for example, x (0) = 0.1. Plot the results on the graph in terms of N values.
CODE:
def fun(c2,x):
return c2*x*(1-x);
x0=0.5;
c2=1.55;
print("------------------------------");
print("Values of case 2 when c = 1.55");
for i in range(1,21):
x0=fun(c2,x0);
print("x",i,"=",x0);
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
