how to solve the following equations using mathematica? dP/dt = rP (1-P/k)???
You can use DSolve
DSolve[p'[t] == r p[t] (1 - p[t]/k), p[t], t]