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