I am trying to solve a differential equation in Mathematica, and I don't really understand it very well. I will show the equation, my attempt and the error message below:
equation:
dp(t)/dt=rb(1-p(t))
attempt:
b = .02;
d = .015;
r = .1;
h = 1;
t = 0;
Clear[p, t]
DSolve[{p'[t] == r*b*(1 - p[t]), p[0] == .01}, p[t], t]
Error:
DSolve::deqn: Equation or list of equations expected instead of True in the first argument {True,p[0]==0.01}. >>