Term Rewriting System R:
[X, XS, N, X1, X2]
active(from(X)) -> mark(cons(X, from(s(X))))
active(head(cons(X, XS))) -> mark(X)
active(2nd(cons(X, XS))) -> mark(head(XS))
active(take(0, XS)) -> mark(nil)
active(take(s(N), cons(X, XS))) -> mark(cons(X, take(N, XS)))
active(sel(0, cons(X, XS))) -> mark(X)
active(sel(s(N), cons(X, XS))) -> mark(sel(N, XS))
active(from(X)) -> from(active(X))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(s(X)) -> s(active(X))
active(head(X)) -> head(active(X))
active(2nd(X)) -> 2nd(active(X))
active(take(X1, X2)) -> take(active(X1), X2)
active(take(X1, X2)) -> take(X1, active(X2))
active(sel(X1, X2)) -> sel(active(X1), X2)
active(sel(X1, X2)) -> sel(X1, active(X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
s(mark(X)) -> mark(s(X))
s(ok(X)) -> ok(s(X))
head(mark(X)) -> mark(head(X))
head(ok(X)) -> ok(head(X))
2nd(mark(X)) -> mark(2nd(X))
2nd(ok(X)) -> ok(2nd(X))
take(mark(X1), X2) -> mark(take(X1, X2))
take(X1, mark(X2)) -> mark(take(X1, X2))
take(ok(X1), ok(X2)) -> ok(take(X1, X2))
sel(mark(X1), X2) -> mark(sel(X1, X2))
sel(X1, mark(X2)) -> mark(sel(X1, X2))
sel(ok(X1), ok(X2)) -> ok(sel(X1, X2))
proper(from(X)) -> from(proper(X))
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(s(X)) -> s(proper(X))
proper(head(X)) -> head(proper(X))
proper(2nd(X)) -> 2nd(proper(X))
proper(take(X1, X2)) -> take(proper(X1), proper(X2))
proper(0) -> ok(0)
proper(nil) -> ok(nil)
proper(sel(X1, X2)) -> sel(proper(X1), proper(X2))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))

Termination of R to be shown.



   R
Dependency Pair Analysis



R contains the following Dependency Pairs:

ACTIVE(from(X)) -> CONS(X, from(s(X)))
ACTIVE(from(X)) -> FROM(s(X))
ACTIVE(from(X)) -> S(X)
ACTIVE(2nd(cons(X, XS))) -> HEAD(XS)
ACTIVE(take(s(N), cons(X, XS))) -> CONS(X, take(N, XS))
ACTIVE(take(s(N), cons(X, XS))) -> TAKE(N, XS)
ACTIVE(sel(s(N), cons(X, XS))) -> SEL(N, XS)
ACTIVE(from(X)) -> FROM(active(X))
ACTIVE(from(X)) -> ACTIVE(X)
ACTIVE(cons(X1, X2)) -> CONS(active(X1), X2)
ACTIVE(cons(X1, X2)) -> ACTIVE(X1)
ACTIVE(s(X)) -> S(active(X))
ACTIVE(s(X)) -> ACTIVE(X)
ACTIVE(head(X)) -> HEAD(active(X))
ACTIVE(head(X)) -> ACTIVE(X)
ACTIVE(2nd(X)) -> 2ND(active(X))
ACTIVE(2nd(X)) -> ACTIVE(X)
ACTIVE(take(X1, X2)) -> TAKE(active(X1), X2)
ACTIVE(take(X1, X2)) -> ACTIVE(X1)
ACTIVE(take(X1, X2)) -> TAKE(X1, active(X2))
ACTIVE(take(X1, X2)) -> ACTIVE(X2)
ACTIVE(sel(X1, X2)) -> SEL(active(X1), X2)
ACTIVE(sel(X1, X2)) -> ACTIVE(X1)
ACTIVE(sel(X1, X2)) -> SEL(X1, active(X2))
ACTIVE(sel(X1, X2)) -> ACTIVE(X2)
FROM(mark(X)) -> FROM(X)
FROM(ok(X)) -> FROM(X)
CONS(mark(X1), X2) -> CONS(X1, X2)
CONS(ok(X1), ok(X2)) -> CONS(X1, X2)
S(mark(X)) -> S(X)
S(ok(X)) -> S(X)
HEAD(mark(X)) -> HEAD(X)
HEAD(ok(X)) -> HEAD(X)
2ND(mark(X)) -> 2ND(X)
2ND(ok(X)) -> 2ND(X)
TAKE(mark(X1), X2) -> TAKE(X1, X2)
TAKE(X1, mark(X2)) -> TAKE(X1, X2)
TAKE(ok(X1), ok(X2)) -> TAKE(X1, X2)
SEL(mark(X1), X2) -> SEL(X1, X2)
SEL(X1, mark(X2)) -> SEL(X1, X2)
SEL(ok(X1), ok(X2)) -> SEL(X1, X2)
PROPER(from(X)) -> FROM(proper(X))
PROPER(from(X)) -> PROPER(X)
PROPER(cons(X1, X2)) -> CONS(proper(X1), proper(X2))
PROPER(cons(X1, X2)) -> PROPER(X1)
PROPER(cons(X1, X2)) -> PROPER(X2)
PROPER(s(X)) -> S(proper(X))
PROPER(s(X)) -> PROPER(X)
PROPER(head(X)) -> HEAD(proper(X))
PROPER(head(X)) -> PROPER(X)
PROPER(2nd(X)) -> 2ND(proper(X))
PROPER(2nd(X)) -> PROPER(X)
PROPER(take(X1, X2)) -> TAKE(proper(X1), proper(X2))
PROPER(take(X1, X2)) -> PROPER(X1)
PROPER(take(X1, X2)) -> PROPER(X2)
PROPER(sel(X1, X2)) -> SEL(proper(X1), proper(X2))
PROPER(sel(X1, X2)) -> PROPER(X1)
PROPER(sel(X1, X2)) -> PROPER(X2)
TOP(mark(X)) -> TOP(proper(X))
TOP(mark(X)) -> PROPER(X)
TOP(ok(X)) -> TOP(active(X))
TOP(ok(X)) -> ACTIVE(X)

Furthermore, R contains 10 SCCs.


   R
DPs
       →DP Problem 1
Size-Change Principle
       →DP Problem 2
SCP
       →DP Problem 3
SCP
       →DP Problem 4
SCP
       →DP Problem 5
SCP
       →DP Problem 6
SCP
       →DP Problem 7
SCP
       →DP Problem 8
SCP
       →DP Problem 9
SCP
       →DP Problem 10
Nar


Dependency Pairs:

CONS(ok(X1), ok(X2)) -> CONS(X1, X2)
CONS(mark(X1), X2) -> CONS(X1, X2)


Rules:


active(from(X)) -> mark(cons(X, from(s(X))))
active(head(cons(X, XS))) -> mark(X)
active(2nd(cons(X, XS))) -> mark(head(XS))
active(take(0, XS)) -> mark(nil)
active(take(s(N), cons(X, XS))) -> mark(cons(X, take(N, XS)))
active(sel(0, cons(X, XS))) -> mark(X)
active(sel(s(N), cons(X, XS))) -> mark(sel(N, XS))
active(from(X)) -> from(active(X))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(s(X)) -> s(active(X))
active(head(X)) -> head(active(X))
active(2nd(X)) -> 2nd(active(X))
active(take(X1, X2)) -> take(active(X1), X2)
active(take(X1, X2)) -> take(X1, active(X2))
active(sel(X1, X2)) -> sel(active(X1), X2)
active(sel(X1, X2)) -> sel(X1, active(X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
s(mark(X)) -> mark(s(X))
s(ok(X)) -> ok(s(X))
head(mark(X)) -> mark(head(X))
head(ok(X)) -> ok(head(X))
2nd(mark(X)) -> mark(2nd(X))
2nd(ok(X)) -> ok(2nd(X))
take(mark(X1), X2) -> mark(take(X1, X2))
take(X1, mark(X2)) -> mark(take(X1, X2))
take(ok(X1), ok(X2)) -> ok(take(X1, X2))
sel(mark(X1), X2) -> mark(sel(X1, X2))
sel(X1, mark(X2)) -> mark(sel(X1, X2))
sel(ok(X1), ok(X2)) -> ok(sel(X1, X2))
proper(from(X)) -> from(proper(X))
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(s(X)) -> s(proper(X))
proper(head(X)) -> head(proper(X))
proper(2nd(X)) -> 2nd(proper(X))
proper(take(X1, X2)) -> take(proper(X1), proper(X2))
proper(0) -> ok(0)
proper(nil) -> ok(nil)
proper(sel(X1, X2)) -> sel(proper(X1), proper(X2))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))





