Is there a computable procedure for testing whether a given modal schema is true in a given finite relational model?
This is inspired by question 2 on page 19 by internal numbering (PDF page 34) of the full build of Boxes and Diamonds. (Warning: some spoilers for exercises)
That question is about the truth of the schema $A \to \lozenge A$ in model $M$, where $A$ is an arbitrary formula.
The model $M$ is defined as follows.
There are three worlds $w_1, w_2, w_3$.
There are three primitive propositions $p_1, p_2, p_3$.
The accessibility relation $R$ is $\{(w_1, w_2), (w_1, w_3), (w_2, w_3), (w_3, w_3)\}$.
And the valuation function $V$ is defined by $V(w_i, p_j) = 1$ if and only if $i \le j$, otherwise $V(w_i, p_j) = 0$.
We can demonstrate that $A \to \lozenge A$ doesn't hold everywhere by picking $A$ to be equal to $\lnot p_2$ and picking $w_1$.
$\lnot p_2$ holds at $w_1$. However $\lnot p_2$ fails at both $w_2$ and $w_3$, therefore the original formula $A \to \lozenge A$ is not true.
However, this was a lucky guess and naively testing all possible combinations of formulas and worlds would take infinite time.
This got me wondering: is there a computable procedure for testing whether a given modal schema is true in a finite relational model?