In need a solution of the two simultaneous differential equations:
dy/dt = 0.2 y(t) f(t) – 0.05 y(t)
df/dt = - 0.05 y(t) f(t)
with y(0) = 0.00001 and f(0) = 0.9999
I tried the Euler method provided by WolframAlpha Pro Premium: Input :
use Euler method dy/dt = 0.2 y(t) f(t) – 0.05 y(t), df/dt = - 0.05 y(t) f(t), y(0) = 0.000012, f(0) = 1.0, from 1 to 180
output : Interpreting as:
dy/dt = 0.2 y(t) f(t) - 0.05 y(t)
The program accepts one differential equation only and a solution is provided in the form of an integral equation. The same happened with the Runge-Kutta method. Can anybody help me to find the error ? Is the syntax wrong ? Or is there a principal missunderstanding ? I am sorry, I just started to use Wolfram. Ernst