We number the DPs as follows:
  1. CONS(ok(X1), ok(X2)) -> CONS(X1, X2)
  2. CONS(mark(X1), X2) -> CONS(X1, X2)
and get the following Size-Change Graph(s):
{2, 1} , {2, 1}
1>1
2>2
{2, 1} , {2, 1}
1>1
2=2

which lead(s) to this/these maximal multigraph(s):
{2, 1} , {2, 1}
1>1
2=2
{2, 1} , {2, 1}
1>1
2>2

DP: empty set
Oriented Rules: none

We used the order Homeomorphic Embedding Order with Non-Strict Precedence.
trivial

with Argument Filtering System:
mark(x1) -> mark(x1)
ok(x1) -> ok(x1)

We obtain no new DP problems.


   R
DPs
       →DP Problem 1
SCP
       →DP Problem 2
Size-Change Principle
       →DP Problem 3
SCP
       →DP Problem 4
SCP
       →DP Problem 5
SCP
       →DP Problem 6
SCP
       →DP Problem 7
SCP
       →DP Problem 8
SCP
       →DP Problem 9
SCP
       →DP Problem 10
Nar


Dependency Pairs:

FROM(ok(X)) -> FROM(X)
FROM(mark(X)) -> FROM(X)


Rules:


active(from(X)) -> mark(cons(X, from(s(X))))
active(head(cons(X, XS))) -> mark(X)
active(2nd(cons(X, XS))) -> mark(head(XS))
active(take(0, XS)) -> mark(nil)
active(take(s(N), cons(X, XS))) -> mark(cons(X, take(N, XS)))
active(sel(0, cons(X, XS))) -> mark(X)
active(sel(s(N), cons(X, XS))) -> mark(sel(N, XS))
active(from(X)) -> from(active(X))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(s(X)) -> s(active(X))
active(head(X)) -> head(active(X))
active(2nd(X)) -> 2nd(active(X))
active(take(X1, X2)) -> take(active(X1), X2)
active(take(X1, X2)) -> take(X1, active(X2))
active(sel(X1, X2)) -> sel(active(X1), X2)
active(sel(X1, X2)) -> sel(X1, active(X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
s(mark(X)) -> mark(s(X))
s(ok(X)) -> ok(s(X))
head(mark(X)) -> mark(head(X))
head(ok(X)) -> ok(head(X))
2nd(mark(X)) -> mark(2nd(X))
2nd(ok(X)) -> ok(2nd(X))
take(mark(X1), X2) -> mark(take(X1, X2))
take(X1, mark(X2)) -> mark(take(X1, X2))
take(ok(X1), ok(X2)) -> ok(take(X1, X2))
sel(mark(X1), X2) -> mark(sel(X1, X2))
sel(X1, mark(X2)) -> mark(sel(X1, X2))
sel(ok(X1), ok(X2)) -> ok(sel(X1, X2))
proper(from(X)) -> from(proper(X))
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(s(X)) -> s(proper(X))
proper(head(X)) -> head(proper(X))
proper(2nd(X)) -> 2nd(proper(X))
proper(take(X1, X2)) -> take(proper(X1), proper(X2))
proper(0) -> ok(0)
proper(nil) -> ok(nil)
proper(sel(X1, X2)) -> sel(proper(X1), proper(X2))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))





We number the DPs as follows:
  1. FROM(ok(X)) -> FROM(X)
  2. FROM(mark(X)) -> FROM(X)
and get the following Size-Change Graph(s):
{2, 1} , {2, 1}
1>1

which lead(s) to this/these maximal multigraph(s):
{2, 1} , {2, 1}
1>1

DP: empty set
Oriented Rules: none

We used the order Homeomorphic Embedding Order with Non-Strict Precedence.
trivial

with Argument Filtering System:
mark(x1) -> mark(x1)
ok(x1) -> ok(x1)

We obtain no new DP problems.


   R
DPs
       →DP Problem 1
SCP
       →DP Problem 2
SCP
       →DP Problem 3
Size-Change Principle
       →DP Problem 4
SCP
       →DP Problem 5
SCP
       →DP Problem 6
SCP
       →DP Problem 7
SCP
       →DP Problem 8
SCP
       →DP Problem 9
SCP
       →DP Problem 10
Nar


Dependency Pairs:

S(ok(X)) -> S(X)
S(mark(X)) -> S(X)


Rules:


active(from(X)) -> mark(cons(X, from(s(X))))
active(head(cons(X, XS))) -> mark(X)
active(2nd(cons(X, XS))) -> mark(head(XS))
active(take(0, XS)) -> mark(nil)
active(take(s(N), cons(X, XS))) -> mark(cons(X, take(N, XS)))
active(sel(0, cons(X, XS))) -> mark(X)
active(sel(s(N), cons(X, XS))) -> mark(sel(N, XS))
active(from(X)) -> from(active(X))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(s(X)) -> s(active(X))
active(head(X)) -> head(active(X))
active(2nd(X)) -> 2nd(active(X))
active(take(X1, X2)) -> take(active(X1), X2)
active(take(X1, X2)) -> take(X1, active(X2))
active(sel(X1, X2)) -> sel(active(X1), X2)
active(sel(X1, X2)) -> sel(X1, active(X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
s(mark(X)) -> mark(s(X))
s(ok(X)) -> ok(s(X))
head(mark(X)) -> mark(head(X))
head(ok(X)) -> ok(head(X))
2nd(mark(X)) -> mark(2nd(X))
2nd(ok(X)) -> ok(2nd(X))
take(mark(X1), X2) -> mark(take(X1, X2))
take(X1, mark(X2)) -> mark(take(X1, X2))
take(ok(X1), ok(X2)) -> ok(take(X1, X2))
sel(mark(X1), X2) -> mark(sel(X1, X2))
sel(X1, mark(X2)) -> mark(sel(X1, X2))
sel(ok(X1), ok(X2)) -> ok(sel(X1, X2))
proper(from(X)) -> from(proper(X))
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(s(X)) -> s(proper(X))
proper(head(X)) -> head(proper(X))
proper(2nd(X)) -> 2nd(proper(X))
proper(take(X1, X2)) -> take(proper(X1), proper(X2))
proper(0) -> ok(0)
proper(nil) -> ok(nil)
proper(sel(X1, X2)) -> sel(proper(X1), proper(X2))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))





We number the DPs as follows:
  1. S(ok(X)) -> S(X)
  2. S(mark(X)) -> S(X)
and get the following Size-Change Graph(s):
{2, 1} , {2, 1}
1>1

which lead(s) to this/these maximal multigraph(s):
{2, 1} , {2, 1}
1>1

DP: empty set
Oriented Rules: none

We used the order Homeomorphic Embedding Order with Non-Strict Precedence.
trivial

with Argument Filtering System:
mark(x1) -> mark(x1)
ok(x1) -> ok(x1)

We obtain no new DP problems.


   R
DPs
       →DP Problem 1
SCP
       →DP Problem 2
SCP
       →DP Problem 3
SCP
       →DP Problem 4
Size-Change Principle
       →DP Problem 5
SCP
       →DP Problem 6
SCP
       →DP Problem 7
SCP
       →DP Problem 8
SCP
       →DP Problem 9
SCP
       →DP Problem 10
Nar


Dependency Pairs:

HEAD(ok(X)) -> HEAD(X)
HEAD(mark(X)) -> HEAD(X)


Rules:


