Question: when use 1000 points the maple can not provide result why !!! could you help me please?

 

Hi,

I try to find minimum value for numbers as follow,

for i from 1 to 1000 do

x:= 1+i; 

y[i]:= 2*x+1;

a:=min(seq(y[k],k=1..1000));  print(a); od;

in this case the maple can not provide any solution

however, when i use 100 instead 1000 i obtain result as follow,

for i from 1 to 100 do x:= 1+i;  y[i]:= 2*x+1; a:=min(seq(y[i],i=1..100));  print(a); od;

could you please help me to solve this problem?

 

 

Please Wait...