davidp

5 Reputation

2 Badges

13 years, 180 days

MaplePrimes Activity


These are questions asked by davidp

how do i add more buttons into my maplets

given a recursive sequence : J(n)=b*A(n)  for b=0.5 , A(0)=70% , n is integer

wrote a procedure to find J(n), for example: find J(5)=?

 

i need help with this please .

i have a D.E. systems:

Jn=2An

Sn+1=Jn

An+1=Sn+0.5An

and initial conditions A0=10, J0=30, S0=5

can i use rsolve to solve this or is there another ways to solve this systems

i tried to plot a differential equation with piecewise.

h:=piecewise(0 <= t and t <= 1, 1, 1 < t and t <= 2, 2, 2 <= t and t <= 3, 0, 3 < t and t <= 4, 2, 4 < t, 1.5):

g3:=diff(y(t),t)=((800-y(t))*y(t)/*(100+y(t)))-E*h

ivs6:=[y(0)=100,y(0)=500,y(0)=1500]:

with(DETools):

DEplot(g3,y(t),t=0..10,ivs6);

how to find the equilibrium point of a differential equation y'(t)=(800-y(t)).y(t)/(100+y(t))

1 2 Page 1 of 2