active(from(X)) -> mark(cons(X, from(s(X))))
active(head(cons(X, XS))) -> mark(X)
active(2nd(cons(X, XS))) -> mark(head(XS))
active(take(0, XS)) -> mark(nil)
active(take(s(N), cons(X, XS))) -> mark(cons(X, take(N, XS)))
active(sel(0, cons(X, XS))) -> mark(X)
active(sel(s(N), cons(X, XS))) -> mark(sel(N, XS))
active(from(X)) -> from(active(X))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(s(X)) -> s(active(X))
active(head(X)) -> head(active(X))
active(2nd(X)) -> 2nd(active(X))
active(take(X1, X2)) -> take(active(X1), X2)
active(take(X1, X2)) -> take(X1, active(X2))
active(sel(X1, X2)) -> sel(active(X1), X2)
active(sel(X1, X2)) -> sel(X1, active(X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
s(mark(X)) -> mark(s(X))
s(ok(X)) -> ok(s(X))
head(mark(X)) -> mark(head(X))
head(ok(X)) -> ok(head(X))
2nd(mark(X)) -> mark(2nd(X))
2nd(ok(X)) -> ok(2nd(X))
take(mark(X1), X2) -> mark(take(X1, X2))
take(X1, mark(X2)) -> mark(take(X1, X2))
take(ok(X1), ok(X2)) -> ok(take(X1, X2))
sel(mark(X1), X2) -> mark(sel(X1, X2))
sel(X1, mark(X2)) -> mark(sel(X1, X2))
sel(ok(X1), ok(X2)) -> ok(sel(X1, X2))
proper(from(X)) -> from(proper(X))
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(s(X)) -> s(proper(X))
proper(head(X)) -> head(proper(X))
proper(2nd(X)) -> 2nd(proper(X))
proper(take(X1, X2)) -> take(proper(X1), proper(X2))
proper(0) -> ok(0)
proper(nil) -> ok(nil)
proper(sel(X1, X2)) -> sel(proper(X1), proper(X2))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))





We number the DPs as follows:
  1. HEAD(ok(X)) -> HEAD(X)
  2. HEAD(mark(X)) -> HEAD(X)
and get the following Size-Change Graph(s):
{2, 1} , {2, 1}
1>1

which lead(s) to this/these maximal multigraph(s):
{2, 1} , {2, 1}
1>1

DP: empty set
Oriented Rules: none

We used the order Homeomorphic Embedding Order with Non-Strict Precedence.
trivial

with Argument Filtering System:
mark(x1) -> mark(x1)
ok(x1) -> ok(x1)

We obtain no new DP problems.


   R
DPs
       →DP Problem 1
SCP
       →DP Problem 2
SCP
       →DP Problem 3
SCP
       →DP Problem 4
SCP
       →DP Problem 5
Size-Change Principle
       →DP Problem 6
SCP
       →DP Problem 7
SCP
       →DP Problem 8
SCP
       →DP Problem 9
SCP
       →DP Problem 10
Nar


Dependency Pairs:

TAKE(ok(X1), ok(X2)) -> TAKE(X1, X2)
TAKE(X1, mark(X2)) -> TAKE(X1, X2)
TAKE(mark(X1), X2) -> TAKE(X1, X2)


Rules:


active(from(X)) -> mark(cons(X, from(s(X))))
active(head(cons(X, XS))) -> mark(X)
active(2nd(cons(X, XS))) -> mark(head(XS))
active(take(0, XS)) -> mark(nil)
active(take(s(N), cons(X, XS))) -> mark(cons(X, take(N, XS)))
active(sel(0, cons(X, XS))) -> mark(X)
active(sel(s(N), cons(X, XS))) -> mark(sel(N, XS))
active(from(X)) -> from(active(X))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(s(X)) -> s(active(X))
active(head(X)) -> head(active(X))
active(2nd(X)) -> 2nd(active(X))
active(take(X1, X2)) -> take(active(X1), X2)
active(take(X1, X2)) -> take(X1, active(X2))
active(sel(X1, X2)) -> sel(active(X1), X2)
active(sel(X1, X2)) -> sel(X1, active(X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
s(mark(X)) -> mark(s(X))
s(ok(X)) -> ok(s(X))
head(mark(X)) -> mark(head(X))
head(ok(X)) -> ok(head(X))
2nd(mark(X)) -> mark(2nd(X))
2nd(ok(X)) -> ok(2nd(X))
take(mark(X1), X2) -> mark(take(X1, X2))
take(X1, mark(X2)) -> mark(take(X1, X2))
take(ok(X1), ok(X2)) -> ok(take(X1, X2))
sel(mark(X1), X2) -> mark(sel(X1, X2))
sel(X1, mark(X2)) -> mark(sel(X1, X2))
sel(ok(X1), ok(X2)) -> ok(sel(X1, X2))
proper(from(X)) -> from(proper(X))
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(s(X)) -> s(proper(X))
proper(head(X)) -> head(proper(X))
proper(2nd(X)) -> 2nd(proper(X))
proper(take(X1, X2)) -> take(proper(X1), proper(X2))
proper(0) -> ok(0)
proper(nil) -> ok(nil)
proper(sel(X1, X2)) -> sel(proper(X1), proper(X2))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))





We number the DPs as follows:
  1. TAKE(ok(X1), ok(X2)) -> TAKE(X1, X2)
  2. TAKE(X1, mark(X2)) -> TAKE(X1, X2)
  3. TAKE(mark(X1), X2) -> TAKE(X1, X2)
and get the following Size-Change Graph(s):
{3, 2, 1} , {3, 2, 1}
1>1
2>2
{3, 2, 1} , {3, 2, 1}
1=1
2>2
{3, 2, 1} , {3, 2, 1}
1>1
2=2

which lead(s) to this/these maximal multigraph(s):
{3, 2, 1} , {3, 2, 1}
1>1
2>2
{3, 2, 1} , {3, 2, 1}
1>1
2=2
{3, 2, 1} , {3, 2, 1}
1=1
2>2

DP: empty set
Oriented Rules: none

We used the order Homeomorphic Embedding Order with Non-Strict Precedence.
trivial

with Argument Filtering System:
mark(x1) -> mark(x1)
ok(x1) -> ok(x1)

We obtain no new DP problems.


   R
DPs
       →DP Problem 1
SCP
       →DP Problem 2
SCP
       →DP Problem 3
SCP
       →DP Problem 4
SCP
       →DP Problem 5
SCP
       →DP Problem 6
Size-Change Principle
       →DP Problem 7
SCP
       →DP Problem 8
SCP
       →DP Problem 9
SCP
       →DP Problem 10
Nar


Dependency Pairs:

SEL(ok(X1), ok(X2)) -> SEL(X1, X2)
SEL(X1, mark(X2)) -> SEL(X1, X2)
SEL(mark(X1), X2) -> SEL(X1, X2)


Rules:


active(from(X)) -> mark(cons(X, from(s(X))))
active(head(cons(X, XS))) -> mark(X)
active(2nd(cons(X, XS))) -> mark(head(XS))
active(take(0, XS)) -> mark(nil)
active(take(s(N), cons(X, XS))) -> mark(cons(X, take(N, XS)))
active(sel(0, cons(X, XS))) -> mark(X)
active(sel(s(N), cons(X, XS))) -> mark(sel(N, XS))
active(from(X)) -> from(active(X))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(s(X)) -> s(active(X))
active(head(X)) -> head(active(X))
active(2nd(X)) -> 2nd(active(X))
active(take(X1, X2)) -> take(active(X1), X2)
active(take(X1, X2)) -> take(X1, active(X2))
active(sel(X1, X2)) -> sel(active(X1), X2)
active(sel(X1, X2)) -> sel(X1, active(X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
s(mark(X)) -> mark(s(X))
s(ok(X)) -> ok(s(X))
head(mark(X)) -> mark(head(X))
head(ok(X)) -> ok(head(X))
2nd(mark(X)) -> mark(2nd(X))
2nd(ok(X)) -> ok(2nd(X))
take(mark(X1), X2) -> mark(take(X1, X2))
take(X1, mark(X2)) -> mark(take(X1, X2))
take(ok(X1), ok(X2)) -> ok(take(X1, X2))
sel(mark(X1), X2) -> mark(sel(X1, X2))
sel(X1, mark(X2)) -> mark(sel(X1, X2))
sel(ok(X1), ok(X2)) -> ok(sel(X1, X2))
proper(from(X)) -> from(proper(X))
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(s(X)) -> s(proper(X))
proper(head(X)) -> head(proper(X))
proper(2nd(X)) -> 2nd(proper(X))
proper(take(X1, X2)) -> take(proper(X1), proper(X2))
proper(0) -> ok(0)
proper(nil) -> ok(nil)
proper(sel(X1, X2)) -> sel(proper(X1), proper(X2))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))





