Question: Who can help me to solve the nonlinear question

I have to solve the nonlinear equation, i give the all indication, but the system also give the error to me. who can help me to solve this problem? my equation is : a[1]:=2:b[1]:=0.01:a[2]:=1:b[2]:=0.01: a[0]:=1:b[0]:=0.01:a[3]:=1:b[3]:=0.01:v:=0.2: RF:=diff(x[1](t),t)=a[0]+a[1]*x[1]+a[2]/(v-x[1])+a[3]*x[2]/(x[1]*(v-x[1])),diff(x[2](t),t)=b[0]+b[1]*x[1]+b[2]/(v+x[1])+b[3]*x[2]/(x[1]*(v-x[1])); > ic:=x[1](0)=5,D(x[1])(0)=0,x[2](0)=1,D(x[2])(0)=0;x[1]*0.2=x[2]; > dsolve({RF,ic},x[1](t),x[2](t),type=numeric); Error, (in dsolve/numeric/process_input) received more than one indication of the dependent vars [x[1](t), x[2](t)] PS: I also want to plot the diagram {x[1] ,t} and {x[2],t}.
Please Wait...