Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

I need to plot two differential equations on the same set of axes (with a legend showing which is which). My domain has to be 0≤t≤100. Listed below is my code, any help is greatly appreciated.

t = var('t') x = function('x')(t) y = function('y')(t) de1 = diff(x,t) == -3/20x + 1/12y de2 = diff(y,t) == 3/20x-3/20y sol = desolve_system([de1,de2],[x,y],ics=[0,4,0])

f(t) = sol[0].rhs() g(t) = sol[1].rhs()

I need to plot two differential equations on the same set of axes (with a legend showing which is which). My domain has to be 0≤t≤100. Listed below is my code, any help is greatly appreciated.

Listed below is my code:

t = var('t')
x = function('x')(t)
y = function('y')(t)
de1 = diff(x,t) == -3/20x -3/20*x + 1/12y
1/12*y
de2 = diff(y,t) == 3/20x-3/20y
3/20*x-3/20*y
sol = desolve_system([de1,de2],[x,y],ics=[0,4,0])

desolve_system([de1,de2],[x,y],ics=[0,4,0])

f(t) = sol[0].rhs() g(t) = sol[1].rhs()

sol[1].rhs()

I need to plot two differential equations on the same set of axes (with a legend showing which is which). My domain has to be 0≤t≤100. Listed below is my code, any help is greatly appreciated.

Listed below is my code:

t = var('t')
x = function('x')(t)
y = function('y')(t)
de1 = diff(x,t) == -3/20*x + 1/12*y
de2 = diff(y,t) == 3/20*x-3/20*y
sol = desolve_system([de1,de2],[x,y],ics=[0,4,0])

f(t) = sol[0].rhs()
g(t) = sol[1].rhs()

Plot solutions of two differential equations on same axes with legend

I need to plot two differential equations on the same set of axes axes (with a legend showing which is which). which).

My domain has to be 0≤t≤100. 0 ≤ t ≤ 100.

Listed below is my code, any help is greatly appreciated.

Listed below is my code:

t = var('t')
x = function('x')(t)
y = function('y')(t)
de1 = diff(x,t) == -3/20*x + 1/12*y
de2 = diff(y,t) == 3/20*x-3/20*y
sol = desolve_system([de1,de2],[x,y],ics=[0,4,0])

f(t) = sol[0].rhs()
g(t) = sol[1].rhs()