We number the DPs as follows:
  1. SEL(ok(X1), ok(X2)) -> SEL(X1, X2)
  2. SEL(X1, mark(X2)) -> SEL(X1, X2)
  3. SEL(mark(X1), X2) -> SEL(X1, X2)
and get the following Size-Change Graph(s):
{3, 2, 1} , {3, 2, 1}
1>1
2>2
{3, 2, 1} , {3, 2, 1}
1=1
2>2
{3, 2, 1} , {3, 2, 1}
1>1
2=2

which lead(s) to this/these maximal multigraph(s):
{3, 2, 1} , {3, 2, 1}
1>1
2=2
{3, 2, 1} , {3, 2, 1}
1=1
2>2
{3, 2, 1} , {3, 2, 1}
1>1
2>2

DP: empty set
Oriented Rules: none

We used the order Homeomorphic Embedding Order with Non-Strict Precedence.
trivial

with Argument Filtering System:
mark(x1) -> mark(x1)
ok(x1) -> ok(x1)

We obtain no new DP problems.


   R
DPs
       →DP Problem 1
SCP
       →DP Problem 2
SCP
       →DP Problem 3
SCP
       →DP Problem 4
SCP
       →DP Problem 5
SCP
       →DP Problem 6
SCP
       →DP Problem 7
Size-Change Principle
       →DP Problem 8
SCP
       →DP Problem 9
SCP
       →DP Problem 10
Nar


Dependency Pairs:

2ND(ok(X)) -> 2ND(X)
2ND(mark(X)) -> 2ND(X)


Rules:


active(from(X)) -> mark(cons(X, from(s(X))))
active(head(cons(X, XS))) -> mark(X)
active(2nd(cons(X, XS))) -> mark(head(XS))
active(take(0, XS)) -> mark(nil)
active(take(s(N), cons(X, XS))) -> mark(cons(X, take(N, XS)))
active(sel(0, cons(X, XS))) -> mark(X)
active(sel(s(N), cons(X, XS))) -> mark(sel(N, XS))
active(from(X)) -> from(active(X))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(s(X)) -> s(active(X))
active(head(X)) -> head(active(X))
active(2nd(X)) -> 2nd(active(X))
active(take(X1, X2)) -> take(active(X1), X2)
active(take(X1, X2)) -> take(X1, active(X2))
active(sel(X1, X2)) -> sel(active(X1), X2)
active(sel(X1, X2)) -> sel(X1, active(X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
s(mark(X)) -> mark(s(X))
s(ok(X)) -> ok(s(X))
head(mark(X)) -> mark(head(X))
head(ok(X)) -> ok(head(X))
2nd(mark(X)) -> mark(2nd(X))
2nd(ok(X)) -> ok(2nd(X))
take(mark(X1), X2) -> mark(take(X1, X2))
take(X1, mark(X2)) -> mark(take(X1, X2))
take(ok(X1), ok(X2)) -> ok(take(X1, X2))
sel(mark(X1), X2) -> mark(sel(X1, X2))
sel(X1, mark(X2)) -> mark(sel(X1, X2))
sel(ok(X1), ok(X2)) -> ok(sel(X1, X2))
proper(from(X)) -> from(proper(X))
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(s(X)) -> s(proper(X))
proper(head(X)) -> head(proper(X))
proper(2nd(X)) -> 2nd(proper(X))
proper(take(X1, X2)) -> take(proper(X1), proper(X2))
proper(0) -> ok(0)
proper(nil) -> ok(nil)
proper(sel(X1, X2)) -> sel(proper(X1), proper(X2))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))





We number the DPs as follows:
  1. 2ND(ok(X)) -> 2ND(X)
  2. 2ND(mark(X)) -> 2ND(X)
and get the following Size-Change Graph(s):
{2, 1} , {2, 1}
1>1

which lead(s) to this/these maximal multigraph(s):
{2, 1} , {2, 1}
1>1

DP: empty set
Oriented Rules: none

We used the order Homeomorphic Embedding Order with Non-Strict Precedence.
trivial

with Argument Filtering System:
mark(x1) -> mark(x1)
ok(x1) -> ok(x1)

We obtain no new DP problems.


   R
DPs
       →DP Problem 1
SCP
       →DP Problem 2
SCP
       →DP Problem 3
SCP
       →DP Problem 4
SCP
       →DP Problem 5
SCP
       →DP Problem 6
SCP
       →DP Problem 7
SCP
       →DP Problem 8
Size-Change Principle
       →DP Problem 9
SCP
       →DP Problem 10
Nar


Dependency Pairs:

ACTIVE(sel(X1, X2)) -> ACTIVE(X2)
ACTIVE(sel(X1, X2)) -> ACTIVE(X1)
ACTIVE(take(X1, X2)) -> ACTIVE(X2)
ACTIVE(take(X1, X2)) -> ACTIVE(X1)
ACTIVE(2nd(X)) -> ACTIVE(X)
ACTIVE(head(X)) -> ACTIVE(X)
ACTIVE(s(X)) -> ACTIVE(X)
ACTIVE(cons(X1, X2)) -> ACTIVE(X1)
ACTIVE(from(X)) -> ACTIVE(X)


Rules:


active(from(X)) -> mark(cons(X, from(s(X))))
active(head(cons(X, XS))) -> mark(X)
active(2nd(cons(X, XS))) -> mark(head(XS))
active(take(0, XS)) -> mark(nil)
active(take(s(N), cons(X, XS))) -> mark(cons(X, take(N, XS)))
active(sel(0, cons(X, XS))) -> mark(X)
active(sel(s(N), cons(X, XS))) -> mark(sel(N, XS))
active(from(X)) -> from(active(X))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(s(X)) -> s(active(X))
active(head(X)) -> head(active(X))
active(2nd(X)) -> 2nd(active(X))
active(take(X1, X2)) -> take(active(X1), X2)
active(take(X1, X2)) -> take(X1, active(X2))
active(sel(X1, X2)) -> sel(active(X1), X2)
active(sel(X1, X2)) -> sel(X1, active(X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
s(mark(X)) -> mark(s(X))
s(ok(X)) -> ok(s(X))
head(mark(X)) -> mark(head(X))
head(ok(X)) -> ok(head(X))
2nd(mark(X)) -> mark(2nd(X))
2nd(ok(X)) -> ok(2nd(X))
take(mark(X1), X2) -> mark(take(X1, X2))
take(X1, mark(X2)) -> mark(take(X1, X2))
take(ok(X1), ok(X2)) -> ok(take(X1, X2))
sel(mark(X1), X2) -> mark(sel(X1, X2))
sel(X1, mark(X2)) -> mark(sel(X1, X2))
sel(ok(X1), ok(X2)) -> ok(sel(X1, X2))
proper(from(X)) -> from(proper(X))
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(s(X)) -> s(proper(X))
proper(head(X)) -> head(proper(X))
proper(2nd(X)) -> 2nd(proper(X))
proper(take(X1, X2)) -> take(proper(X1), proper(X2))
proper(0) -> ok(0)
proper(nil) -> ok(nil)
proper(sel(X1, X2)) -> sel(proper(X1), proper(X2))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))





