We consider the TRS containing the following rules:
| a | → | b | (1) |
| a | → | f(a) | (2) |
| b | → | f(f(b)) | (3) |
The underlying signature is as follows:
{a/0, b/0, f/1}| t0 | = | a |
| → | f(a) | |
| → | f(b) | |
| = | t2 |
| t0 | = | a |
| → | b | |
| = | t1 |
As carrier we take the set {0,1}. Symbols are labeled by the interpretation of their arguments using the interpretations (modulo 2):
| [b] | = | 1 |
| [f(x1)] | = | 1 + 1x1 |