How to solve a non-linear system of difference equations ?

조회 수: 4 (최근 30일)
Nicloot
Nicloot 2019년 7월 2일
댓글: Nicloot 2019년 7월 3일
Hi ! I am a beginner with matlab and I have some promblem very important for my research...
I am trying to solve (or more precisely to simulate) the following system numerically.
I write the following code but I think it misses some matlab function (like solve for exemple)...
The point it that I don't know how I can implement it together with the loop...
Here is the code :
K(1) = 10;
S(1) = 1000;
S(2) = 950;
E(1) = 1000;
A(1) = 10;
a = 0.9;
alpha = 0.3;
beta = 0.6;
gamma = 0.1;
z = 0.2;
rho = 2;
delta = 0.9;
phi = 0.2;
b = 0.1;
Etilde = 1000;
%b*Etilde+(1-b)*E(t);
x = linspace(1,100);
for t=1:length(x)-2
S(t+1) = (1/(1+rho))*(((1+alpha*A(t+1)*K(t+1)^(alpha-1)*(1+z)^beta*(S(t+1)-S(t+2))^gamma-delta)*beta*A(t)*K(t)^alpha*(1+z)^beta*(S(t)-S(t+1))^gamma)/((1+alpha*A(t+1)*K(t+1)^(alpha-1)*(1+z)^beta*(S(t+1)-S(t+ 2))^gamma-delta)*gamma*A(t)*K(t)^alpha*(1+z)^beta*(S(t)-S(t+1))^(gamma-1)-gamma*A(t+1)*K(t+1)^alpha*(1+z)^beta*(S(t+1)-S(t+2))^(gamma-1)));
K(t+1) = beta*A(t)*K(t)^alpha*(1+z)^beta*(S(t)-S(t+1))^gamma-gamma*A(t+1)*K(t+1)^alpha*(1+z)^beta*(S(t+1)-S(t+2))^(gamma-1)*S(t+1);
E(t+1) = (1/(1+rho))*(b*Etilde+(1-b)*E(t)+phi*((((1+alpha*A(t+1)*K(t+1)^(alpha-1)*(1+z)^beta*(S(t+1)-S(t+2))^gamma-delta)*beta*A(t)*K(t)^alpha*(1+z)^beta*(S(t)-S(t+1))^gamma)/((1+alpha*A(t+1)*K(t+1)^(alpha-1)*(1+z)^beta*(S(t+1)-S(t+2))^gamma-delta)*gamma*A(t)*K(t)^alpha*(1+z)^beta*(S(t)-S(t+1))^(gamma-1)-gamma*A(t+1)*K(t+1)^alpha*(1+z)^beta*(S(t+1)-S(t+2))^(gamma-1)))-S(t)));
A(t+1) = A(t)*(1+a);
end
K(t)
E(t)
S(t)
figure(1)
plot(x,K)
figure(2)
plot(x,E)
figure(3)
plot(x,S)
grid
If someone has an idea...
Many thanks,
Nicolas
  댓글 수: 2
Torsten
Torsten 2019년 7월 2일
Most probably, you won't be able to get an analytical formula for S, T and E depending on the initial values and the index t. Or what did you expect to get ?
Nicloot
Nicloot 2019년 7월 2일
Sure, that's why I would like to simulate the model in order to plot K, S and E for t=0...N (N large...). The point is that it would require some numerical solver, but I don't know which one I should use (vpasole???) and how to do it.

댓글을 달려면 로그인하십시오.

답변 (2개)

Torsten
Torsten 2019년 7월 2일
Call "fsolve" repeatedly to get
(S3,K2,E2),
(S4,K3,E3),
...
(S(t+2),K(t+1),E(t+1))
A(t) = A(1)*(1+a)^(t-1)
is obvious.
  댓글 수: 6
Nicloot
Nicloot 2019년 7월 3일
Immediately in the first loop. I try several combinations of parameter values and initial conditions, but they all fail...
Torsten
Torsten 2019년 7월 3일
You can test if "fun" returns reasonable values if you insert the line
fun(x0)
before calling "fsolve".
I think you will come into trouble with your exponentiations x^a if x becomes negative or if x becomes 0 and a is negative.

댓글을 달려면 로그인하십시오.


Nicloot
Nicloot 2019년 7월 3일
편집: Nicloot 2019년 7월 3일
Here is the matlab output,
ans =
1.0e+03 *
3.6167
Inf
0.7333
-0.0009
There is clearly a problem since we can see that x(4)=-0.9 which is clearly different than the expected 1.91 (since)
(edit : I change the parameter a to 0.91 and initial value for A to 1 in my last attempt)
  댓글 수: 2
Torsten
Torsten 2019년 7월 3일
The output gives the function value, not the variable value:
x(4)-x0(4)*(1+a) = -0.9
The bigger problem is fun(2) = Inf which results from 0^(gamma-1)
Nicloot
Nicloot 2019년 7월 3일
Ok, thanks, so the value for A is logical.
I checked my calculation twice... Don't understand what goes wrong... I'll check one more time !
Thank again !

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by