We number the DPs as follows:
  1. ACTIVE(sel(X1, X2)) -> ACTIVE(X2)
  2. ACTIVE(sel(X1, X2)) -> ACTIVE(X1)
  3. ACTIVE(take(X1, X2)) -> ACTIVE(X2)
  4. ACTIVE(take(X1, X2)) -> ACTIVE(X1)
  5. ACTIVE(2nd(X)) -> ACTIVE(X)
  6. ACTIVE(head(X)) -> ACTIVE(X)
  7. ACTIVE(s(X)) -> ACTIVE(X)
  8. ACTIVE(cons(X1, X2)) -> ACTIVE(X1)
  9. ACTIVE(from(X)) -> ACTIVE(X)
and get the following Size-Change Graph(s):
{9, 8, 7, 6, 5, 4, 3, 2, 1} , {9, 8, 7, 6, 5, 4, 3, 2, 1}
1>1

which lead(s) to this/these maximal multigraph(s):
{9, 8, 7, 6, 5, 4, 3, 2, 1} , {9, 8, 7, 6, 5, 4, 3, 2, 1}
1>1

DP: empty set
Oriented Rules: none

We used the order Homeomorphic Embedding Order with Non-Strict Precedence.
trivial

with Argument Filtering System:
from(x1) -> from(x1)
2nd(x1) -> 2nd(x1)
cons(x1, x2) -> cons(x1, x2)
take(x1, x2) -> take(x1, x2)
s(x1) -> s(x1)
sel(x1, x2) -> sel(x1, x2)
head(x1) -> head(x1)

We obtain no new DP problems.


   R
DPs
       →DP Problem 1
SCP
       →DP Problem 2
SCP
       →DP Problem 3
SCP
       →DP Problem 4
SCP
       →DP Problem 5
SCP
       →DP Problem 6
SCP
       →DP Problem 7
SCP
       →DP Problem 8
SCP
       →DP Problem 9
Size-Change Principle
       →DP Problem 10
Nar


Dependency Pairs:

PROPER(sel(X1, X2)) -> PROPER(X2)
PROPER(sel(X1, X2)) -> PROPER(X1)
PROPER(take(X1, X2)) -> PROPER(X2)
PROPER(take(X1, X2)) -> PROPER(X1)
PROPER(2nd(X)) -> PROPER(X)
PROPER(head(X)) -> PROPER(X)
PROPER(s(X)) -> PROPER(X)
PROPER(cons(X1, X2)) -> PROPER(X2)
PROPER(cons(X1, X2)) -> PROPER(X1)
PROPER(from(X)) -> PROPER(X)


Rules:


active(from(X)) -> mark(cons(X, from(s(X))))
active(head(cons(X, XS))) -> mark(X)
active(2nd(cons(X, XS))) -> mark(head(XS))
active(take(0, XS)) -> mark(nil)
active(take(s(N), cons(X, XS))) -> mark(cons(X, take(N, XS)))
active(sel(0, cons(X, XS))) -> mark(X)
active(sel(s(N), cons(X, XS))) -> mark(sel(N, XS))
active(from(X)) -> from(active(X))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(s(X)) -> s(active(X))
active(head(X)) -> head(active(X))
active(2nd(X)) -> 2nd(active(X))
active(take(X1, X2)) -> take(active(X1), X2)
active(take(X1, X2)) -> take(X1, active(X2))
active(sel(X1, X2)) -> sel(active(X1), X2)
active(sel(X1, X2)) -> sel(X1, active(X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
s(mark(X)) -> mark(s(X))
s(ok(X)) -> ok(s(X))
head(mark(X)) -> mark(head(X))
head(ok(X)) -> ok(head(X))
2nd(mark(X)) -> mark(2nd(X))
2nd(ok(X)) -> ok(2nd(X))
take(mark(X1), X2) -> mark(take(X1, X2))
take(X1, mark(X2)) -> mark(take(X1, X2))
take(ok(X1), ok(X2)) -> ok(take(X1, X2))
sel(mark(X1), X2) -> mark(sel(X1, X2))
sel(X1, mark(X2)) -> mark(sel(X1, X2))
sel(ok(X1), ok(X2)) -> ok(sel(X1, X2))
proper(from(X)) -> from(proper(X))
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(s(X)) -> s(proper(X))
proper(head(X)) -> head(proper(X))
proper(2nd(X)) -> 2nd(proper(X))
proper(take(X1, X2)) -> take(proper(X1), proper(X2))
proper(0) -> ok(0)
proper(nil) -> ok(nil)
proper(sel(X1, X2)) -> sel(proper(X1), proper(X2))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))





We number the DPs as follows:
  1. PROPER(sel(X1, X2)) -> PROPER(X2)
  2. PROPER(sel(X1, X2)) -> PROPER(X1)
  3. PROPER(take(X1, X2)) -> PROPER(X2)
  4. PROPER(take(X1, X2)) -> PROPER(X1)
  5. PROPER(2nd(X)) -> PROPER(X)
  6. PROPER(head(X)) -> PROPER(X)
  7. PROPER(s(X)) -> PROPER(X)
  8. PROPER(cons(X1, X2)) -> PROPER(X2)
  9. PROPER(cons(X1, X2)) -> PROPER(X1)
  10. PROPER(from(X)) -> PROPER(X)
and get the following Size-Change Graph(s):
{10, 9, 8, 7, 6, 5, 4, 3, 2, 1} , {10, 9, 8, 7, 6, 5, 4, 3, 2, 1}
1>1

which lead(s) to this/these maximal multigraph(s):
{10, 9, 8, 7, 6, 5, 4, 3, 2, 1} , {10, 9, 8, 7, 6, 5, 4, 3, 2, 1}
1>1

DP: empty set
Oriented Rules: none

We used the order Homeomorphic Embedding Order with Non-Strict Precedence.
trivial

with Argument Filtering System:
from(x1) -> from(x1)
2nd(x1) -> 2nd(x1)
cons(x1, x2) -> cons(x1, x2)
take(x1, x2) -> take(x1, x2)
sel(x1, x2) -> sel(x1, x2)
s(x1) -> s(x1)
head(x1) -> head(x1)

We obtain no new DP problems.


   R
DPs
       →DP Problem 1
SCP
       →DP Problem 2
SCP
       →DP Problem 3
SCP
       →DP Problem 4
SCP
       →DP Problem 5
SCP
       →DP Problem 6
SCP
       →DP Problem 7
SCP
       →DP Problem 8
SCP
       →DP Problem 9
SCP
       →DP Problem 10
Narrowing Transformation


Dependency Pairs:

TOP(ok(X)) -> TOP(active(X))
TOP(mark(X)) -> TOP(proper(X))


Rules:


active(from(X)) -> mark(cons(X, from(s(X))))
active(head(cons(X, XS))) -> mark(X)
active(2nd(cons(X, XS))) -> mark(head(XS))
active(take(0, XS)) -> mark(nil)
active(take(s(N), cons(X, XS))) -> mark(cons(X, take(N, XS)))
active(sel(0, cons(X, XS))) -> mark(X)
active(sel(s(N), cons(X, XS))) -> mark(sel(N, XS))
active(from(X)) -> from(active(X))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(s(X)) -> s(active(X))
active(head(X)) -> head(active(X))
active(2nd(X)) -> 2nd(active(X))
active(take(X1, X2)) -> take(active(X1), X2)
active(take(X1, X2)) -> take(X1, active(X2))
active(sel(X1, X2)) -> sel(active(X1), X2)
active(sel(X1, X2)) -> sel(X1, active(X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
s(mark(X)) -> mark(s(X))
s(ok(X)) -> ok(s(X))
head(mark(X)) -> mark(head(X))
head(ok(X)) -> ok(head(X))
2nd(mark(X)) -> mark(2nd(X))
2nd(ok(X)) -> ok(2nd(X))
take(mark(X1), X2) -> mark(take(X1, X2))
take(X1, mark(X2)) -> mark(take(X1, X2))
take(ok(X1), ok(X2)) -> ok(take(X1, X2))
sel(mark(X1), X2) -> mark(sel(X1, X2))
sel(X1, mark(X2)) -> mark(sel(X1, X2))
sel(ok(X1), ok(X2)) -> ok(sel(X1, X2))
proper(from(X)) -> from(proper(X))
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(s(X)) -> s(proper(X))
proper(head(X)) -> head(proper(X))
proper(2nd(X)) -> 2nd(proper(X))
proper(take(X1, X2)) -> take(proper(X1), proper(X2))
proper(0) -> ok(0)
proper(nil) -> ok(nil)
proper(sel(X1, X2)) -> sel(proper(X1), proper(X2))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))





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

