Ask Your Question

william.cipolli's profile - activity

2014-06-29 21:29:30 +0200 received badge  Popular Question (source)
2014-06-29 21:29:30 +0200 received badge  Notable Question (source)
2013-02-11 08:20:35 +0200 commented question Help With ODE for a New Sage User

Thank you for the heads up, and submitting that ticket. I'll keep an eye out for a solution.

2013-02-09 21:44:22 +0200 received badge  Student (source)
2013-02-09 11:54:31 +0200 asked a question Help With ODE for a New Sage User
var('a b n k t')
c = function('c',t)
de = diff(c,t) - a + (b*c)*((c**n)/((k**n)+(c**n))) == 0
des = desolve(de,[c,t],[0,0]);show(des)
f(a,b,n,k,t,c) = des
plot(f(.1,3,8,.5,t,.42),(t,0,25),figsize=(4,3))

I followed an example almost exactly for a different equation to help solve this ODE:

c'=a-(bc((c^n)/(k^n+c^n))) with initial condition C[0]=0

The error I get is:

ValueError: The name "c(t)" is not a valid Python identifier.