Processing math: 100%
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

Be careful and make multiplication explicit.

Instead of

de = diff(x, t) == 2 * x(15 - x)

you want

de = diff(x, t) == 2 * x * (15 - x)
click to hide/show revision 2
No.2 Revision

Be careful and make multiplication explicit.

Instead The differential equation studied here is x(t)=2·x(t)·(15x(t)) and not x(t)=2·x(15x(t)) so instead of

de = diff(x, t) == 2 * x(15 - x)

you want

de = diff(x, t) == 2 * x * (15 - x)