Hi,
I'm trying to solve the system
$$
\begin{align*}
&V(m)=\alpha + \beta V(m+1)+\beta \sum_{f=1}^4 Z(m+1,f)\
&U(f)=\gamma +\beta U(f+1)+\beta \sum_{m=1}^4 Z(m,f+1)\
&Z(m,f)=\zeta + \beta (Z(m+1,f+1)+U(f+1)+V(m+1))\
&V(4)=U(4)=Z(4,f)=Z(m,4)=0.
\end{align*}
$$
Using recurrence table, my code is
T = 4;
\[Beta] = .95;
\[Alpha] = .3;
\[Gamma] = .2;
\[Zeta] = \[Alpha] + \[Gamma] + .3
RecurrenceTable[{
V[m]==\[Alpha]+\[Beta] V[m+1]+\[Beta] Sum[Z[m+1,f],{f,1,4}],
U[f]==\[Gamma]+\[Beta] U[f+1]+\[Beta] Sum[Z[m,f+1],{m,1,4}],
Z[m,f]==\[Zeta]+\[Beta] Z[m+1,f+1]+\[Beta] U[f+1]+\[Beta] V[m+1],
V[T]==0,U[T]==0,Z[4,1]==Z[4,2]==Z[4,3]==Z[4,4]==Z[3,4]==Z[2,4]==Z[1,4]==0},
{V,U,Z},{m,1,T-1},{f,1,T-1}]
However, I get a strange-looking error: RecurrenceTable::dvlen: -- Message text not found -- (V[m]) (2) >>
What throws me off is the "Message text not found". Does anyone notice what's wrong with my code? I'm using Mathematica 10.1 on a Mac.