jeffb

0 Reputation

One Badge

12 years, 307 days

MaplePrimes Activity


These are answers submitted by jeffb

let say if i want to plot J[n], S[n], A[n] on the x,y plane then should i use Array to store all the value?

J(n)=0.5*A(n)        

S(n+1)=0.75*J(n)

A(n+1)=0.8*S(n)+0.7*A(n)

initial condition : A0=70 , J0=75 , S0=80

myDE:=proc(n)

local i, A,J,S;

A0:=70;

S0:=80;

J0:=75;

for i from 1 to n do

i don't think this is right.

 

Page 1 of 1