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