Question: Solving and then plotting differential equations

Hi I have three differential equations: 

u := diff(P(t), t) = -7*10^(-8)*P(t)*t/(P(t)*t+R(t))^(1/2),

diff(R(t), t) = 7*10^(-8)*t^2*P(t)/(P(t)*t+R(t))^(1/2)+600*(Z(t)^2-10^5*t^3*(1/(1.15*10^12))^(2/3)*e^(-1.15*10^12))/(t*(P(t)*t+R(t))^(1/2)),

diff(Z(t), t) = -4*10^5*(Z(t)^2-10^5*t^3*(1/(1.15*10^12))^(2/3)*e^(-1.15*10^12))/(t^2*(P(t)*t+R(t))^(1/2))

 

and i want to solve them with initial conditions:

initial := R(0) = 0, Z(0) = 0, P(0) = P;

but it returns the error:

Error, (in dsolve) ambiguous multiple assignment

nd i cant see why, also any help for plotting would be appreciated.

Thanks

Please Wait...