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