Symbolic difference equation system

3 次查看(过去 30 天)
I'm trying to solve a system of differences equations in a symbolic way:
syms Y(t) A(t) K(t) S(T) I(t) N(T) delta lambda s theta gamma alpha
eqn1 = Y(t) == (1+alpha)^(t)*K(t)^theta
eqn2 = K(t+1) == (1-delta)*K(t) + I(t)
eqn3 = S(t) == s*Y(t)
eqn4 = S(t) == I(t)
eqn5 = N(t+1) == (1+lambda)*N(t)
sol = solve(eqn1,eqn2,eqn3,eqn4, delta,'IgnoreAnalyticConstraints',1)
I get the following error message:
1.png
How could I solve the problem?

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Number Theory 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by