TOP(mark(X)) -> TOP(proper(X))
nine new Dependency Pairs are created:

TOP(mark(from(X''))) -> TOP(from(proper(X'')))
TOP(mark(cons(X1', X2'))) -> TOP(cons(proper(X1'), proper(X2')))
TOP(mark(s(X''))) -> TOP(s(proper(X'')))
TOP(mark(head(X''))) -> TOP(head(proper(X'')))
TOP(mark(2nd(X''))) -> TOP(2nd(proper(X'')))
TOP(mark(take(X1', X2'))) -> TOP(take(proper(X1'), proper(X2')))
TOP(mark(0)) -> TOP(ok(0))
TOP(mark(nil)) -> TOP(ok(nil))
TOP(mark(sel(X1', X2'))) -> TOP(sel(proper(X1'), proper(X2')))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
SCP
       →DP Problem 2
SCP
       →DP Problem 3
SCP
       →DP Problem 4
SCP
       →DP Problem 5
SCP
       →DP Problem 6
SCP
       →DP Problem 7
SCP
       →DP Problem 8
SCP
       →DP Problem 9
SCP
       →DP Problem 10
Nar
           →DP Problem 11
Narrowing Transformation


Dependency Pairs:

TOP(mark(sel(X1', X2'))) -> TOP(sel(proper(X1'), proper(X2')))
TOP(mark(nil)) -> TOP(ok(nil))
TOP(mark(0)) -> TOP(ok(0))
TOP(mark(take(X1', X2'))) -> TOP(take(proper(X1'), proper(X2')))
TOP(mark(2nd(X''))) -> TOP(2nd(proper(X'')))
TOP(mark(head(X''))) -> TOP(head(proper(X'')))
TOP(mark(s(X''))) -> TOP(s(proper(X'')))
TOP(mark(cons(X1', X2'))) -> TOP(cons(proper(X1'), proper(X2')))
TOP(mark(from(X''))) -> TOP(from(proper(X'')))
TOP(ok(X)) -> TOP(active(X))


Rules:


active(from(X)) -> mark(cons(X, from(s(X))))
active(head(cons(X, XS))) -> mark(X)
active(2nd(cons(X, XS))) -> mark(head(XS))
active(take(0, XS)) -> mark(nil)
active(take(s(N), cons(X, XS))) -> mark(cons(X, take(N, XS)))
active(sel(0, cons(X, XS))) -> mark(X)
active(sel(s(N), cons(X, XS))) -> mark(sel(N, XS))
active(from(X)) -> from(active(X))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(s(X)) -> s(active(X))
active(head(X)) -> head(active(X))
active(2nd(X)) -> 2nd(active(X))
active(take(X1, X2)) -> take(active(X1), X2)
active(take(X1, X2)) -> take(X1, active(X2))
active(sel(X1, X2)) -> sel(active(X1), X2)
active(sel(X1, X2)) -> sel(X1, active(X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
s(mark(X)) -> mark(s(X))
s(ok(X)) -> ok(s(X))
head(mark(X)) -> mark(head(X))
head(ok(X)) -> ok(head(X))
2nd(mark(X)) -> mark(2nd(X))
2nd(ok(X)) -> ok(2nd(X))
take(mark(X1), X2) -> mark(take(X1, X2))
take(X1, mark(X2)) -> mark(take(X1, X2))
take(ok(X1), ok(X2)) -> ok(take(X1, X2))
sel(mark(X1), X2) -> mark(sel(X1, X2))
sel(X1, mark(X2)) -> mark(sel(X1, X2))
sel(ok(X1), ok(X2)) -> ok(sel(X1, X2))
proper(from(X)) -> from(proper(X))
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(s(X)) -> s(proper(X))
proper(head(X)) -> head(proper(X))
proper(2nd(X)) -> 2nd(proper(X))
proper(take(X1, X2)) -> take(proper(X1), proper(X2))
proper(0) -> ok(0)
proper(nil) -> ok(nil)
proper(sel(X1, X2)) -> sel(proper(X1), proper(X2))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))





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

TOP(ok(X)) -> TOP(active(X))
16 new Dependency Pairs are created:

