hello? I wrote the following equations to be solved. restart; eq1:=expand(sum((-1)^(i+1)*cos(omega*t[i]),i=1..5)=0): eq2:=expand(sum((-1)^(i+1)*sin(omega*t[i]),i=1..5)=0): eq3:=expand(sum((-1)^(i+1)*cos(r*omega*t[i]),i=1..5)=0): eq4:=expand(sum((-1)^(i+1)*sin(r*omega*t[i]),i=1..5)=0): t[1]=0;t[4]:=2*t[3]-t[2];t[5]:=2*t[3]; _EnvAllSolutions:=true: _EnvExplicit:=true: s1:=solve({eq1,eq2,eq3,eq4},{t[2],t[3],r}); Do I have to specify t[3]>t[2], t[2]>0 in the code? where t[1] to t[5] are time variables starting from t[1]=0 and omega and r are constants. How can I get the solutions for t[2] and t[3]? Thanks

Please Wait...