Term Rewriting System R:
[x, y, z]
f(f(f(a, b), c), x) -> f(b, f(a, f(c, f(b, x))))
f(x, f(y, z)) -> f(f(x, y), z)

Innermost Termination of R to be shown.



   R
Dependency Pair Analysis



R contains the following Dependency Pairs:

F(f(f(a, b), c), x) -> F(b, f(a, f(c, f(b, x))))
F(f(f(a, b), c), x) -> F(a, f(c, f(b, x)))
F(f(f(a, b), c), x) -> F(c, f(b, x))
F(f(f(a, b), c), x) -> F(b, x)
F(x, f(y, z)) -> F(f(x, y), z)
F(x, f(y, z)) -> F(x, y)

Furthermore, R contains one SCC.


   R
DPs
       →DP Problem 1
Modular Removal of Rules


Dependency Pairs:

F(f(f(a, b), c), x) -> F(b, x)
F(f(f(a, b), c), x) -> F(c, f(b, x))
F(x, f(y, z)) -> F(x, y)
F(f(f(a, b), c), x) -> F(a, f(c, f(b, x)))
F(x, f(y, z)) -> F(f(x, y), z)
F(f(f(a, b), c), x) -> F(b, f(a, f(c, f(b, x))))


Rules:


f(f(f(a, b), c), x) -> f(b, f(a, f(c, f(b, x))))
f(x, f(y, z)) -> f(f(x, y), z)


Strategy:

innermost




We have the following set of usable rules:

f(f(f(a, b), c), x) -> f(b, f(a, f(c, f(b, x))))
f(x, f(y, z)) -> f(f(x, y), z)
To remove rules and DPs from this DP problem we used the following monotonic and CE-compatible order: Polynomial ordering.
Polynomial interpretation:
  POL(c)=  0  
  POL(b)=  0  
  POL(a)=  1  
  POL(F(x1, x2))=  1 + x1 + x2  
  POL(f(x1, x2))=  x1 + x2  

We have the following set D of usable symbols: {c, b, a, F, f}
The following Dependency Pairs can be deleted as the lhs is strictly greater than the corresponding rhs:

F(f(f(a, b), c), x) -> F(b, x)
F(f(f(a, b), c), x) -> F(c, f(b, x))

No Rules can be deleted.

The result of this processor delivers one new DP problem.



   R
DPs
       →DP Problem 1
MRR
           →DP Problem 2
Negative Polynomial Order


Dependency Pairs:

F(x, f(y, z)) -> F(x, y)
F(f(f(a, b), c), x) -> F(a, f(c, f(b, x)))
F(x, f(y, z)) -> F(f(x, y), z)
F(f(f(a, b), c), x) -> F(b, f(a, f(c, f(b, x))))


Rules:


f(f(f(a, b), c), x) -> f(b, f(a, f(c, f(b, x))))
f(x, f(y, z)) -> f(f(x, y), z)


Strategy:

innermost




The following Dependency Pair can be strictly oriented using the given order.

F(f(f(a, b), c), x) -> F(b, f(a, f(c, f(b, x))))


Moreover, the following usable rules (regarding the implicit AFS) are oriented.

f(f(f(a, b), c), x) -> f(b, f(a, f(c, f(b, x))))
f(x, f(y, z)) -> f(f(x, y), z)


Used ordering:
Polynomial Order with Interpretation:

POL( F(x1, x2) ) = x1

POL( f(x1, x2) ) = x1

POL( a ) = 1

POL( b ) = 0


This results in one new DP problem.


   R
DPs
       →DP Problem 1
MRR
           →DP Problem 2
Neg POLO
             ...
               →DP Problem 3
Narrowing Transformation


Dependency Pairs:

F(x, f(y, z)) -> F(x, y)
F(f(f(a, b), c), x) -> F(a, f(c, f(b, x)))
F(x, f(y, z)) -> F(f(x, y), z)


Rules:


f(f(f(a, b), c), x) -> f(b, f(a, f(c, f(b, x))))
f(x, f(y, z)) -> f(f(x, y), z)


Strategy:

innermost




On this DP problem, a Narrowing SCC transformation can be performed.
As a result of transforming the rule

F(f(f(a, b), c), x) -> F(a, f(c, f(b, x)))
two new Dependency Pairs are created:

F(f(f(a, b), c), x'') -> F(a, f(f(c, b), x''))
F(f(f(a, b), c), f(y', z')) -> F(a, f(c, f(f(b, y'), z')))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
MRR
           →DP Problem 2
Neg POLO
             ...
               →DP Problem 4
Semantic Labelling


Dependency Pairs:

F(f(f(a, b), c), f(y', z')) -> F(a, f(c, f(f(b, y'), z')))
F(f(f(a, b), c), x'') -> F(a, f(f(c, b), x''))
F(x, f(y, z)) -> F(f(x, y), z)
F(x, f(y, z)) -> F(x, y)


Rules:


f(f(f(a, b), c), x) -> f(b, f(a, f(c, f(b, x))))
f(x, f(y, z)) -> f(f(x, y), z)


Strategy:

innermost




Using Semantic Labelling, the DP problem could be transformed. The following model was found:
f(x0, x1)=  x1
a=  1
b=  0
c=  0
F(x0, x1)=  1

From the dependency graph we obtain 2 (labeled) SCCs which each result in correspondingDP problem.


   R
DPs
       →DP Problem 1
MRR
           →DP Problem 2
Neg POLO
             ...
               →DP Problem 5
Modular Removal of Rules


Dependency Pairs:

F01(x, f11(y, z)) -> F01(x, y)
F01(x, f01(y, z)) -> F00(x, y)
F00(x, f10(y, z)) -> F01(x, y)
F00(x, f00(y, z)) -> F00(x, y)


Rules:


f00(f00(f10(a, b), c), x) -> f00(b, f10(a, f00(c, f00(b, x))))
f00(x, f00(y, z)) -> f00(f00(x, y), z)
f00(x, f10(y, z)) -> f10(f01(x, y), z)
f10(x, f00(y, z)) -> f00(f10(x, y), z)
f10(x, f10(y, z)) -> f10(f11(x, y), z)
f01(f00(f10(a, b), c), x) -> f01(b, f11(a, f01(c, f01(b, x))))
f01(x, f01(y, z)) -> f01(f00(x, y), z)
f01(x, f11(y, z)) -> f11(f01(x, y), z)
f11(x, f01(y, z)) -> f01(f10(x, y), z)
f11(x, f11(y, z)) -> f11(f11(x, y), z)


Strategy:

innermost




We have the following set of usable rules: none
To remove rules and DPs from this DP problem we used the following monotonic and CE-compatible order: Polynomial ordering.
Polynomial interpretation:
  POL(f_11(x1, x2))=  x1 + x2  
  POL(F_00(x1, x2))=  x1 + x2  
  POL(f_00(x1, x2))=  x1 + x2  
  POL(f_10(x1, x2))=  x1 + x2  
  POL(F_01(x1, x2))=  x1 + x2  
  POL(f_01(x1, x2))=  x1 + x2  

We have the following set D of usable symbols: {F00, F01}
The following Dependency Pairs can be deleted as they contain symbols in their lhs which do not occur in D:

F01(x, f11(y, z)) -> F01(x, y)
F01(x, f01(y, z)) -> F00(x, y)
F00(x, f10(y, z)) -> F01(x, y)
F00(x, f00(y, z)) -> F00(x, y)

No Rules can be deleted.

After the removal, there are no SCCs in the dependency graph which results in no DP problems which have to be solved.



   R
DPs
       →DP Problem 1
MRR
           →DP Problem 2
Neg POLO
             ...
               →DP Problem 6
Modular Removal of Rules


Dependency Pairs:

F11(x, f11(y, z)) -> F11(x, y)
F11(x, f01(y, z)) -> F10(x, y)
F01(f00(f10(a, b), c), x'') -> F11(a, f01(f00(c, b), x''))
F11(x, f01(y, z)) -> F01(f10(x, y), z)
F10(x, f10(y, z)) -> F11(x, y)
F10(x, f00(y, z)) -> F10(x, y)
F00(f00(f10(a, b), c), x'') -> F10(a, f00(f00(c, b), x''))
F10(x, f00(y, z)) -> F00(f10(x, y), z)


Rules:


f00(f00(f10(a, b), c), x) -> f00(b, f10(a, f00(c, f00(b, x))))
f00(x, f00(y, z)) -> f00(f00(x, y), z)
f00(x, f10(y, z)) -> f10(f01(x, y), z)
f10(x, f00(y, z)) -> f00(f10(x, y), z)
f10(x, f10(y, z)) -> f10(f11(x, y), z)
f01(f00(f10(a, b), c), x) -> f01(b, f11(a, f01(c, f01(b, x))))
f01(x, f01(y, z)) -> f01(f00(x, y), z)
f01(x, f11(y, z)) -> f11(f01(x, y), z)
f11(x, f01(y, z)) -> f01(f10(x, y), z)
f11(x, f11(y, z)) -> f11(f11(x, y), z)


Strategy:

innermost




We have the following set of usable rules:

f11(x, f11(y, z)) -> f11(f11(x, y), z)
f10(x, f10(y, z)) -> f10(f11(x, y), z)
f01(f00(f10(a, b), c), x) -> f01(b, f11(a, f01(c, f01(b, x))))
f00(x, f10(y, z)) -> f10(f01(x, y), z)
f10(x, f00(y, z)) -> f00(f10(x, y), z)
f01(x, f01(y, z)) -> f01(f00(x, y), z)
f01(x, f11(y, z)) -> f11(f01(x, y), z)
f11(x, f01(y, z)) -> f01(f10(x, y), z)
f00(f00(f10(a, b), c), x) -> f00(b, f10(a, f00(c, f00(b, x))))
f00(x, f00(y, z)) -> f00(f00(x, y), z)
To remove rules and DPs from this DP problem we used the following monotonic and CE-compatible order: Polynomial ordering.
Polynomial interpretation:
  POL(f_11(x1, x2))=  1 + x1 + x2  
  POL(c)=  0  
  POL(f_00(x1, x2))=  x1 + x2  
  POL(F_00(x1, x2))=  x1 + x2  
  POL(b)=  0  
  POL(F_11(x1, x2))=  1 + x1 + x2  
  POL(f_10(x1, x2))=  1 + x1 + x2  
  POL(f_01(x1, x2))=  x1 + x2  
  POL(F_01(x1, x2))=  x1 + x2  
  POL(F_10(x1, x2))=  1 + x1 + x2  
  POL(a)=  0  

We have the following set D of usable symbols: {f11, c, F00, f00, b, F11, f10, F01, f01, F10, a}
The following Dependency Pairs can be deleted as the lhs is strictly greater than the corresponding rhs:

F11(x, f11(y, z)) -> F11(x, y)
F10(x, f10(y, z)) -> F11(x, y)

No Rules can be deleted.

The result of this processor delivers two new DP problems.



   R
DPs
       →DP Problem 1
MRR
           →DP Problem 2
Neg POLO
             ...
               →DP Problem 7
Unlabel


Dependency Pairs:

F10(x, f00(y, z)) -> F10(x, y)
F00(f00(f10(a, b), c), x'') -> F10(a, f00(f00(c, b), x''))
F10(x, f00(y, z)) -> F00(f10(x, y), z)


Rules:


f00(f00(f10(a, b), c), x) -> f00(b, f10(a, f00(c, f00(b, x))))
f00(x, f00(y, z)) -> f00(f00(x, y), z)
f00(x, f10(y, z)) -> f10(f01(x, y), z)
f10(x, f00(y, z)) -> f00(f10(x, y), z)
f10(x, f10(y, z)) -> f10(f11(x, y), z)
f01(f00(f10(a, b), c), x) -> f01(b, f11(a, f01(c, f01(b, x))))
f01(x, f01(y, z)) -> f01(f00(x, y), z)
f01(x, f11(y, z)) -> f11(f01(x, y), z)
f11(x, f01(y, z)) -> f01(f10(x, y), z)
f11(x, f11(y, z)) -> f11(f11(x, y), z)


Strategy:

innermost




Removed all semantic labels.

   R
DPs
       →DP Problem 1
MRR
           →DP Problem 2
Neg POLO
             ...
               →DP Problem 10
Remaining Obligation(s)




The following remains to be proven:


   R
DPs
       →DP Problem 1
MRR
           →DP Problem 2
Neg POLO
             ...
               →DP Problem 8
Unlabel


Dependency Pairs:

F11(x, f01(y, z)) -> F01(f10(x, y), z)
F01(f00(f10(a, b), c), x'') -> F11(a, f01(f00(c, b), x''))


Rules:


f00(f00(f10(a, b), c), x) -> f00(b, f10(a, f00(c, f00(b, x))))
f00(x, f00(y, z)) -> f00(f00(x, y), z)
f00(x, f10(y, z)) -> f10(f01(x, y), z)
f10(x, f00(y, z)) -> f00(f10(x, y), z)
f10(x, f10(y, z)) -> f10(f11(x, y), z)
f01(f00(f10(a, b), c), x) -> f01(b, f11(a, f01(c, f01(b, x))))
f01(x, f01(y, z)) -> f01(f00(x, y), z)
f01(x, f11(y, z)) -> f11(f01(x, y), z)
f11(x, f01(y, z)) -> f01(f10(x, y), z)
f11(x, f11(y, z)) -> f11(f11(x, y), z)


Strategy:

innermost




Removed all semantic labels.

   R
DPs
       →DP Problem 1
MRR
           →DP Problem 2
Neg POLO
             ...
               →DP Problem 10
Remaining Obligation(s)




The following remains to be proven:

The Proof could not be continued due to a Timeout.
Innermost Termination of R could not be shown.
Duration:
1:00 minutes