(0) Obligation:

Q restricted rewrite system:
The TRS R consists of the following rules:

a__eq(0, 0) → true
a__eq(s(X), s(Y)) → a__eq(X, Y)
a__eq(X, Y) → false
a__inf(X) → cons(X, inf(s(X)))
a__take(0, X) → nil
a__take(s(X), cons(Y, L)) → cons(Y, take(X, L))
a__length(nil) → 0
a__length(cons(X, L)) → s(length(L))
mark(eq(X1, X2)) → a__eq(X1, X2)
mark(inf(X)) → a__inf(mark(X))
mark(take(X1, X2)) → a__take(mark(X1), mark(X2))
mark(length(X)) → a__length(mark(X))
mark(0) → 0
mark(true) → true
mark(s(X)) → s(X)
mark(false) → false
mark(cons(X1, X2)) → cons(X1, X2)
mark(nil) → nil
a__eq(X1, X2) → eq(X1, X2)
a__inf(X) → inf(X)
a__take(X1, X2) → take(X1, X2)
a__length(X) → length(X)

Q is empty.

(1) QTRSRRRProof (EQUIVALENT transformation)

Used ordering:
Recursive path order with status [RPO].
Quasi-Precedence:
mark1 > ainf1 > cons2 > s1 > [aeq2, 0, true, eq2] > [false, nil]
mark1 > ainf1 > cons2 > s1 > take2 > [false, nil]
mark1 > ainf1 > cons2 > [alength1, length1] > [aeq2, 0, true, eq2] > [false, nil]
mark1 > ainf1 > inf1 > [false, nil]
mark1 > atake2 > cons2 > s1 > [aeq2, 0, true, eq2] > [false, nil]
mark1 > atake2 > cons2 > s1 > take2 > [false, nil]
mark1 > atake2 > cons2 > [alength1, length1] > [aeq2, 0, true, eq2] > [false, nil]

Status:
eq2: [2,1]
ainf1: multiset
true: multiset
mark1: [1]
take2: multiset
atake2: [1,2]
0: multiset
inf1: multiset
cons2: multiset
alength1: [1]
false: multiset
s1: multiset
aeq2: [2,1]
length1: [1]
nil: multiset

With this ordering the following rules can be removed by the rule removal processor [LPAR04] because they are oriented strictly:

a__eq(0, 0) → true
a__eq(s(X), s(Y)) → a__eq(X, Y)
a__eq(X, Y) → false
a__inf(X) → cons(X, inf(s(X)))
a__take(0, X) → nil
a__take(s(X), cons(Y, L)) → cons(Y, take(X, L))
a__length(nil) → 0
a__length(cons(X, L)) → s(length(L))
mark(eq(X1, X2)) → a__eq(X1, X2)
mark(inf(X)) → a__inf(mark(X))
mark(take(X1, X2)) → a__take(mark(X1), mark(X2))
mark(length(X)) → a__length(mark(X))
mark(0) → 0
mark(true) → true
mark(s(X)) → s(X)
mark(false) → false
mark(cons(X1, X2)) → cons(X1, X2)
mark(nil) → nil
a__inf(X) → inf(X)
a__take(X1, X2) → take(X1, X2)


(2) Obligation:

Q restricted rewrite system:
The TRS R consists of the following rules:

a__eq(X1, X2) → eq(X1, X2)
a__length(X) → length(X)

Q is empty.

(3) QTRSRRRProof (EQUIVALENT transformation)

Used ordering:
Recursive path order with status [RPO].
Quasi-Precedence:
aeq2 > eq2
alength1 > length1 > eq2

Status:
alength1: multiset
eq2: multiset
aeq2: multiset
length1: multiset

With this ordering the following rules can be removed by the rule removal processor [LPAR04] because they are oriented strictly:

a__eq(X1, X2) → eq(X1, X2)
a__length(X) → length(X)


(4) Obligation:

Q restricted rewrite system:
R is empty.
Q is empty.

(5) RisEmptyProof (EQUIVALENT transformation)

The TRS R is empty. Hence, termination is trivially proven.

(6) TRUE