I'm trying to plot a phase portrait for the equation:
(d^2/dt^2)y + b * (dy/dt)^2 = A, A > 0, b < 0 The first thing I did was changing dy/dt to p[y], so the equation is:
p'[y] + b * (p[y])^2 = A, A > 0, b < 0 However, when I make a stream plot and substitute for A and b, I see a blank plot. How can I fix this?