| 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)
| 2 | No.2 Revision |
Be careful and make multiplication explicit.
Instead The differential equation studied here is
$$
x'(t) = 2 · x(t) · (15 - x(t))
$$
and not
$$
x'(t) = 2 · x(15 - x(t))
$$
so instead of
de = diff(x, t) == 2 * x(15 - x)
you want
de = diff(x, t) == 2 * x * (15 - x)
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.