TOP(ok(from(X''))) -> TOP(mark(cons(X'', from(s(X'')))))
TOP(ok(head(cons(X'', XS')))) -> TOP(mark(X''))
TOP(ok(2nd(cons(X'', XS')))) -> TOP(mark(head(XS')))
TOP(ok(take(0, XS'))) -> TOP(mark(nil))
TOP(ok(take(s(N'), cons(X'', XS')))) -> TOP(mark(cons(X'', take(N', XS'))))
TOP(ok(sel(0, cons(X'', XS')))) -> TOP(mark(X''))
TOP(ok(sel(s(N'), cons(X'', XS')))) -> TOP(mark(sel(N', XS')))
TOP(ok(from(X''))) -> TOP(from(active(X'')))
TOP(ok(cons(X1', X2'))) -> TOP(cons(active(X1'), X2'))
TOP(ok(s(X''))) -> TOP(s(active(X'')))
TOP(ok(head(X''))) -> TOP(head(active(X'')))
TOP(ok(2nd(X''))) -> TOP(2nd(active(X'')))
TOP(ok(take(X1', X2'))) -> TOP(take(active(X1'), X2'))
TOP(ok(take(X1', X2'))) -> TOP(take(X1', active(X2')))
TOP(ok(sel(X1', X2'))) -> TOP(sel(active(X1'), X2'))
TOP(ok(sel(X1', X2'))) -> TOP(sel(X1', active(X2')))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
SCP
       →DP Problem 2
SCP
       →DP Problem 3
SCP
       →DP Problem 4
SCP
       →DP Problem 5
SCP
       →DP Problem 6
SCP
       →DP Problem 7
SCP
       →DP Problem 8
SCP
       →DP Problem 9
SCP
       →DP Problem 10
Nar
           →DP Problem 11
Nar
             ...
               →DP Problem 12
Negative Polynomial Order


Dependency Pairs:

TOP(ok(sel(X1', X2'))) -> TOP(sel(X1', active(X2')))
TOP(ok(sel(X1', X2'))) -> TOP(sel(active(X1'), X2'))
TOP(ok(take(X1', X2'))) -> TOP(take(X1', active(X2')))
TOP(ok(take(X1', X2'))) -> TOP(take(active(X1'), X2'))
TOP(ok(2nd(X''))) -> TOP(2nd(active(X'')))
TOP(ok(head(X''))) -> TOP(head(active(X'')))
TOP(ok(s(X''))) -> TOP(s(active(X'')))
TOP(ok(cons(X1', X2'))) -> TOP(cons(active(X1'), X2'))
TOP(ok(from(X''))) -> TOP(from(active(X'')))
TOP(ok(sel(s(N'), cons(X'', XS')))) -> TOP(mark(sel(N', XS')))
TOP(ok(sel(0, cons(X'', XS')))) -> TOP(mark(X''))
TOP(ok(take(s(N'), cons(X'', XS')))) -> TOP(mark(cons(X'', take(N', XS'))))
TOP(ok(2nd(cons(X'', XS')))) -> TOP(mark(head(XS')))
TOP(ok(head(cons(X'', XS')))) -> TOP(mark(X''))
TOP(ok(from(X''))) -> TOP(mark(cons(X'', from(s(X'')))))
TOP(mark(take(X1', X2'))) -> TOP(take(proper(X1'), proper(X2')))
TOP(mark(2nd(X''))) -> TOP(2nd(proper(X'')))
TOP(mark(head(X''))) -> TOP(head(proper(X'')))
TOP(mark(s(X''))) -> TOP(s(proper(X'')))
TOP(mark(cons(X1', X2'))) -> TOP(cons(proper(X1'), proper(X2')))
TOP(mark(from(X''))) -> TOP(from(proper(X'')))
TOP(mark(sel(X1', X2'))) -> TOP(sel(proper(X1'), proper(X2')))


Rules:


active(from(X)) -> mark(cons(X, from(s(X))))
active(head(cons(X, XS))) -> mark(X)
active(2nd(cons(X, XS))) -> mark(head(XS))
active(take(0, XS)) -> mark(nil)
active(take(s(N), cons(X, XS))) -> mark(cons(X, take(N, XS)))
active(sel(0, cons(X, XS))) -> mark(X)
active(sel(s(N), cons(X, XS))) -> mark(sel(N, XS))
active(from(X)) -> from(active(X))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(s(X)) -> s(active(X))
active(head(X)) -> head(active(X))
active(2nd(X)) -> 2nd(active(X))
active(take(X1, X2)) -> take(active(X1), X2)
active(take(X1, X2)) -> take(X1, active(X2))
active(sel(X1, X2)) -> sel(active(X1), X2)
active(sel(X1, X2)) -> sel(X1, active(X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
s(mark(X)) -> mark(s(X))
s(ok(X)) -> ok(s(X))
head(mark(X)) -> mark(head(X))
head(ok(X)) -> ok(head(X))
2nd(mark(X)) -> mark(2nd(X))
2nd(ok(X)) -> ok(2nd(X))
take(mark(X1), X2) -> mark(take(X1, X2))
take(X1, mark(X2)) -> mark(take(X1, X2))
take(ok(X1), ok(X2)) -> ok(take(X1, X2))
sel(mark(X1), X2) -> mark(sel(X1, X2))
sel(X1, mark(X2)) -> mark(sel(X1, X2))
sel(ok(X1), ok(X2)) -> ok(sel(X1, X2))
proper(from(X)) -> from(proper(X))
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(s(X)) -> s(proper(X))
proper(head(X)) -> head(proper(X))
proper(2nd(X)) -> 2nd(proper(X))
proper(take(X1, X2)) -> take(proper(X1), proper(X2))
proper(0) -> ok(0)
proper(nil) -> ok(nil)
proper(sel(X1, X2)) -> sel(proper(X1), proper(X2))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))





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

TOP(ok(sel(0, cons(X'', XS')))) -> TOP(mark(X''))


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

sel(mark(X1), X2) -> mark(sel(X1, X2))
sel(X1, mark(X2)) -> mark(sel(X1, X2))
sel(ok(X1), ok(X2)) -> ok(sel(X1, X2))
take(mark(X1), X2) -> mark(take(X1, X2))
take(X1, mark(X2)) -> mark(take(X1, X2))
take(ok(X1), ok(X2)) -> ok(take(X1, X2))
2nd(mark(X)) -> mark(2nd(X))
2nd(ok(X)) -> ok(2nd(X))
head(mark(X)) -> mark(head(X))
head(ok(X)) -> ok(head(X))
s(mark(X)) -> mark(s(X))
s(ok(X)) -> ok(s(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
active(from(X)) -> mark(cons(X, from(s(X))))
active(head(cons(X, XS))) -> mark(X)
active(2nd(cons(X, XS))) -> mark(head(XS))
active(take(0, XS)) -> mark(nil)
active(take(s(N), cons(X, XS))) -> mark(cons(X, take(N, XS)))
active(sel(0, cons(X, XS))) -> mark(X)
active(sel(s(N), cons(X, XS))) -> mark(sel(N, XS))
active(from(X)) -> from(active(X))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(s(X)) -> s(active(X))
active(head(X)) -> head(active(X))
active(2nd(X)) -> 2nd(active(X))
active(take(X1, X2)) -> take(active(X1), X2)
active(take(X1, X2)) -> take(X1, active(X2))
active(sel(X1, X2)) -> sel(active(X1), X2)
active(sel(X1, X2)) -> sel(X1, active(X2))
proper(from(X)) -> from(proper(X))
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(s(X)) -> s(proper(X))
proper(head(X)) -> head(proper(X))
proper(2nd(X)) -> 2nd(proper(X))
proper(take(X1, X2)) -> take(proper(X1), proper(X2))
proper(0) -> ok(0)
proper(nil) -> ok(nil)
proper(sel(X1, X2)) -> sel(proper(X1), proper(X2))


Used ordering:
Polynomial Order with Interpretation:

POL( TOP(x1) ) = x1

POL( ok(x1) ) = x1

POL( sel(x1, x2) ) = x2 + 1

POL( cons(x1, x2) ) = x1 + x2

POL( mark(x1) ) = x1

POL( take(x1, x2) ) = x2

POL( proper(x1) ) = x1

POL( 2nd(x1) ) = x1

POL( head(x1) ) = x1

POL( from(x1) ) = x1

POL( s(x1) ) = 0

POL( active(x1) ) = x1

POL( nil ) = 0

POL( 0 ) = 0


This results in one new DP problem.


   R
DPs
       →DP Problem 1
SCP
       →DP Problem 2
SCP
       →DP Problem 3
SCP
       →DP Problem 4
SCP
       →DP Problem 5
SCP
       →DP Problem 6
SCP
       →DP Problem 7
SCP
       →DP Problem 8
SCP
       →DP Problem 9
SCP
       →DP Problem 10
Nar
           →DP Problem 11
Nar
             ...
               →DP Problem 13
Negative Polynomial Order


Dependency Pairs:

TOP(ok(sel(X1', X2'))) -> TOP(sel(X1', active(X2')))
TOP(ok(sel(X1', X2'))) -> TOP(sel(active(X1'), X2'))
TOP(ok(take(X1', X2'))) -> TOP(take(X1', active(X2')))
TOP(ok(take(X1', X2'))) -> TOP(take(active(X1'), X2'))
TOP(ok(2nd(X''))) -> TOP(2nd(active(X'')))
TOP(ok(head(X''))) -> TOP(head(active(X'')))
TOP(ok(s(X''))) -> TOP(s(active(X'')))
TOP(ok(cons(X1', X2'))) -> TOP(cons(active(X1'), X2'))
TOP(ok(from(X''))) -> TOP(from(active(X'')))
TOP(ok(sel(s(N'), cons(X'', XS')))) -> TOP(mark(sel(N', XS')))
TOP(ok(take(s(N'), cons(X'', XS')))) -> TOP(mark(cons(X'', take(N', XS'))))
TOP(ok(2nd(cons(X'', XS')))) -> TOP(mark(head(XS')))
TOP(ok(head(cons(X'', XS')))) -> TOP(mark(X''))
TOP(ok(from(X''))) -> TOP(mark(cons(X'', from(s(X'')))))
TOP(mark(take(X1', X2'))) -> TOP(take(proper(X1'), proper(X2')))
TOP(mark(2nd(X''))) -> TOP(2nd(proper(X'')))
TOP(mark(head(X''))) -> TOP(head(proper(X'')))
TOP(mark(s(X''))) -> TOP(s(proper(X'')))
TOP(mark(cons(X1', X2'))) -> TOP(cons(proper(X1'), proper(X2')))
TOP(mark(from(X''))) -> TOP(from(proper(X'')))
TOP(mark(sel(X1', X2'))) -> TOP(sel(proper(X1'), proper(X2')))


Rules:


active(from(X)) -> mark(cons(X, from(s(X))))
active(head(cons(X, XS))) -> mark(X)
active(2nd(cons(X, XS))) -> mark(head(XS))
active(take(0, XS)) -> mark(nil)
active(take(s(N), cons(X, XS))) -> mark(cons(X, take(N, XS)))
active(sel(0, cons(X, XS))) -> mark(X)
active(sel(s(N), cons(X, XS))) -> mark(sel(N, XS))
active(from(X)) -> from(active(X))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(s(X)) -> s(active(X))
active(head(X)) -> head(active(X))
active(2nd(X)) -> 2nd(active(X))
active(take(X1, X2)) -> take(active(X1), X2)
active(take(X1, X2)) -> take(X1, active(X2))
active(sel(X1, X2)) -> sel(active(X1), X2)
active(sel(X1, X2)) -> sel(X1, active(X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
s(mark(X)) -> mark(s(X))
s(ok(X)) -> ok(s(X))
head(mark(X)) -> mark(head(X))
head(ok(X)) -> ok(head(X))
2nd(mark(X)) -> mark(2nd(X))
2nd(ok(X)) -> ok(2nd(X))
take(mark(X1), X2) -> mark(take(X1, X2))
take(X1, mark(X2)) -> mark(take(X1, X2))
take(ok(X1), ok(X2)) -> ok(take(X1, X2))
sel(mark(X1), X2) -> mark(sel(X1, X2))
sel(X1, mark(X2)) -> mark(sel(X1, X2))
sel(ok(X1), ok(X2)) -> ok(sel(X1, X2))
proper(from(X)) -> from(proper(X))
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(s(X)) -> s(proper(X))
proper(head(X)) -> head(proper(X))
proper(2nd(X)) -> 2nd(proper(X))
proper(take(X1, X2)) -> take(proper(X1), proper(X2))
proper(0) -> ok(0)
proper(nil) -> ok(nil)
proper(sel(X1, X2)) -> sel(proper(X1), proper(X2))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))





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

TOP(ok(2nd(cons(X'', XS')))) -> TOP(mark(head(XS')))


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

sel(mark(X1), X2) -> mark(sel(X1, X2))
sel(X1, mark(X2)) -> mark(sel(X1, X2))
sel(ok(X1), ok(X2)) -> ok(sel(X1, X2))
take(mark(X1), X2) -> mark(take(X1, X2))
take(X1, mark(X2)) -> mark(take(X1, X2))
take(ok(X1), ok(X2)) -> ok(take(X1, X2))
2nd(mark(X)) -> mark(2nd(X))
2nd(ok(X)) -> ok(2nd(X))
head(mark(X)) -> mark(head(X))
head(ok(X)) -> ok(head(X))
s(mark(X)) -> mark(s(X))
s(ok(X)) -> ok(s(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
active(from(X)) -> mark(cons(X, from(s(X))))
active(head(cons(X, XS))) -> mark(X)
active(2nd(cons(X, XS))) -> mark(head(XS))
active(take(0, XS)) -> mark(nil)
active(take(s(N), cons(X, XS))) -> mark(cons(X, take(N, XS)))
active(sel(0, cons(X, XS))) -> mark(X)
active(sel(s(N), cons(X, XS))) -> mark(sel(N, XS))
active(from(X)) -> from(active(X))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(s(X)) -> s(active(X))
active(head(X)) -> head(active(X))
active(2nd(X)) -> 2nd(active(X))
active(take(X1, X2)) -> take(active(X1), X2)
active(take(X1, X2)) -> take(X1, active(X2))
active(sel(X1, X2)) -> sel(active(X1), X2)
active(sel(X1, X2)) -> sel(X1, active(X2))
proper(from(X)) -> from(proper(X))
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(s(X)) -> s(proper(X))
proper(head(X)) -> head(proper(X))
proper(2nd(X)) -> 2nd(proper(X))
proper(take(X1, X2)) -> take(proper(X1), proper(X2))
proper(0) -> ok(0)
proper(nil) -> ok(nil)
proper(sel(X1, X2)) -> sel(proper(X1), proper(X2))


Used ordering:
Polynomial Order with Interpretation:

POL( TOP(x1) ) = x1

POL( ok(x1) ) = x1

POL( 2nd(x1) ) = x1 + 1

POL( cons(x1, x2) ) = x1 + x2

POL( mark(x1) ) = x1

POL( head(x1) ) = x1

POL( take(x1, x2) ) = x2

POL( proper(x1) ) = x1

POL( from(x1) ) = x1

POL( s(x1) ) = 0

POL( sel(x1, x2) ) = x2

POL( active(x1) ) = x1

POL( nil ) = 0

POL( 0 ) = 0


This results in one new DP problem.


   R
DPs
       →DP Problem 1
SCP
       →DP Problem 2
SCP
       →DP Problem 3
SCP
       →DP Problem 4
SCP
       →DP Problem 5
SCP
       →DP Problem 6
SCP
       →DP Problem 7
SCP
       →DP Problem 8
SCP
       →DP Problem 9
SCP
       →DP Problem 10
Nar
           →DP Problem 11
Nar
             ...
               →DP Problem 14
Remaining Obligation(s)




The following remains to be proven:
Dependency Pairs:

TOP(ok(sel(X1', X2'))) -> TOP(sel(X1', active(X2')))
TOP(ok(sel(X1', X2'))) -> TOP(sel(active(X1'), X2'))
TOP(ok(take(X1', X2'))) -> TOP(take(X1', active(X2')))
TOP(ok(take(X1', X2'))) -> TOP(take(active(X1'), X2'))
TOP(ok(2nd(X''))) -> TOP(2nd(active(X'')))
TOP(ok(head(X''))) -> TOP(head(active(X'')))
TOP(ok(s(X''))) -> TOP(s(active(X'')))
TOP(ok(cons(X1', X2'))) -> TOP(cons(active(X1'), X2'))
TOP(ok(from(X''))) -> TOP(from(active(X'')))
TOP(ok(sel(s(N'), cons(X'', XS')))) -> TOP(mark(sel(N', XS')))
TOP(ok(take(s(N'), cons(X'', XS')))) -> TOP(mark(cons(X'', take(N', XS'))))
TOP(ok(head(cons(X'', XS')))) -> TOP(mark(X''))
TOP(ok(from(X''))) -> TOP(mark(cons(X'', from(s(X'')))))
TOP(mark(take(X1', X2'))) -> TOP(take(proper(X1'), proper(X2')))
TOP(mark(2nd(X''))) -> TOP(2nd(proper(X'')))
TOP(mark(head(X''))) -> TOP(head(proper(X'')))
TOP(mark(s(X''))) -> TOP(s(proper(X'')))
TOP(mark(cons(X1', X2'))) -> TOP(cons(proper(X1'), proper(X2')))
TOP(mark(from(X''))) -> TOP(from(proper(X'')))
TOP(mark(sel(X1', X2'))) -> TOP(sel(proper(X1'), proper(X2')))


Rules:


active(from(X)) -> mark(cons(X, from(s(X))))
active(head(cons(X, XS))) -> mark(X)
active(2nd(cons(X, XS))) -> mark(head(XS))
active(take(0, XS)) -> mark(nil)
active(take(s(N), cons(X, XS))) -> mark(cons(X, take(N, XS)))
active(sel(0, cons(X, XS))) -> mark(X)
active(sel(s(N), cons(X, XS))) -> mark(sel(N, XS))
active(from(X)) -> from(active(X))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(s(X)) -> s(active(X))
active(head(X)) -> head(active(X))
active(2nd(X)) -> 2nd(active(X))
active(take(X1, X2)) -> take(active(X1), X2)
active(take(X1, X2)) -> take(X1, active(X2))
active(sel(X1, X2)) -> sel(active(X1), X2)
active(sel(X1, X2)) -> sel(X1, active(X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
s(mark(X)) -> mark(s(X))
s(ok(X)) -> ok(s(X))
head(mark(X)) -> mark(head(X))
head(ok(X)) -> ok(head(X))
2nd(mark(X)) -> mark(2nd(X))
2nd(ok(X)) -> ok(2nd(X))
take(mark(X1), X2) -> mark(take(X1, X2))
take(X1, mark(X2)) -> mark(take(X1, X2))
take(ok(X1), ok(X2)) -> ok(take(X1, X2))
sel(mark(X1), X2) -> mark(sel(X1, X2))
sel(X1, mark(X2)) -> mark(sel(X1, X2))
sel(ok(X1), ok(X2)) -> ok(sel(X1, X2))
proper(from(X)) -> from(proper(X))
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(s(X)) -> s(proper(X))
proper(head(X)) -> head(proper(X))
proper(2nd(X)) -> 2nd(proper(X))
proper(take(X1, X2)) -> take(proper(X1), proper(X2))
proper(0) -> ok(0)
proper(nil) -> ok(nil)
proper(sel(X1, X2)) -> sel(proper(X1), proper(X2))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))




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