Question: find an explicit function of two functions of time.

i have ode system of two dependent variables y and x  and one independent varibale time. how can i find explicit expression between y and x? 

 

restart

sys:=diff(x(t),t)=x(t)*y(t)+t,diff(y(t),t)=x(t)-t;

diff(x(t), t) = x(t)*y(t)+t, diff(y(t), t) = x(t)-t

(1)

dsolve([sys,x(0)=0,y(0)=1],[x(t),y(t)],series)

{x(t) = series((1/2)*t^2+(1/6)*t^3+(1/24)*t^4-(1/24)*t^5+O(t^6),t,6), y(t) = series(1-(1/2)*t^2+(1/6)*t^3+(1/24)*t^4+(1/120)*t^5+O(t^6),t,6)}

(2)

 

 

 


 

Download explicit.mw

Please Wait...