| plus#( plus( X , Y ) , Z ) | → | plus#( X , plus( Y , Z ) ) |
| plus#( plus( X , Y ) , Z ) | → | plus#( Y , Z ) |
| times#( X , s( Y ) ) | → | plus#( X , times( Y , X ) ) |
| times#( X , s( Y ) ) | → | times#( Y , X ) |
The dependency pairs are split into 2 component(s).
| times#( X , s( Y ) ) | → | times#( Y , X ) |
Linear polynomial interpretation over the naturals
| [plus (x1, x2) ] | = | x1 | |
| [s (x1) ] | = | 2 x1 + 2 | |
| [times# (x1, x2) ] | = | 3 x1 + 2 x2 | |
| [times (x1, x2) ] | = | x1 + x2 + 2 | |
| [f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
| none |
All dependency pairs have been removed.
| plus#( plus( X , Y ) , Z ) | → | plus#( Y , Z ) |
| plus#( plus( X , Y ) , Z ) | → | plus#( X , plus( Y , Z ) ) |
Linear polynomial interpretation over the naturals
| [plus (x1, x2) ] | = | x1 + x2 + 3 | |
| [s (x1) ] | = | 2 x1 + 3 | |
| [plus# (x1, x2) ] | = | x1 | |
| [times (x1, x2) ] | = | 3 x1 + 2 x2 + 2 | |
| [f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
| none |
All dependency pairs have been removed.