(0) Obligation:

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

qsort(nil) → nil
qsort(cons(x, xs)) → append(qsort(filterlow(x, cons(x, xs))), cons(x, qsort(filterhigh(x, cons(x, xs)))))
filterlow(n, nil) → nil
filterlow(n, cons(x, xs)) → if1(ge(n, x), n, x, xs)
if1(true, n, x, xs) → filterlow(n, xs)
if1(false, n, x, xs) → cons(x, filterlow(n, xs))
filterhigh(n, nil) → nil
filterhigh(n, cons(x, xs)) → if2(ge(x, n), n, x, xs)
if2(true, n, x, xs) → filterhigh(n, xs)
if2(false, n, x, xs) → cons(x, filterhigh(n, xs))
ge(x, 0) → true
ge(0, s(x)) → false
ge(s(x), s(y)) → ge(x, y)
append(nil, ys) → ys
append(cons(x, xs), ys) → cons(x, append(xs, ys))

Q is empty.

(1) Overlay + Local Confluence (EQUIVALENT transformation)

The TRS is overlay and locally confluent. By [NOC] we can switch to innermost.

(2) Obligation:

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

qsort(nil) → nil
qsort(cons(x, xs)) → append(qsort(filterlow(x, cons(x, xs))), cons(x, qsort(filterhigh(x, cons(x, xs)))))
filterlow(n, nil) → nil
filterlow(n, cons(x, xs)) → if1(ge(n, x), n, x, xs)
if1(true, n, x, xs) → filterlow(n, xs)
if1(false, n, x, xs) → cons(x, filterlow(n, xs))
filterhigh(n, nil) → nil
filterhigh(n, cons(x, xs)) → if2(ge(x, n), n, x, xs)
if2(true, n, x, xs) → filterhigh(n, xs)
if2(false, n, x, xs) → cons(x, filterhigh(n, xs))
ge(x, 0) → true
ge(0, s(x)) → false
ge(s(x), s(y)) → ge(x, y)
append(nil, ys) → ys
append(cons(x, xs), ys) → cons(x, append(xs, ys))

The set Q consists of the following terms:

qsort(nil)
qsort(cons(x0, x1))
filterlow(x0, nil)
filterlow(x0, cons(x1, x2))
if1(true, x0, x1, x2)
if1(false, x0, x1, x2)
filterhigh(x0, nil)
filterhigh(x0, cons(x1, x2))
if2(true, x0, x1, x2)
if2(false, x0, x1, x2)
ge(x0, 0)
ge(0, s(x0))
ge(s(x0), s(x1))
append(nil, ys)
append(cons(x0, x1), ys)

(3) DependencyPairsProof (EQUIVALENT transformation)

Using Dependency Pairs [AG00,LPAR04] we result in the following initial DP problem.

(4) Obligation:

Q DP problem:
The TRS P consists of the following rules:

QSORT(cons(x, xs)) → APPEND(qsort(filterlow(x, cons(x, xs))), cons(x, qsort(filterhigh(x, cons(x, xs)))))
QSORT(cons(x, xs)) → QSORT(filterlow(x, cons(x, xs)))
QSORT(cons(x, xs)) → FILTERLOW(x, cons(x, xs))
QSORT(cons(x, xs)) → QSORT(filterhigh(x, cons(x, xs)))
QSORT(cons(x, xs)) → FILTERHIGH(x, cons(x, xs))
FILTERLOW(n, cons(x, xs)) → IF1(ge(n, x), n, x, xs)
FILTERLOW(n, cons(x, xs)) → GE(n, x)
IF1(true, n, x, xs) → FILTERLOW(n, xs)
IF1(false, n, x, xs) → FILTERLOW(n, xs)
FILTERHIGH(n, cons(x, xs)) → IF2(ge(x, n), n, x, xs)
FILTERHIGH(n, cons(x, xs)) → GE(x, n)
IF2(true, n, x, xs) → FILTERHIGH(n, xs)
IF2(false, n, x, xs) → FILTERHIGH(n, xs)
GE(s(x), s(y)) → GE(x, y)
APPEND(cons(x, xs), ys) → APPEND(xs, ys)

The TRS R consists of the following rules:

qsort(nil) → nil
qsort(cons(x, xs)) → append(qsort(filterlow(x, cons(x, xs))), cons(x, qsort(filterhigh(x, cons(x, xs)))))
filterlow(n, nil) → nil
filterlow(n, cons(x, xs)) → if1(ge(n, x), n, x, xs)
if1(true, n, x, xs) → filterlow(n, xs)
if1(false, n, x, xs) → cons(x, filterlow(n, xs))
filterhigh(n, nil) → nil
filterhigh(n, cons(x, xs)) → if2(ge(x, n), n, x, xs)
if2(true, n, x, xs) → filterhigh(n, xs)
if2(false, n, x, xs) → cons(x, filterhigh(n, xs))
ge(x, 0) → true
ge(0, s(x)) → false
ge(s(x), s(y)) → ge(x, y)
append(nil, ys) → ys
append(cons(x, xs), ys) → cons(x, append(xs, ys))

The set Q consists of the following terms:

qsort(nil)
qsort(cons(x0, x1))
filterlow(x0, nil)
filterlow(x0, cons(x1, x2))
if1(true, x0, x1, x2)
if1(false, x0, x1, x2)
filterhigh(x0, nil)
filterhigh(x0, cons(x1, x2))
if2(true, x0, x1, x2)
if2(false, x0, x1, x2)
ge(x0, 0)
ge(0, s(x0))
ge(s(x0), s(x1))
append(nil, ys)
append(cons(x0, x1), ys)

We have to consider all minimal (P,Q,R)-chains.

(5) DependencyGraphProof (EQUIVALENT transformation)

The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 5 SCCs with 5 less nodes.

(6) Complex Obligation (AND)

(7) Obligation:

Q DP problem:
The TRS P consists of the following rules:

APPEND(cons(x, xs), ys) → APPEND(xs, ys)

The TRS R consists of the following rules:

qsort(nil) → nil
qsort(cons(x, xs)) → append(qsort(filterlow(x, cons(x, xs))), cons(x, qsort(filterhigh(x, cons(x, xs)))))
filterlow(n, nil) → nil
filterlow(n, cons(x, xs)) → if1(ge(n, x), n, x, xs)
if1(true, n, x, xs) → filterlow(n, xs)
if1(false, n, x, xs) → cons(x, filterlow(n, xs))
filterhigh(n, nil) → nil
filterhigh(n, cons(x, xs)) → if2(ge(x, n), n, x, xs)
if2(true, n, x, xs) → filterhigh(n, xs)
if2(false, n, x, xs) → cons(x, filterhigh(n, xs))
ge(x, 0) → true
ge(0, s(x)) → false
ge(s(x), s(y)) → ge(x, y)
append(nil, ys) → ys
append(cons(x, xs), ys) → cons(x, append(xs, ys))

The set Q consists of the following terms:

qsort(nil)
qsort(cons(x0, x1))
filterlow(x0, nil)
filterlow(x0, cons(x1, x2))
if1(true, x0, x1, x2)
if1(false, x0, x1, x2)
filterhigh(x0, nil)
filterhigh(x0, cons(x1, x2))
if2(true, x0, x1, x2)
if2(false, x0, x1, x2)
ge(x0, 0)
ge(0, s(x0))
ge(s(x0), s(x1))
append(nil, ys)
append(cons(x0, x1), ys)

We have to consider all minimal (P,Q,R)-chains.

(8) UsableRulesProof (EQUIVALENT transformation)

As all Q-normal forms are R-normal forms we are in the innermost case. Hence, by the usable rules processor [LPAR04] we can delete all non-usable rules [FROCOS05] from R.

(9) Obligation:

Q DP problem:
The TRS P consists of the following rules:

APPEND(cons(x, xs), ys) → APPEND(xs, ys)

R is empty.
The set Q consists of the following terms:

qsort(nil)
qsort(cons(x0, x1))
filterlow(x0, nil)
filterlow(x0, cons(x1, x2))
if1(true, x0, x1, x2)
if1(false, x0, x1, x2)
filterhigh(x0, nil)
filterhigh(x0, cons(x1, x2))
if2(true, x0, x1, x2)
if2(false, x0, x1, x2)
ge(x0, 0)
ge(0, s(x0))
ge(s(x0), s(x1))
append(nil, ys)
append(cons(x0, x1), ys)

We have to consider all minimal (P,Q,R)-chains.

(10) QReductionProof (EQUIVALENT transformation)

We deleted the following terms from Q as each root-symbol of these terms does neither occur in P nor in R.[THIEMANN].

qsort(nil)
qsort(cons(x0, x1))
filterlow(x0, nil)
filterlow(x0, cons(x1, x2))
if1(true, x0, x1, x2)
if1(false, x0, x1, x2)
filterhigh(x0, nil)
filterhigh(x0, cons(x1, x2))
if2(true, x0, x1, x2)
if2(false, x0, x1, x2)
ge(x0, 0)
ge(0, s(x0))
ge(s(x0), s(x1))
append(nil, ys)
append(cons(x0, x1), ys)

(11) Obligation:

Q DP problem:
The TRS P consists of the following rules:

APPEND(cons(x, xs), ys) → APPEND(xs, ys)

R is empty.
Q is empty.
We have to consider all minimal (P,Q,R)-chains.

(12) QDPSizeChangeProof (EQUIVALENT transformation)

By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem.

From the DPs we obtained the following set of size-change graphs:

  • APPEND(cons(x, xs), ys) → APPEND(xs, ys)
    The graph contains the following edges 1 > 1, 2 >= 2

(13) YES

(14) Obligation:

Q DP problem:
The TRS P consists of the following rules:

GE(s(x), s(y)) → GE(x, y)

The TRS R consists of the following rules:

qsort(nil) → nil
qsort(cons(x, xs)) → append(qsort(filterlow(x, cons(x, xs))), cons(x, qsort(filterhigh(x, cons(x, xs)))))
filterlow(n, nil) → nil
filterlow(n, cons(x, xs)) → if1(ge(n, x), n, x, xs)
if1(true, n, x, xs) → filterlow(n, xs)
if1(false, n, x, xs) → cons(x, filterlow(n, xs))
filterhigh(n, nil) → nil
filterhigh(n, cons(x, xs)) → if2(ge(x, n), n, x, xs)
if2(true, n, x, xs) → filterhigh(n, xs)
if2(false, n, x, xs) → cons(x, filterhigh(n, xs))
ge(x, 0) → true
ge(0, s(x)) → false
ge(s(x), s(y)) → ge(x, y)
append(nil, ys) → ys
append(cons(x, xs), ys) → cons(x, append(xs, ys))

The set Q consists of the following terms:

qsort(nil)
qsort(cons(x0, x1))
filterlow(x0, nil)
filterlow(x0, cons(x1, x2))
if1(true, x0, x1, x2)
if1(false, x0, x1, x2)
filterhigh(x0, nil)
filterhigh(x0, cons(x1, x2))
if2(true, x0, x1, x2)
if2(false, x0, x1, x2)
ge(x0, 0)
ge(0, s(x0))
ge(s(x0), s(x1))
append(nil, ys)
append(cons(x0, x1), ys)

We have to consider all minimal (P,Q,R)-chains.

(15) UsableRulesProof (EQUIVALENT transformation)

As all Q-normal forms are R-normal forms we are in the innermost case. Hence, by the usable rules processor [LPAR04] we can delete all non-usable rules [FROCOS05] from R.

(16) Obligation:

Q DP problem:
The TRS P consists of the following rules:

GE(s(x), s(y)) → GE(x, y)

R is empty.
The set Q consists of the following terms:

qsort(nil)
qsort(cons(x0, x1))
filterlow(x0, nil)
filterlow(x0, cons(x1, x2))
if1(true, x0, x1, x2)
if1(false, x0, x1, x2)
filterhigh(x0, nil)
filterhigh(x0, cons(x1, x2))
if2(true, x0, x1, x2)
if2(false, x0, x1, x2)
ge(x0, 0)
ge(0, s(x0))
ge(s(x0), s(x1))
append(nil, ys)
append(cons(x0, x1), ys)

We have to consider all minimal (P,Q,R)-chains.

(17) QReductionProof (EQUIVALENT transformation)

We deleted the following terms from Q as each root-symbol of these terms does neither occur in P nor in R.[THIEMANN].

qsort(nil)
qsort(cons(x0, x1))
filterlow(x0, nil)
filterlow(x0, cons(x1, x2))
if1(true, x0, x1, x2)
if1(false, x0, x1, x2)
filterhigh(x0, nil)
filterhigh(x0, cons(x1, x2))
if2(true, x0, x1, x2)
if2(false, x0, x1, x2)
ge(x0, 0)
ge(0, s(x0))
ge(s(x0), s(x1))
append(nil, ys)
append(cons(x0, x1), ys)

(18) Obligation:

Q DP problem:
The TRS P consists of the following rules:

GE(s(x), s(y)) → GE(x, y)

R is empty.
Q is empty.
We have to consider all minimal (P,Q,R)-chains.

(19) QDPSizeChangeProof (EQUIVALENT transformation)

By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem.

From the DPs we obtained the following set of size-change graphs:

  • GE(s(x), s(y)) → GE(x, y)
    The graph contains the following edges 1 > 1, 2 > 2

(20) YES

(21) Obligation:

Q DP problem:
The TRS P consists of the following rules:

IF2(true, n, x, xs) → FILTERHIGH(n, xs)
FILTERHIGH(n, cons(x, xs)) → IF2(ge(x, n), n, x, xs)
IF2(false, n, x, xs) → FILTERHIGH(n, xs)

The TRS R consists of the following rules:

qsort(nil) → nil
qsort(cons(x, xs)) → append(qsort(filterlow(x, cons(x, xs))), cons(x, qsort(filterhigh(x, cons(x, xs)))))
filterlow(n, nil) → nil
filterlow(n, cons(x, xs)) → if1(ge(n, x), n, x, xs)
if1(true, n, x, xs) → filterlow(n, xs)
if1(false, n, x, xs) → cons(x, filterlow(n, xs))
filterhigh(n, nil) → nil
filterhigh(n, cons(x, xs)) → if2(ge(x, n), n, x, xs)
if2(true, n, x, xs) → filterhigh(n, xs)
if2(false, n, x, xs) → cons(x, filterhigh(n, xs))
ge(x, 0) → true
ge(0, s(x)) → false
ge(s(x), s(y)) → ge(x, y)
append(nil, ys) → ys
append(cons(x, xs), ys) → cons(x, append(xs, ys))

The set Q consists of the following terms:

qsort(nil)
qsort(cons(x0, x1))
filterlow(x0, nil)
filterlow(x0, cons(x1, x2))
if1(true, x0, x1, x2)
if1(false, x0, x1, x2)
filterhigh(x0, nil)
filterhigh(x0, cons(x1, x2))
if2(true, x0, x1, x2)
if2(false, x0, x1, x2)
ge(x0, 0)
ge(0, s(x0))
ge(s(x0), s(x1))
append(nil, ys)
append(cons(x0, x1), ys)

We have to consider all minimal (P,Q,R)-chains.

(22) UsableRulesProof (EQUIVALENT transformation)

As all Q-normal forms are R-normal forms we are in the innermost case. Hence, by the usable rules processor [LPAR04] we can delete all non-usable rules [FROCOS05] from R.

(23) Obligation:

Q DP problem:
The TRS P consists of the following rules:

IF2(true, n, x, xs) → FILTERHIGH(n, xs)
FILTERHIGH(n, cons(x, xs)) → IF2(ge(x, n), n, x, xs)
IF2(false, n, x, xs) → FILTERHIGH(n, xs)

The TRS R consists of the following rules:

ge(x, 0) → true
ge(0, s(x)) → false
ge(s(x), s(y)) → ge(x, y)

The set Q consists of the following terms:

qsort(nil)
qsort(cons(x0, x1))
filterlow(x0, nil)
filterlow(x0, cons(x1, x2))
if1(true, x0, x1, x2)
if1(false, x0, x1, x2)
filterhigh(x0, nil)
filterhigh(x0, cons(x1, x2))
if2(true, x0, x1, x2)
if2(false, x0, x1, x2)
ge(x0, 0)
ge(0, s(x0))
ge(s(x0), s(x1))
append(nil, ys)
append(cons(x0, x1), ys)

We have to consider all minimal (P,Q,R)-chains.

(24) QReductionProof (EQUIVALENT transformation)

We deleted the following terms from Q as each root-symbol of these terms does neither occur in P nor in R.[THIEMANN].

qsort(nil)
qsort(cons(x0, x1))
filterlow(x0, nil)
filterlow(x0, cons(x1, x2))
if1(true, x0, x1, x2)
if1(false, x0, x1, x2)
filterhigh(x0, nil)
filterhigh(x0, cons(x1, x2))
if2(true, x0, x1, x2)
if2(false, x0, x1, x2)
append(nil, ys)
append(cons(x0, x1), ys)

(25) Obligation:

Q DP problem:
The TRS P consists of the following rules:

IF2(true, n, x, xs) → FILTERHIGH(n, xs)
FILTERHIGH(n, cons(x, xs)) → IF2(ge(x, n), n, x, xs)
IF2(false, n, x, xs) → FILTERHIGH(n, xs)

The TRS R consists of the following rules:

ge(x, 0) → true
ge(0, s(x)) → false
ge(s(x), s(y)) → ge(x, y)

The set Q consists of the following terms:

ge(x0, 0)
ge(0, s(x0))
ge(s(x0), s(x1))

We have to consider all minimal (P,Q,R)-chains.

(26) QDPSizeChangeProof (EQUIVALENT transformation)

By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem.

From the DPs we obtained the following set of size-change graphs:

  • FILTERHIGH(n, cons(x, xs)) → IF2(ge(x, n), n, x, xs)
    The graph contains the following edges 1 >= 2, 2 > 3, 2 > 4

  • IF2(true, n, x, xs) → FILTERHIGH(n, xs)
    The graph contains the following edges 2 >= 1, 4 >= 2

  • IF2(false, n, x, xs) → FILTERHIGH(n, xs)
    The graph contains the following edges 2 >= 1, 4 >= 2

(27) YES

(28) Obligation:

Q DP problem:
The TRS P consists of the following rules:

IF1(true, n, x, xs) → FILTERLOW(n, xs)
FILTERLOW(n, cons(x, xs)) → IF1(ge(n, x), n, x, xs)
IF1(false, n, x, xs) → FILTERLOW(n, xs)

The TRS R consists of the following rules:

qsort(nil) → nil
qsort(cons(x, xs)) → append(qsort(filterlow(x, cons(x, xs))), cons(x, qsort(filterhigh(x, cons(x, xs)))))
filterlow(n, nil) → nil
filterlow(n, cons(x, xs)) → if1(ge(n, x), n, x, xs)
if1(true, n, x, xs) → filterlow(n, xs)
if1(false, n, x, xs) → cons(x, filterlow(n, xs))
filterhigh(n, nil) → nil
filterhigh(n, cons(x, xs)) → if2(ge(x, n), n, x, xs)
if2(true, n, x, xs) → filterhigh(n, xs)
if2(false, n, x, xs) → cons(x, filterhigh(n, xs))
ge(x, 0) → true
ge(0, s(x)) → false
ge(s(x), s(y)) → ge(x, y)
append(nil, ys) → ys
append(cons(x, xs), ys) → cons(x, append(xs, ys))

The set Q consists of the following terms:

qsort(nil)
qsort(cons(x0, x1))
filterlow(x0, nil)
filterlow(x0, cons(x1, x2))
if1(true, x0, x1, x2)
if1(false, x0, x1, x2)
filterhigh(x0, nil)
filterhigh(x0, cons(x1, x2))
if2(true, x0, x1, x2)
if2(false, x0, x1, x2)
ge(x0, 0)
ge(0, s(x0))
ge(s(x0), s(x1))
append(nil, ys)
append(cons(x0, x1), ys)

We have to consider all minimal (P,Q,R)-chains.

(29) UsableRulesProof (EQUIVALENT transformation)

As all Q-normal forms are R-normal forms we are in the innermost case. Hence, by the usable rules processor [LPAR04] we can delete all non-usable rules [FROCOS05] from R.

(30) Obligation:

Q DP problem:
The TRS P consists of the following rules:

IF1(true, n, x, xs) → FILTERLOW(n, xs)
FILTERLOW(n, cons(x, xs)) → IF1(ge(n, x), n, x, xs)
IF1(false, n, x, xs) → FILTERLOW(n, xs)

The TRS R consists of the following rules:

ge(x, 0) → true
ge(0, s(x)) → false
ge(s(x), s(y)) → ge(x, y)

The set Q consists of the following terms:

qsort(nil)
qsort(cons(x0, x1))
filterlow(x0, nil)
filterlow(x0, cons(x1, x2))
if1(true, x0, x1, x2)
if1(false, x0, x1, x2)
filterhigh(x0, nil)
filterhigh(x0, cons(x1, x2))
if2(true, x0, x1, x2)
if2(false, x0, x1, x2)
ge(x0, 0)
ge(0, s(x0))
ge(s(x0), s(x1))
append(nil, ys)
append(cons(x0, x1), ys)

We have to consider all minimal (P,Q,R)-chains.

(31) QReductionProof (EQUIVALENT transformation)

We deleted the following terms from Q as each root-symbol of these terms does neither occur in P nor in R.[THIEMANN].

qsort(nil)
qsort(cons(x0, x1))
filterlow(x0, nil)
filterlow(x0, cons(x1, x2))
if1(true, x0, x1, x2)
if1(false, x0, x1, x2)
filterhigh(x0, nil)
filterhigh(x0, cons(x1, x2))
if2(true, x0, x1, x2)
if2(false, x0, x1, x2)
append(nil, ys)
append(cons(x0, x1), ys)

(32) Obligation:

Q DP problem:
The TRS P consists of the following rules:

IF1(true, n, x, xs) → FILTERLOW(n, xs)
FILTERLOW(n, cons(x, xs)) → IF1(ge(n, x), n, x, xs)
IF1(false, n, x, xs) → FILTERLOW(n, xs)

The TRS R consists of the following rules:

ge(x, 0) → true
ge(0, s(x)) → false
ge(s(x), s(y)) → ge(x, y)

The set Q consists of the following terms:

ge(x0, 0)
ge(0, s(x0))
ge(s(x0), s(x1))

We have to consider all minimal (P,Q,R)-chains.

(33) QDPSizeChangeProof (EQUIVALENT transformation)

By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem.

From the DPs we obtained the following set of size-change graphs:

  • FILTERLOW(n, cons(x, xs)) → IF1(ge(n, x), n, x, xs)
    The graph contains the following edges 1 >= 2, 2 > 3, 2 > 4

  • IF1(true, n, x, xs) → FILTERLOW(n, xs)
    The graph contains the following edges 2 >= 1, 4 >= 2

  • IF1(false, n, x, xs) → FILTERLOW(n, xs)
    The graph contains the following edges 2 >= 1, 4 >= 2

(34) YES

(35) Obligation:

Q DP problem:
The TRS P consists of the following rules:

QSORT(cons(x, xs)) → QSORT(filterhigh(x, cons(x, xs)))
QSORT(cons(x, xs)) → QSORT(filterlow(x, cons(x, xs)))

The TRS R consists of the following rules:

qsort(nil) → nil
qsort(cons(x, xs)) → append(qsort(filterlow(x, cons(x, xs))), cons(x, qsort(filterhigh(x, cons(x, xs)))))
filterlow(n, nil) → nil
filterlow(n, cons(x, xs)) → if1(ge(n, x), n, x, xs)
if1(true, n, x, xs) → filterlow(n, xs)
if1(false, n, x, xs) → cons(x, filterlow(n, xs))
filterhigh(n, nil) → nil
filterhigh(n, cons(x, xs)) → if2(ge(x, n), n, x, xs)
if2(true, n, x, xs) → filterhigh(n, xs)
if2(false, n, x, xs) → cons(x, filterhigh(n, xs))
ge(x, 0) → true
ge(0, s(x)) → false
ge(s(x), s(y)) → ge(x, y)
append(nil, ys) → ys
append(cons(x, xs), ys) → cons(x, append(xs, ys))

The set Q consists of the following terms:

qsort(nil)
qsort(cons(x0, x1))
filterlow(x0, nil)
filterlow(x0, cons(x1, x2))
if1(true, x0, x1, x2)
if1(false, x0, x1, x2)
filterhigh(x0, nil)
filterhigh(x0, cons(x1, x2))
if2(true, x0, x1, x2)
if2(false, x0, x1, x2)
ge(x0, 0)
ge(0, s(x0))
ge(s(x0), s(x1))
append(nil, ys)
append(cons(x0, x1), ys)

We have to consider all minimal (P,Q,R)-chains.

(36) UsableRulesProof (EQUIVALENT transformation)

As all Q-normal forms are R-normal forms we are in the innermost case. Hence, by the usable rules processor [LPAR04] we can delete all non-usable rules [FROCOS05] from R.

(37) Obligation:

Q DP problem:
The TRS P consists of the following rules:

QSORT(cons(x, xs)) → QSORT(filterhigh(x, cons(x, xs)))
QSORT(cons(x, xs)) → QSORT(filterlow(x, cons(x, xs)))

The TRS R consists of the following rules:

filterlow(n, cons(x, xs)) → if1(ge(n, x), n, x, xs)
if1(true, n, x, xs) → filterlow(n, xs)
ge(x, 0) → true
ge(0, s(x)) → false
ge(s(x), s(y)) → ge(x, y)
if1(false, n, x, xs) → cons(x, filterlow(n, xs))
filterlow(n, nil) → nil
filterhigh(n, cons(x, xs)) → if2(ge(x, n), n, x, xs)
if2(true, n, x, xs) → filterhigh(n, xs)
if2(false, n, x, xs) → cons(x, filterhigh(n, xs))
filterhigh(n, nil) → nil

The set Q consists of the following terms:

qsort(nil)
qsort(cons(x0, x1))
filterlow(x0, nil)
filterlow(x0, cons(x1, x2))
if1(true, x0, x1, x2)
if1(false, x0, x1, x2)
filterhigh(x0, nil)
filterhigh(x0, cons(x1, x2))
if2(true, x0, x1, x2)
if2(false, x0, x1, x2)
ge(x0, 0)
ge(0, s(x0))
ge(s(x0), s(x1))
append(nil, ys)
append(cons(x0, x1), ys)

We have to consider all minimal (P,Q,R)-chains.

(38) QReductionProof (EQUIVALENT transformation)

We deleted the following terms from Q as each root-symbol of these terms does neither occur in P nor in R.[THIEMANN].

qsort(nil)
qsort(cons(x0, x1))
append(nil, ys)
append(cons(x0, x1), ys)

(39) Obligation:

Q DP problem:
The TRS P consists of the following rules:

QSORT(cons(x, xs)) → QSORT(filterhigh(x, cons(x, xs)))
QSORT(cons(x, xs)) → QSORT(filterlow(x, cons(x, xs)))

The TRS R consists of the following rules:

filterlow(n, cons(x, xs)) → if1(ge(n, x), n, x, xs)
if1(true, n, x, xs) → filterlow(n, xs)
ge(x, 0) → true
ge(0, s(x)) → false
ge(s(x), s(y)) → ge(x, y)
if1(false, n, x, xs) → cons(x, filterlow(n, xs))
filterlow(n, nil) → nil
filterhigh(n, cons(x, xs)) → if2(ge(x, n), n, x, xs)
if2(true, n, x, xs) → filterhigh(n, xs)
if2(false, n, x, xs) → cons(x, filterhigh(n, xs))
filterhigh(n, nil) → nil

The set Q consists of the following terms:

filterlow(x0, nil)
filterlow(x0, cons(x1, x2))
if1(true, x0, x1, x2)
if1(false, x0, x1, x2)
filterhigh(x0, nil)
filterhigh(x0, cons(x1, x2))
if2(true, x0, x1, x2)
if2(false, x0, x1, x2)
ge(x0, 0)
ge(0, s(x0))
ge(s(x0), s(x1))

We have to consider all minimal (P,Q,R)-chains.

(40) Induction-Processor (SOUND transformation)


This DP could be deleted by the Induction-Processor:
QSORT(cons(x, xs)) → QSORT(filterhigh(x, cons(x, xs)))


This order was computed:
Polynomial interpretation [POLO]:

POL(0) = 0   
POL(QSORT(x1)) = x1   
POL(cons(x1, x2)) = 1 + x2   
POL(false) = 0   
POL(filterhigh(x1, x2)) = x2   
POL(filterlow(x1, x2)) = x2   
POL(ge(x1, x2)) = 0   
POL(if1(x1, x2, x3, x4)) = 1 + x4   
POL(if2(x1, x2, x3, x4)) = 1 + x4   
POL(nil) = 0   
POL(s(x1)) = 0   
POL(true) = 0   

At least one of these decreasing rules is always used after the deleted DP:
if2(true, n672, x772, xs502) → filterhigh(n672, xs502)


The following formula is valid:
x:sort[a0],xs:sort[a2].filterhigh'(, cons(, xs ))=true


The transformed set:
filterhigh'(n58, cons(x67, xs43)) → if2'(ge(x67, n58), n58, x67, xs43)
if2'(true, n67, x77, xs50) → true
if2'(false, n76, x87, xs57) → filterhigh'(n76, xs57)
filterhigh'(n85, nil) → false
filterlow(n, cons(x, xs)) → if1(ge(n, x), n, x, xs)
if1(true, n7, x8, xs5) → filterlow(n7, xs5)
ge(x18, 0) → true
ge(0, s(x28)) → false
ge(s(x38), s(y2)) → ge(x38, y2)
if1(false, n40, x48, xs30) → cons(x48, filterlow(n40, xs30))
filterlow(n49, nil) → nil
filterhigh(n58, cons(x67, xs43)) → if2(ge(x67, n58), n58, x67, xs43)
if2(true, n67, x77, xs50) → filterhigh(n67, xs50)
if2(false, n76, x87, xs57) → cons(x87, filterhigh(n76, xs57))
filterhigh(n85, nil) → nil
equal_bool(true, false) → false
equal_bool(false, true) → false
equal_bool(true, true) → true
equal_bool(false, false) → true
and(true, x) → x
and(false, x) → false
or(true, x) → true
or(false, x) → x
not(false) → true
not(true) → false
isa_true(true) → true
isa_true(false) → false
isa_false(true) → false
isa_false(false) → true
equal_sort[a0](0, 0) → true
equal_sort[a0](0, s(x0)) → false
equal_sort[a0](s(x0), 0) → false
equal_sort[a0](s(x0), s(x1)) → equal_sort[a0](x0, x1)
equal_sort[a2](cons(x0, x1), cons(x2, x3)) → and(equal_sort[a2](x0, x2), equal_sort[a2](x1, x3))
equal_sort[a2](cons(x0, x1), nil) → false
equal_sort[a2](nil, cons(x0, x1)) → false
equal_sort[a2](nil, nil) → true
equal_sort[a55](witness_sort[a55], witness_sort[a55]) → true


The proof given by the theorem prover:
The following input was given to ACL2:
(set-ruler-extenders :all)

(defun trs_isbool (x)
  (or
    (and
      (consp
        x
      )
      (eq
        'trs_true
        (car
          x
        )
      )
      (eq
        (cdr
          x
        )
        'nil
      )
    )
    (and
      (consp
        x
      )
      (eq
        'trs_false
        (car
          x
        )
      )
      (eq
        (cdr
          x
        )
        'nil
      )
    )
  )
)
(defun trs_issort[a0] (x)
  (or
    (and
      (consp
        x
      )
      (eq
        'trs_0
        (car
          x
        )
      )
      (eq
        (cdr
          x
        )
        'nil
      )
    )
    (and
      (consp
        x
      )
      (consp
        (cdr
          x
        )
      )
      (eq
        'trs_s
        (car
          x
        )
      )
      (trs_issort[a0]
        (car
          (cdr
            x
          )
        )
      )
      (eq
        (cdr
          (cdr
            x
          )
        )
        'nil
      )
    )
  )
)
(defun trs_issort[a55] (x)
  (or
    (and
      (consp
        x
      )
      (eq
        'trs_witness_sort[a55]
        (car
          x
        )
      )
      (eq
        (cdr
          x
        )
        'nil
      )
    )
  )
)
(defun trs_issort[a2] (x)
  (or
    (and
      (consp
        x
      )
      (consp
        (cdr
          x
        )
      )
      (consp
        (cdr
          (cdr
            x
          )
        )
      )
      (eq
        'trs_cons
        (car
          x
        )
      )
      (trs_issort[a0]
        (car
          (cdr
            x
          )
        )
      )
      (trs_issort[a2]
        (car
          (cdr
            (cdr
              x
            )
          )
        )
      )
      (eq
        (cdr
          (cdr
            (cdr
              x
            )
          )
        )
        'nil
      )
    )
    (and
      (consp
        x
      )
      (eq
        'trs_nil
        (car
          x
        )
      )
      (eq
        (cdr
          x
        )
        'nil
      )
    )
  )
)
(defun trs_ge (x0 x1)
  (if
    (and
      (trs_issort[a0]
        x0
      )
      (trs_issort[a0]
        x1
      )
    )
    (if
      (and
        (eq
          (car
            x1
          )
          'trs_0
        )
      )
      (list 'trs_true
      )
      (if
        (and
          (eq
            (car
              x0
            )
            'trs_0
          )
          (eq
            (car
              x1
            )
            'trs_s
          )
        )
        (list 'trs_false
        )
        (if
          (and
          )
          (trs_ge
            (car
              (cdr
                x0
              )
            )
            (car
              (cdr
                x1
              )
            )
          )
          (list 'trs_true
          )
        )
      )
    )
    (list 'trs_true
    )
  )
)
(defun trs_equal_sort[a55] (x0 x1)
  (if
    (and
      (trs_issort[a55]
        x0
      )
      (trs_issort[a55]
        x1
      )
    )
    (if
      (and
      )
      (list 'trs_true
      )
      (list 'trs_true
      )
    )
    (list 'trs_true
    )
  )
)
(defun trs_equal_sort[a0] (x0 x1)
  (if
    (and
      (trs_issort[a0]
        x0
      )
      (trs_issort[a0]
        x1
      )
    )
    (if
      (and
        (eq
          (car
            x0
          )
          'trs_0
        )
        (eq
          (car
            x1
          )
          'trs_0
        )
      )
      (list 'trs_true
      )
      (if
        (and
          (eq
            (car
              x0
            )
            'trs_0
          )
          (eq
            (car
              x1
            )
            'trs_s
          )
        )
        (list 'trs_false
        )
        (if
          (and
            (eq
              (car
                x0
              )
              'trs_s
            )
            (eq
              (car
                x1
              )
              'trs_0
            )
          )
          (list 'trs_false
          )
          (if
            (and
            )
            (trs_equal_sort[a0]
              (car
                (cdr
                  x0
                )
              )
              (car
                (cdr
                  x1
                )
              )
            )
            (list 'trs_true
            )
          )
        )
      )
    )
    (list 'trs_true
    )
  )
)
(defun trs_isa_false (x0)
  (if
    (and
      (trs_isbool
        x0
      )
    )
    (if
      (and
        (eq
          (car
            x0
          )
          'trs_true
        )
      )
      (list 'trs_false
      )
      (if
        (and
        )
        (list 'trs_true
        )
        (list 'trs_true
        )
      )
    )
    (list 'trs_true
    )
  )
)
(defun trs_isa_true (x0)
  (if
    (and
      (trs_isbool
        x0
      )
    )
    (if
      (and
        (eq
          (car
            x0
          )
          'trs_true
        )
      )
      (list 'trs_true
      )
      (if
        (and
        )
        (list 'trs_false
        )
        (list 'trs_true
        )
      )
    )
    (list 'trs_true
    )
  )
)
(defun trs_not (x0)
  (if
    (and
      (trs_isbool
        x0
      )
    )
    (if
      (and
        (eq
          (car
            x0
          )
          'trs_false
        )
      )
      (list 'trs_true
      )
      (if
        (and
        )
        (list 'trs_false
        )
        (list 'trs_true
        )
      )
    )
    (list 'trs_true
    )
  )
)
(defun trs_or (x0 x1)
  (if
    (and
      (trs_isbool
        x0
      )
      (trs_isbool
        x1
      )
    )
    (if
      (and
        (eq
          (car
            x0
          )
          'trs_true
        )
      )
      (list 'trs_true
      )
      (if
        (and
        )
        x1
        (list 'trs_true
        )
      )
    )
    (list 'trs_true
    )
  )
)
(defun trs_and (x0 x1)
  (if
    (and
      (trs_isbool
        x0
      )
      (trs_isbool
        x1
      )
    )
    (if
      (and
        (eq
          (car
            x0
          )
          'trs_true
        )
      )
      x1
      (if
        (and
        )
        (list 'trs_false
        )
        (list 'trs_true
        )
      )
    )
    (list 'trs_true
    )
  )
)
(defun trs_equal_bool (x0 x1)
  (if
    (and
      (trs_isbool
        x0
      )
      (trs_isbool
        x1
      )
    )
    (if
      (and
        (eq
          (car
            x0
          )
          'trs_true
        )
        (eq
          (car
            x1
          )
          'trs_false
        )
      )
      (list 'trs_false
      )
      (if
        (and
          (eq
            (car
              x0
            )
            'trs_false
          )
          (eq
            (car
              x1
            )
            'trs_true
          )
        )
        (list 'trs_false
        )
        (if
          (and
            (eq
              (car
                x0
              )
              'trs_true
            )
            (eq
              (car
                x1
              )
              'trs_true
            )
          )
          (list 'trs_true
          )
          (if
            (and
            )
            (list 'trs_true
            )
            (list 'trs_true
            )
          )
        )
      )
    )
    (list 'trs_true
    )
  )
)
(defun trs_if2 (x0 x1 x2 x3)
  (if
    (and
      (trs_isbool
        x0
      )
      (trs_issort[a0]
        x1
      )
      (trs_issort[a0]
        x2
      )
      (trs_issort[a2]
        x3
      )
    )
    (if
      (and
        (eq
          (car
            x0
          )
          'trs_true
        )
        (eq
          (car
            x3
          )
          'trs_cons
        )
      )
      (trs_if2
        (trs_ge
          (car
            (cdr
              x3
            )
          )
          x1
        )
        x1
        (car
          (cdr
            x3
          )
        )
        (car
          (cdr
            (cdr
              x3
            )
          )
        )
      )
      (if
        (and
          (eq
            (car
              x0
            )
            'trs_true
          )
          (eq
            (car
              x3
            )
            'trs_nil
          )
        )
        (list 'trs_nil
        )
        (if
          (and
            (eq
              (car
                x0
              )
              'trs_false
            )
            (eq
              (car
                x3
              )
              'trs_cons
            )
          )
          (list 'trs_cons
            x2
            (trs_if2
              (trs_ge
                (car
                  (cdr
                    x3
                  )
                )
                x1
              )
              x1
              (car
                (cdr
                  x3
                )
              )
              (car
                (cdr
                  (cdr
                    x3
                  )
                )
              )
            )
          )
          (if
            (and
            )
            (list 'trs_cons
              x2
              (list 'trs_nil
              )
            )
            (list 'trs_nil
            )
          )
        )
      )
    )
    (list 'trs_nil
    )
  )
)
(defun trs_if1 (x0 x1 x2 x3)
  (if
    (and
      (trs_isbool
        x0
      )
      (trs_issort[a0]
        x1
      )
      (trs_issort[a0]
        x2
      )
      (trs_issort[a2]
        x3
      )
    )
    (if
      (and
        (eq
          (car
            x0
          )
          'trs_true
        )
        (eq
          (car
            x3
          )
          'trs_cons
        )
      )
      (trs_if1
        (trs_ge
          x1
          (car
            (cdr
              x3
            )
          )
        )
        x1
        (car
          (cdr
            x3
          )
        )
        (car
          (cdr
            (cdr
              x3
            )
          )
        )
      )
      (if
        (and
          (eq
            (car
              x0
            )
            'trs_true
          )
          (eq
            (car
              x3
            )
            'trs_nil
          )
        )
        (list 'trs_nil
        )
        (if
          (and
            (eq
              (car
                x0
              )
              'trs_false
            )
            (eq
              (car
                x3
              )
              'trs_cons
            )
          )
          (list 'trs_cons
            x2
            (trs_if1
              (trs_ge
                x1
                (car
                  (cdr
                    x3
                  )
                )
              )
              x1
              (car
                (cdr
                  x3
                )
              )
              (car
                (cdr
                  (cdr
                    x3
                  )
                )
              )
            )
          )
          (if
            (and
            )
            (list 'trs_cons
              x2
              (list 'trs_nil
              )
            )
            (list 'trs_nil
            )
          )
        )
      )
    )
    (list 'trs_nil
    )
  )
)
(defun trs_if2prime (x0 x1 x2 x3)
  (if
    (and
      (trs_isbool
        x0
      )
      (trs_issort[a0]
        x1
      )
      (trs_issort[a0]
        x2
      )
      (trs_issort[a2]
        x3
      )
    )
    (if
      (and
        (eq
          (car
            x0
          )
          'trs_true
        )
      )
      (list 'trs_true
      )
      (if
        (and
          (eq
            (car
              x0
            )
            'trs_false
          )
          (eq
            (car
              x3
            )
            'trs_cons
          )
        )
        (trs_if2prime
          (trs_ge
            (car
              (cdr
                x3
              )
            )
            x1
          )
          x1
          (car
            (cdr
              x3
            )
          )
          (car
            (cdr
              (cdr
                x3
              )
            )
          )
        )
        (if
          (and
          )
          (list 'trs_false
          )
          (list 'trs_true
          )
        )
      )
    )
    (list 'trs_true
    )
  )
)
(defun trs_filterhigh (x0 x1)
  (if
    (and
      (trs_issort[a0]
        x0
      )
      (trs_issort[a2]
        x1
      )
    )
    (if
      (and
        (eq
          (car
            x1
          )
          'trs_nil
        )
      )
      (list 'trs_nil
      )
      (if
        (and
          (eq
            (car
              x1
            )
            'trs_cons
          )
          (eq
            (trs_equal_bool
              (trs_ge
                (car
                  (cdr
                    x1
                  )
                )
                x0
              )
              (list 'trs_true
              )
            )
            (list 'trs_true
            )
          )
        )
        (trs_filterhigh
          x0
          (car
            (cdr
              (cdr
                x1
              )
            )
          )
        )
        (if
          (and
            (eq
              (trs_equal_bool
                (trs_ge
                  (car
                    (cdr
                      x1
                    )
                  )
                  x0
                )
                (list 'trs_true
                )
              )
              (list 'trs_false
              )
            )
          )
          (list 'trs_cons
            (car
              (cdr
                x1
              )
            )
            (trs_filterhigh
              x0
              (car
                (cdr
                  (cdr
                    x1
                  )
                )
              )
            )
          )
          (list 'trs_nil
          )
        )
      )
    )
    (list 'trs_nil
    )
  )
)
(defun trs_filterlow (x0 x1)
  (if
    (and
      (trs_issort[a0]
        x0
      )
      (trs_issort[a2]
        x1
      )
    )
    (if
      (and
        (eq
          (car
            x1
          )
          'trs_nil
        )
      )
      (list 'trs_nil
      )
      (if
        (and
          (eq
            (car
              x1
            )
            'trs_cons
          )
          (eq
            (trs_equal_bool
              (trs_ge
                x0
                (car
                  (cdr
                    x1
                  )
                )
              )
              (list 'trs_true
              )
            )
            (list 'trs_true
            )
          )
        )
        (trs_filterlow
          x0
          (car
            (cdr
              (cdr
                x1
              )
            )
          )
        )
        (if
          (and
            (eq
              (trs_equal_bool
                (trs_ge
                  x0
                  (car
                    (cdr
                      x1
                    )
                  )
                )
                (list 'trs_true
                )
              )
              (list 'trs_false
              )
            )
          )
          (list 'trs_cons
            (car
              (cdr
                x1
              )
            )
            (trs_filterlow
              x0
              (car
                (cdr
                  (cdr
                    x1
                  )
                )
              )
            )
          )
          (list 'trs_nil
          )
        )
      )
    )
    (list 'trs_nil
    )
  )
)
(defun trs_filterhighprime (x0 x1)
  (if
    (and
      (trs_issort[a0]
        x0
      )
      (trs_issort[a2]
        x1
      )
    )
    (if
      (and
        (eq
          (car
            x1
          )
          'trs_nil
        )
      )
      (list 'trs_false
      )
      (if
        (and
          (eq
            (car
              x1
            )
            'trs_cons
          )
          (eq
            (trs_equal_bool
              (trs_ge
                (car
                  (cdr
                    x1
                  )
                )
                x0
              )
              (list 'trs_true
              )
            )
            (list 'trs_true
            )
          )
        )
        (list 'trs_true
        )
        (if
          (and
            (eq
              (trs_equal_bool
                (trs_ge
                  (car
                    (cdr
                      x1
                    )
                  )
                  x0
                )
                (list 'trs_true
                )
              )
              (list 'trs_false
              )
            )
          )
          (trs_filterhighprime
            x0
            (car
              (cdr
                (cdr
                  x1
                )
              )
            )
          )
          (list 'trs_true
          )
        )
      )
    )
    (list 'trs_true
    )
  )
)
(defun trs_equal_sort[a2] (x0 x1)
  (if
    (and
      (trs_issort[a2]
        x0
      )
      (trs_issort[a2]
        x1
      )
    )
    (if
      (and
        (eq
          (car
            x0
          )
          'trs_cons
        )
        (eq
          (car
            x1
          )
          'trs_cons
        )
      )
      (trs_and
        (trs_equal_sort[a2]
          (car
            (cdr
              x0
            )
          )
          (car
            (cdr
              x1
            )
          )
        )
        (trs_equal_sort[a2]
          (car
            (cdr
              (cdr
                x0
              )
            )
          )
          (car
            (cdr
              (cdr
                x1
              )
            )
          )
        )
      )
      (if
        (and
          (eq
            (car
              x0
            )
            'trs_cons
          )
          (eq
            (car
              x1
            )
            'trs_nil
          )
        )
        (list 'trs_false
        )
        (if
          (and
            (eq
              (car
                x0
              )
              'trs_nil
            )
            (eq
              (car
                x1
              )
              'trs_cons
            )
          )
          (list 'trs_false
          )
          (if
            (and
            )
            (list 'trs_true
            )
            (list 'trs_true
            )
          )
        )
      )
    )
    (list 'trs_true
    )
  )
)
(with-prover-time-limit 3
  (defthm test
    (implies
      (and
        (trs_issort[a0] trs_x)
        (trs_issort[a2] trs_xs)
      )
      (eq
        (trs_filterhighprime
          trs_x
          (list 'trs_cons
            trs_x
            trs_xs
          )
        )
        (list 'trs_true
        )
      )
    )
    :hints (("Goal" :do-not '(generalize)))
  )
)


The following output was given by ACL2:
This is SBCL 1.0.29.11.debian, an implementation of ANSI Common Lisp.
More information about SBCL is available at .

SBCL is free software, provided as is, with absolutely no warranty.
It is mostly in the public domain; some portions are provided under
BSD-style licenses.  See the CREDITS and COPYING files in the
distribution for more information.

 ACL2 Version 3.6 built February 12, 2010  14:59:57.
 Copyright (C) 2009  University of Texas at Austin
 ACL2 comes with ABSOLUTELY NO WARRANTY.  This is free software and you
 are welcome to redistribute it under certain conditions.  For details,
 see the GNU General Public License.

 Initialized with (INITIALIZE-ACL2 'INCLUDE-BOOK *ACL2-PASS-2-FILES*).
 See the documentation topic note-3-6 for recent changes.
 Note: We have modified the prompt in some underlying Lisps to further
 distinguish it from the ACL2 prompt.

ACL2 Version 3.6.  Level 1.  Cbd "/home/petersk/workspace/benchmark/".
Distributed books directory "/home/petersk/download/acl2-sources/books/".
Type :help for help.
Type (good-bye) to quit completely out of ACL2.

ACL2 !> :ALL
ACL2 !>
Since TRS_ISBOOL is non-recursive, its admission is trivial.  We observe
that the type of TRS_ISBOOL is described by the theorem 
(OR (EQUAL (TRS_ISBOOL X) T) (EQUAL (TRS_ISBOOL X) NIL)).  We used
the :executable-counterpart of EQUAL and primitive type reasoning.

Summary
Form:  ( DEFUN TRS_ISBOOL ...)
Rules: ((:EXECUTABLE-COUNTERPART EQUAL)
        (:FAKE-RUNE-FOR-TYPE-SET NIL))
Warnings:  None
Time:  0.00 seconds (prove: 0.00, print: 0.00, other: 0.00)
 TRS_ISBOOL
ACL2 !>
For the admission of TRS_ISSORT[A0] we will use the relation O< (which
is known to be well-founded on the domain recognized by O-P) and the
measure (ACL2-COUNT X).  The non-trivial part of the measure conjecture
is

Goal
(IMPLIES (AND (NOT (AND (CONSP X)
                        (EQ 'TRS_0 (CAR X))
                        (EQ (CDR X) NIL)))
              (CONSP X)
              (CONSP (CDR X))
              (EQ 'TRS_S (CAR X)))
         (O< (ACL2-COUNT (CADR X))
             (ACL2-COUNT X))).

By the simple :definition EQ we reduce the conjecture to

Goal'
(IMPLIES (AND (NOT (AND (CONSP X)
                        (EQUAL 'TRS_0 (CAR X))
                        (EQUAL (CDR X) NIL)))
              (CONSP X)
              (CONSP (CDR X))
              (EQUAL 'TRS_S (CAR X)))
         (O< (ACL2-COUNT (CADR X))
             (ACL2-COUNT X))).

This simplifies, using the :definitions ACL2-COUNT, FIX, O-FINP and
O<, the :executable-counterparts of ACL2-COUNT and EQUAL, primitive
type reasoning, the :rewrite rule UNICITY-OF-0 and the :type-prescription
rule ACL2-COUNT, to

Goal''
(IMPLIES (AND (CONSP X)
              (CONSP (CDR X))
              (EQUAL 'TRS_S (CAR X)))
         (< (ACL2-COUNT (CADR X))
            (+ 1 (ACL2-COUNT (CDR X))))).

The destructor terms (CAR X) and (CDR X) can be eliminated.  Furthermore,
those terms are at the root of a chain of two rounds of destructor
elimination. (1) Use CAR-CDR-ELIM to replace X by (CONS X1 X2), (CAR X)
by X1 and (CDR X) by X2 and restrict the type of the new variable X1
to be that of the term it replaces.  (2) Use CAR-CDR-ELIM, again, to
replace X2 by (CONS X3 X4), (CAR X2) by X3 and (CDR X2) by X4.    These
steps produce the following goal.

Goal'''
(IMPLIES (AND (CONSP (CONS X3 X4))
              (SYMBOLP X1)
              (NOT (EQUAL X1 T))
              (NOT (EQUAL X1 NIL))
              (CONSP (LIST* X1 X3 X4))
              (EQUAL 'TRS_S X1))
         (< (ACL2-COUNT X3)
            (+ 1 (ACL2-COUNT (CONS X3 X4))))).

By case analysis we reduce the conjecture to

Goal'4'
(IMPLIES (AND (CONSP (CONS X3 X4))
              (SYMBOLP X1)
              (NOT (EQUAL X1 T))
              X1 (CONSP (LIST* X1 X3 X4))
              (EQUAL 'TRS_S X1))
         (< (ACL2-COUNT X3)
            (+ 1 (ACL2-COUNT (CONS X3 X4))))).

This simplifies, using the :definition ACL2-COUNT, the :executable-
counterparts of EQUAL, NOT and SYMBOLP, primitive type reasoning and
the :rewrite rules CAR-CONS and CDR-CONS, to

Goal'5'
(< (ACL2-COUNT X3)
   (+ 1 1 (ACL2-COUNT X3)
      (ACL2-COUNT X4))).

But simplification reduces this to T, using linear arithmetic, primitive
type reasoning and the :type-prescription rule ACL2-COUNT.

Q.E.D.

That completes the proof of the measure theorem for TRS_ISSORT[A0].
Thus, we admit this function under the principle of definition.  We
observe that the type of TRS_ISSORT[A0] is described by the theorem
(OR (EQUAL (TRS_ISSORT[A0] X) T) (EQUAL (TRS_ISSORT[A0] X) NIL)). 
We used the :executable-counterpart of EQUAL and primitive type reasoning.

Summary
Form:  ( DEFUN TRS_ISSORT[A0] ...)
Rules: ((:DEFINITION ACL2-COUNT)
        (:DEFINITION EQ)
        (:DEFINITION FIX)
        (:DEFINITION NOT)
        (:DEFINITION O-FINP)
        (:DEFINITION O<)
        (:ELIM CAR-CDR-ELIM)
        (:EXECUTABLE-COUNTERPART ACL2-COUNT)
        (:EXECUTABLE-COUNTERPART EQUAL)
        (:EXECUTABLE-COUNTERPART NOT)
        (:EXECUTABLE-COUNTERPART SYMBOLP)
        (:FAKE-RUNE-FOR-LINEAR NIL)
        (:FAKE-RUNE-FOR-TYPE-SET NIL)
        (:REWRITE CAR-CONS)
        (:REWRITE CDR-CONS)
        (:REWRITE UNICITY-OF-0)
        (:TYPE-PRESCRIPTION ACL2-COUNT))
Warnings:  None
Time:  0.01 seconds (prove: 0.00, print: 0.01, other: 0.00)
 TRS_ISSORT[A0]
ACL2 !>
Since TRS_ISSORT[A55] is non-recursive, its admission is trivial. 
We observe that the type of TRS_ISSORT[A55] is described by the theorem
(OR (EQUAL (TRS_ISSORT[A55] X) T) (EQUAL (TRS_ISSORT[A55] X) NIL)).
We used primitive type reasoning.

Summary
Form:  ( DEFUN TRS_ISSORT[A55] ...)
Rules: ((:FAKE-RUNE-FOR-TYPE-SET NIL))
Warnings:  None
Time:  0.01 seconds (prove: 0.00, print: 0.00, other: 0.01)
 TRS_ISSORT[A55]
ACL2 !>
For the admission of TRS_ISSORT[A2] we will use the relation O< (which
is known to be well-founded on the domain recognized by O-P) and the
measure (ACL2-COUNT X).  The non-trivial part of the measure conjecture
is

Goal
(IMPLIES (AND (CONSP X)
              (CONSP (CDR X))
              (CONSP (CDDR X))
              (EQ 'TRS_CONS (CAR X))
              (TRS_ISSORT[A0] (CADR X)))
         (O< (ACL2-COUNT (CADDR X))
             (ACL2-COUNT X))).

By the simple :definition EQ we reduce the conjecture to

Goal'
(IMPLIES (AND (CONSP X)
              (CONSP (CDR X))
              (CONSP (CDDR X))
              (EQUAL 'TRS_CONS (CAR X))
              (TRS_ISSORT[A0] (CADR X)))
         (O< (ACL2-COUNT (CADDR X))
             (ACL2-COUNT X))).

This simplifies, using the :definitions ACL2-COUNT, FIX, O-FINP and
O<, the :executable-counterpart of ACL2-COUNT, primitive type reasoning,
the :rewrite rule UNICITY-OF-0 and the :type-prescription rule ACL2-COUNT,
to

Goal''
(IMPLIES (AND (CONSP X)
              (CONSP (CDR X))
              (CONSP (CDDR X))
              (EQUAL 'TRS_CONS (CAR X))
              (TRS_ISSORT[A0] (CADR X)))
         (< (ACL2-COUNT (CADDR X))
            (+ 1 1 (ACL2-COUNT (CADR X))
               (ACL2-COUNT (CDDR X))))).

The destructor terms (CAR X) and (CDR X) can be eliminated.  Furthermore,
those terms are at the root of a chain of three rounds of destructor
elimination. (1) Use CAR-CDR-ELIM to replace X by (CONS X1 X2), (CAR X)
by X1 and (CDR X) by X2 and restrict the type of the new variable X1
to be that of the term it replaces.  (2) Use CAR-CDR-ELIM, again, to
replace X2 by (CONS X3 X4), (CAR X2) by X3 and (CDR X2) by X4.  (3)
Finally, use CAR-CDR-ELIM to replace X4 by (CONS X5 X6), (CAR X4) by
X5 and (CDR X4) by X6.    These steps produce the following goal.

Goal'''
(IMPLIES (AND (CONSP (CONS X5 X6))
              (CONSP (LIST* X3 X5 X6))
              (SYMBOLP X1)
              (NOT (EQUAL X1 T))
              (NOT (EQUAL X1 NIL))
              (CONSP (LIST* X1 X3 X5 X6))
              (EQUAL 'TRS_CONS X1)
              (TRS_ISSORT[A0] X3))
         (< (ACL2-COUNT X5)
            (+ 1 1 (ACL2-COUNT X3)
               (ACL2-COUNT (CONS X5 X6))))).

By case analysis we reduce the conjecture to

Goal'4'
(IMPLIES (AND (CONSP (CONS X5 X6))
              (CONSP (LIST* X3 X5 X6))
              (SYMBOLP X1)
              (NOT (EQUAL X1 T))
              X1 (CONSP (LIST* X1 X3 X5 X6))
              (EQUAL 'TRS_CONS X1)
              (TRS_ISSORT[A0] X3))
         (< (ACL2-COUNT X5)
            (+ 1 1 (ACL2-COUNT X3)
               (ACL2-COUNT (CONS X5 X6))))).

This simplifies, using the :definition ACL2-COUNT, the :executable-
counterparts of EQUAL, NOT and SYMBOLP, primitive type reasoning and
the :rewrite rules CAR-CONS and CDR-CONS, to

Goal'5'
(IMPLIES (TRS_ISSORT[A0] X3)
         (< (ACL2-COUNT X5)
            (+ 1 1 (ACL2-COUNT X3)
               1 (ACL2-COUNT X5)
               (ACL2-COUNT X6)))).

But simplification reduces this to T, using linear arithmetic, primitive
type reasoning and the :type-prescription rule ACL2-COUNT.

Q.E.D.

That completes the proof of the measure theorem for TRS_ISSORT[A2].
Thus, we admit this function under the principle of definition.  We
observe that the type of TRS_ISSORT[A2] is described by the theorem
(OR (EQUAL (TRS_ISSORT[A2] X) T) (EQUAL (TRS_ISSORT[A2] X) NIL)). 
We used the :executable-counterpart of EQUAL, primitive type reasoning
and the :type-prescription rule TRS_ISSORT[A0].

Summary
Form:  ( DEFUN TRS_ISSORT[A2] ...)
Rules: ((:DEFINITION ACL2-COUNT)
        (:DEFINITION EQ)
        (:DEFINITION FIX)
        (:DEFINITION NOT)
        (:DEFINITION O-FINP)
        (:DEFINITION O<)
        (:ELIM CAR-CDR-ELIM)
        (:EXECUTABLE-COUNTERPART ACL2-COUNT)
        (:EXECUTABLE-COUNTERPART EQUAL)
        (:EXECUTABLE-COUNTERPART NOT)
        (:EXECUTABLE-COUNTERPART SYMBOLP)
        (:FAKE-RUNE-FOR-LINEAR NIL)
        (:FAKE-RUNE-FOR-TYPE-SET NIL)
        (:REWRITE CAR-CONS)
        (:REWRITE CDR-CONS)
        (:REWRITE UNICITY-OF-0)
        (:TYPE-PRESCRIPTION ACL2-COUNT)
        (:TYPE-PRESCRIPTION TRS_ISSORT[A0]))
Warnings:  None
Time:  0.01 seconds (prove: 0.00, print: 0.00, other: 0.01)
 TRS_ISSORT[A2]
ACL2 !>
For the admission of TRS_GE we will use the relation O< (which is known
to be well-founded on the domain recognized by O-P) and the measure
(ACL2-COUNT X0).  The non-trivial part of the measure conjecture is

Goal
(IMPLIES (AND (AND (TRS_ISSORT[A0] X0)
                   (TRS_ISSORT[A0] X1))
              (NOT (EQ (CAR X1) 'TRS_0))
              (NOT (AND (EQ (CAR X0) 'TRS_0)
                        (EQ (CAR X1) 'TRS_S)))
              T)
         (O< (ACL2-COUNT (CADR X0))
             (ACL2-COUNT X0))).

By the simple :definition EQ we reduce the conjecture to

Goal'
(IMPLIES (AND (TRS_ISSORT[A0] X0)
              (TRS_ISSORT[A0] X1)
              (NOT (EQUAL (CAR X1) 'TRS_0))
              (NOT (AND (EQUAL (CAR X0) 'TRS_0)
                        (EQUAL (CAR X1) 'TRS_S))))
         (O< (ACL2-COUNT (CADR X0))
             (ACL2-COUNT X0))).

This simplifies, using the :definitions ACL2-COUNT, FIX, O-FINP, O<
and TRS_ISSORT[A0], the :executable-counterparts of ACL2-COUNT and
EQUAL, primitive type reasoning, the :rewrite rules COMMUTATIVITY-OF-+
and UNICITY-OF-0 and the :type-prescription rule ACL2-COUNT, to

Goal''
(IMPLIES (AND (CONSP X0)
              (CONSP (CDR X0))
              (EQUAL 'TRS_S (CAR X0))
              (TRS_ISSORT[A0] (CADR X0))
              (NOT (CDDR X0))
              (TRS_ISSORT[A0] X1)
              (NOT (EQUAL (CAR X1) 'TRS_0)))
         (< (ACL2-COUNT (CADR X0))
            (+ 1 1 (ACL2-COUNT (CADR X0))))).

But simplification reduces this to T, using linear arithmetic, primitive
type reasoning and the :type-prescription rule ACL2-COUNT.

Q.E.D.

That completes the proof of the measure theorem for TRS_GE.  Thus,
we admit this function under the principle of definition.  We observe
that the type of TRS_GE is described by the theorem 
(AND (CONSP (TRS_GE X0 X1)) (TRUE-LISTP (TRS_GE X0 X1))).  

Summary
Form:  ( DEFUN TRS_GE ...)
Rules: ((:DEFINITION ACL2-COUNT)
        (:DEFINITION EQ)
        (:DEFINITION FIX)
        (:DEFINITION NOT)
        (:DEFINITION O-FINP)
        (:DEFINITION O<)
        (:DEFINITION TRS_ISSORT[A0])
        (:EXECUTABLE-COUNTERPART ACL2-COUNT)
        (:EXECUTABLE-COUNTERPART EQUAL)
        (:FAKE-RUNE-FOR-LINEAR NIL)
        (:FAKE-RUNE-FOR-TYPE-SET NIL)
        (:REWRITE COMMUTATIVITY-OF-+)
        (:REWRITE UNICITY-OF-0)
        (:TYPE-PRESCRIPTION ACL2-COUNT))
Warnings:  None
Time:  0.01 seconds (prove: 0.00, print: 0.00, other: 0.01)
 TRS_GE
ACL2 !>
Since TRS_EQUAL_SORT[A55] is non-recursive, its admission is trivial.
We observe that the type of TRS_EQUAL_SORT[A55] is described by the
theorem 
(AND (CONSP (TRS_EQUAL_SORT[A55] X0 X1))
     (TRUE-LISTP (TRS_EQUAL_SORT[A55] X0 X1))).

Summary
Form:  ( DEFUN TRS_EQUAL_SORT[A55] ...)
Rules: NIL
Warnings:  None
Time:  0.00 seconds (prove: 0.00, print: 0.00, other: 0.00)
 TRS_EQUAL_SORT[A55]
ACL2 !>
For the admission of TRS_EQUAL_SORT[A0] we will use the relation O<
(which is known to be well-founded on the domain recognized by O-P)
and the measure (ACL2-COUNT X0).  The non-trivial part of the measure
conjecture is

Goal
(IMPLIES (AND (AND (TRS_ISSORT[A0] X0)
                   (TRS_ISSORT[A0] X1))
              (NOT (AND (EQ (CAR X0) 'TRS_0)
                        (EQ (CAR X1) 'TRS_0)))
              (NOT (AND (EQ (CAR X0) 'TRS_0)
                        (EQ (CAR X1) 'TRS_S)))
              (NOT (AND (EQ (CAR X0) 'TRS_S)
                        (EQ (CAR X1) 'TRS_0)))
              T)
         (O< (ACL2-COUNT (CADR X0))
             (ACL2-COUNT X0))).

By the simple :definition EQ we reduce the conjecture to

Goal'
(IMPLIES (AND (TRS_ISSORT[A0] X0)
              (TRS_ISSORT[A0] X1)
              (NOT (AND (EQUAL (CAR X0) 'TRS_0)
                        (EQUAL (CAR X1) 'TRS_0)))
              (NOT (AND (EQUAL (CAR X0) 'TRS_0)
                        (EQUAL (CAR X1) 'TRS_S)))
              (NOT (AND (EQUAL (CAR X0) 'TRS_S)
                        (EQUAL (CAR X1) 'TRS_0))))
         (O< (ACL2-COUNT (CADR X0))
             (ACL2-COUNT X0))).

This simplifies, using the :definitions ACL2-COUNT, FIX, O-FINP, O<
and TRS_ISSORT[A0], the :executable-counterparts of ACL2-COUNT and
EQUAL, primitive type reasoning, the :rewrite rules COMMUTATIVITY-OF-+
and UNICITY-OF-0 and the :type-prescription rule ACL2-COUNT, to

Goal''
(IMPLIES (AND (CONSP X0)
              (CONSP (CDR X0))
              (EQUAL 'TRS_S (CAR X0))
              (TRS_ISSORT[A0] (CADR X0))
              (NOT (CDDR X0))
              (TRS_ISSORT[A0] X1)
              (NOT (EQUAL (CAR X1) 'TRS_0)))
         (< (ACL2-COUNT (CADR X0))
            (+ 1 1 (ACL2-COUNT (CADR X0))))).

But simplification reduces this to T, using linear arithmetic, primitive
type reasoning and the :type-prescription rule ACL2-COUNT.

Q.E.D.

That completes the proof of the measure theorem for TRS_EQUAL_SORT[A0].
Thus, we admit this function under the principle of definition.  We
observe that the type of TRS_EQUAL_SORT[A0] is described by the theorem
(AND (CONSP (TRS_EQUAL_SORT[A0] X0 X1))
     (TRUE-LISTP (TRS_EQUAL_SORT[A0] X0 X1))).
We used the :executable-counterpart of EQUAL and primitive type reasoning.

Summary
Form:  ( DEFUN TRS_EQUAL_SORT[A0] ...)
Rules: ((:DEFINITION ACL2-COUNT)
        (:DEFINITION EQ)
        (:DEFINITION FIX)
        (:DEFINITION NOT)
        (:DEFINITION O-FINP)
        (:DEFINITION O<)
        (:DEFINITION TRS_ISSORT[A0])
        (:EXECUTABLE-COUNTERPART ACL2-COUNT)
        (:EXECUTABLE-COUNTERPART EQUAL)
        (:FAKE-RUNE-FOR-LINEAR NIL)
        (:FAKE-RUNE-FOR-TYPE-SET NIL)
        (:REWRITE COMMUTATIVITY-OF-+)
        (:REWRITE UNICITY-OF-0)
        (:TYPE-PRESCRIPTION ACL2-COUNT))
Warnings:  None
Time:  0.01 seconds (prove: 0.00, print: 0.00, other: 0.01)
 TRS_EQUAL_SORT[A0]
ACL2 !>
Since TRS_ISA_FALSE is non-recursive, its admission is trivial.  We
observe that the type of TRS_ISA_FALSE is described by the theorem
(AND (CONSP (TRS_ISA_FALSE X0)) (TRUE-LISTP (TRS_ISA_FALSE X0))). 

Summary
Form:  ( DEFUN TRS_ISA_FALSE ...)
Rules: NIL
Warnings:  None
Time:  0.00 seconds (prove: 0.00, print: 0.00, other: 0.00)
 TRS_ISA_FALSE
ACL2 !>
Since TRS_ISA_TRUE is non-recursive, its admission is trivial.  We
observe that the type of TRS_ISA_TRUE is described by the theorem 
(AND (CONSP (TRS_ISA_TRUE X0)) (TRUE-LISTP (TRS_ISA_TRUE X0))).  

Summary
Form:  ( DEFUN TRS_ISA_TRUE ...)
Rules: NIL
Warnings:  None
Time:  0.01 seconds (prove: 0.00, print: 0.00, other: 0.01)
 TRS_ISA_TRUE
ACL2 !>
Since TRS_NOT is non-recursive, its admission is trivial.  We observe
that the type of TRS_NOT is described by the theorem 
(AND (CONSP (TRS_NOT X0)) (TRUE-LISTP (TRS_NOT X0))).  

Summary
Form:  ( DEFUN TRS_NOT ...)
Rules: NIL
Warnings:  None
Time:  0.00 seconds (prove: 0.00, print: 0.00, other: 0.00)
 TRS_NOT
ACL2 !>
Since TRS_OR is non-recursive, its admission is trivial.  We observe
that the type of TRS_OR is described by the theorem 
(OR (AND (CONSP (TRS_OR X0 X1))
         (TRUE-LISTP (TRS_OR X0 X1)))
    (EQUAL (TRS_OR X0 X1) X1)).

Summary
Form:  ( DEFUN TRS_OR ...)
Rules: NIL
Warnings:  None
Time:  0.00 seconds (prove: 0.00, print: 0.00, other: 0.00)
 TRS_OR
ACL2 !>
Since TRS_AND is non-recursive, its admission is trivial.  We observe
that the type of TRS_AND is described by the theorem 
(OR (AND (CONSP (TRS_AND X0 X1))
         (TRUE-LISTP (TRS_AND X0 X1)))
    (EQUAL (TRS_AND X0 X1) X1)).

Summary
Form:  ( DEFUN TRS_AND ...)
Rules: NIL
Warnings:  None
Time:  0.01 seconds (prove: 0.00, print: 0.00, other: 0.01)
 TRS_AND
ACL2 !>
Since TRS_EQUAL_BOOL is non-recursive, its admission is trivial.  We
observe that the type of TRS_EQUAL_BOOL is described by the theorem
(AND (CONSP (TRS_EQUAL_BOOL X0 X1)) (TRUE-LISTP (TRS_EQUAL_BOOL X0 X1))).
We used the :executable-counterpart of EQUAL and primitive type reasoning.

Summary
Form:  ( DEFUN TRS_EQUAL_BOOL ...)
Rules: ((:EXECUTABLE-COUNTERPART EQUAL)
        (:FAKE-RUNE-FOR-TYPE-SET NIL))
Warnings:  None
Time:  0.00 seconds (prove: 0.00, print: 0.00, other: 0.00)
 TRS_EQUAL_BOOL
ACL2 !>
For the admission of TRS_IF2 we will use the relation O< (which is
known to be well-founded on the domain recognized by O-P) and the measure
(ACL2-COUNT X3).  The non-trivial part of the measure conjecture is

Goal
(AND (IMPLIES (AND (AND (TRS_ISBOOL X0)
                        (TRS_ISSORT[A0] X1)
                        (TRS_ISSORT[A0] X2)
                        (TRS_ISSORT[A2] X3))
                   (AND (EQ (CAR X0) 'TRS_TRUE)
                        (EQ (CAR X3) 'TRS_CONS)))
              (O< (ACL2-COUNT (CADDR X3))
                  (ACL2-COUNT X3)))
     (IMPLIES (AND (AND (TRS_ISBOOL X0)
                        (TRS_ISSORT[A0] X1)
                        (TRS_ISSORT[A0] X2)
                        (TRS_ISSORT[A2] X3))
                   (NOT (AND (EQ (CAR X0) 'TRS_TRUE)
                             (EQ (CAR X3) 'TRS_NIL)))
                   (AND (EQ (CAR X0) 'TRS_FALSE)
                        (EQ (CAR X3) 'TRS_CONS)))
              (O< (ACL2-COUNT (CADDR X3))
                  (ACL2-COUNT X3)))).

By the simple :definitions EQ and TRS_ISBOOL we reduce the conjecture
to the following two conjectures.

Subgoal 2
(IMPLIES (AND (CONSP X0)
              (COND ((EQUAL 'TRS_TRUE (CAR X0))
                     (EQUAL (CDR X0) NIL))
                    ((EQUAL 'TRS_FALSE (CAR X0))
                     (EQUAL (CDR X0) NIL))
                    (T NIL))
              (TRS_ISSORT[A0] X1)
              (TRS_ISSORT[A0] X2)
              (TRS_ISSORT[A2] X3)
              (EQUAL (CAR X0) 'TRS_TRUE)
              (EQUAL (CAR X3) 'TRS_CONS))
         (O< (ACL2-COUNT (CADDR X3))
             (ACL2-COUNT X3))).

This simplifies, using the :definitions ACL2-COUNT, FIX, O-FINP, O<
and TRS_ISSORT[A2], the :executable-counterparts of ACL2-COUNT and
EQUAL, primitive type reasoning, the :rewrite rule UNICITY-OF-0 and
the :type-prescription rule ACL2-COUNT, to

Subgoal 2'
(IMPLIES (AND (CONSP X0)
              (NOT (CDR X0))
              (TRS_ISSORT[A0] X1)
              (TRS_ISSORT[A0] X2)
              (CONSP X3)
              (CONSP (CDR X3))
              (CONSP (CDDR X3))
              (TRS_ISSORT[A0] (CADR X3))
              (TRS_ISSORT[A2] (CADDR X3))
              (NOT (CDDDR X3))
              (EQUAL (CAR X0) 'TRS_TRUE)
              (EQUAL (CAR X3) 'TRS_CONS))
         (< (ACL2-COUNT (CADDR X3))
            (+ 1 (ACL2-COUNT (CDR X3))))).

This simplifies, using the :definitions ACL2-COUNT and FIX, the :executable-
counterpart of ACL2-COUNT, the :rewrite rules COMMUTATIVITY-OF-+ and
UNICITY-OF-0 and the :type-prescription rule ACL2-COUNT, to

Subgoal 2''
(IMPLIES (AND (CONSP X0)
              (NOT (CDR X0))
              (TRS_ISSORT[A0] X1)
              (TRS_ISSORT[A0] X2)
              (CONSP X3)
              (CONSP (CDR X3))
              (CONSP (CDDR X3))
              (TRS_ISSORT[A0] (CADR X3))
              (TRS_ISSORT[A2] (CADDR X3))
              (NOT (CDDDR X3))
              (EQUAL (CAR X0) 'TRS_TRUE)
              (EQUAL (CAR X3) 'TRS_CONS))
         (< (ACL2-COUNT (CADDR X3))
            (+ 1 1 (ACL2-COUNT (CADR X3))
               1 (ACL2-COUNT (CADDR X3))))).

But simplification reduces this to T, using linear arithmetic, primitive
type reasoning and the :type-prescription rule ACL2-COUNT.

Subgoal 1
(IMPLIES (AND (CONSP X0)
              (COND ((EQUAL 'TRS_TRUE (CAR X0))
                     (EQUAL (CDR X0) NIL))
                    ((EQUAL 'TRS_FALSE (CAR X0))
                     (EQUAL (CDR X0) NIL))
                    (T NIL))
              (TRS_ISSORT[A0] X1)
              (TRS_ISSORT[A0] X2)
              (TRS_ISSORT[A2] X3)
              (NOT (AND (EQUAL (CAR X0) 'TRS_TRUE)
                        (EQUAL (CAR X3) 'TRS_NIL)))
              (EQUAL (CAR X0) 'TRS_FALSE)
              (EQUAL (CAR X3) 'TRS_CONS))
         (O< (ACL2-COUNT (CADDR X3))
             (ACL2-COUNT X3))).

This simplifies, using the :definitions ACL2-COUNT, FIX, O-FINP, O<
and TRS_ISSORT[A2], the :executable-counterparts of ACL2-COUNT and
EQUAL, primitive type reasoning, the :rewrite rule UNICITY-OF-0 and
the :type-prescription rule ACL2-COUNT, to

Subgoal 1'
(IMPLIES (AND (CONSP X0)
              (NOT (CDR X0))
              (TRS_ISSORT[A0] X1)
              (TRS_ISSORT[A0] X2)
              (CONSP X3)
              (CONSP (CDR X3))
              (CONSP (CDDR X3))
              (TRS_ISSORT[A0] (CADR X3))
              (TRS_ISSORT[A2] (CADDR X3))
              (NOT (CDDDR X3))
              (EQUAL (CAR X0) 'TRS_FALSE)
              (EQUAL (CAR X3) 'TRS_CONS))
         (< (ACL2-COUNT (CADDR X3))
            (+ 1 (ACL2-COUNT (CDR X3))))).

This simplifies, using the :definitions ACL2-COUNT and FIX, the :executable-
counterpart of ACL2-COUNT, the :rewrite rules COMMUTATIVITY-OF-+ and
UNICITY-OF-0 and the :type-prescription rule ACL2-COUNT, to

Subgoal 1''
(IMPLIES (AND (CONSP X0)
              (NOT (CDR X0))
              (TRS_ISSORT[A0] X1)
              (TRS_ISSORT[A0] X2)
              (CONSP X3)
              (CONSP (CDR X3))
              (CONSP (CDDR X3))
              (TRS_ISSORT[A0] (CADR X3))
              (TRS_ISSORT[A2] (CADDR X3))
              (NOT (CDDDR X3))
              (EQUAL (CAR X0) 'TRS_FALSE)
              (EQUAL (CAR X3) 'TRS_CONS))
         (< (ACL2-COUNT (CADDR X3))
            (+ 1 1 (ACL2-COUNT (CADR X3))
               1 (ACL2-COUNT (CADDR X3))))).

But simplification reduces this to T, using linear arithmetic, primitive
type reasoning and the :type-prescription rule ACL2-COUNT.

Q.E.D.

That completes the proof of the measure theorem for TRS_IF2.  Thus,
we admit this function under the principle of definition.  We observe
that the type of TRS_IF2 is described by the theorem 
(AND (CONSP (TRS_IF2 X0 X1 X2 X3)) (TRUE-LISTP (TRS_IF2 X0 X1 X2 X3))).
We used the :executable-counterpart of EQUAL and primitive type reasoning.

Summary
Form:  ( DEFUN TRS_IF2 ...)
Rules: ((:DEFINITION ACL2-COUNT)
        (:DEFINITION EQ)
        (:DEFINITION FIX)
        (:DEFINITION NOT)
        (:DEFINITION O-FINP)
        (:DEFINITION O<)
        (:DEFINITION TRS_ISBOOL)
        (:DEFINITION TRS_ISSORT[A2])
        (:EXECUTABLE-COUNTERPART ACL2-COUNT)
        (:EXECUTABLE-COUNTERPART EQUAL)
        (:FAKE-RUNE-FOR-LINEAR NIL)
        (:FAKE-RUNE-FOR-TYPE-SET NIL)
        (:REWRITE COMMUTATIVITY-OF-+)
        (:REWRITE UNICITY-OF-0)
        (:TYPE-PRESCRIPTION ACL2-COUNT))
Warnings:  None
Time:  0.02 seconds (prove: 0.02, print: 0.00, other: 0.00)
 TRS_IF2
ACL2 !>
For the admission of TRS_IF1 we will use the relation O< (which is
known to be well-founded on the domain recognized by O-P) and the measure
(ACL2-COUNT X3).  The non-trivial part of the measure conjecture is

Goal
(AND (IMPLIES (AND (AND (TRS_ISBOOL X0)
                        (TRS_ISSORT[A0] X1)
                        (TRS_ISSORT[A0] X2)
                        (TRS_ISSORT[A2] X3))
                   (AND (EQ (CAR X0) 'TRS_TRUE)
                        (EQ (CAR X3) 'TRS_CONS)))
              (O< (ACL2-COUNT (CADDR X3))
                  (ACL2-COUNT X3)))
     (IMPLIES (AND (AND (TRS_ISBOOL X0)
                        (TRS_ISSORT[A0] X1)
                        (TRS_ISSORT[A0] X2)
                        (TRS_ISSORT[A2] X3))
                   (NOT (AND (EQ (CAR X0) 'TRS_TRUE)
                             (EQ (CAR X3) 'TRS_NIL)))
                   (AND (EQ (CAR X0) 'TRS_FALSE)
                        (EQ (CAR X3) 'TRS_CONS)))
              (O< (ACL2-COUNT (CADDR X3))
                  (ACL2-COUNT X3)))).

By the simple :definitions EQ and TRS_ISBOOL we reduce the conjecture
to the following two conjectures.

Subgoal 2
(IMPLIES (AND (CONSP X0)
              (COND ((EQUAL 'TRS_TRUE (CAR X0))
                     (EQUAL (CDR X0) NIL))
                    ((EQUAL 'TRS_FALSE (CAR X0))
                     (EQUAL (CDR X0) NIL))
                    (T NIL))
              (TRS_ISSORT[A0] X1)
              (TRS_ISSORT[A0] X2)
              (TRS_ISSORT[A2] X3)
              (EQUAL (CAR X0) 'TRS_TRUE)
              (EQUAL (CAR X3) 'TRS_CONS))
         (O< (ACL2-COUNT (CADDR X3))
             (ACL2-COUNT X3))).

This simplifies, using the :definitions ACL2-COUNT, FIX, O-FINP, O<
and TRS_ISSORT[A2], the :executable-counterparts of ACL2-COUNT and
EQUAL, primitive type reasoning, the :rewrite rule UNICITY-OF-0 and
the :type-prescription rule ACL2-COUNT, to

Subgoal 2'
(IMPLIES (AND (CONSP X0)
              (NOT (CDR X0))
              (TRS_ISSORT[A0] X1)
              (TRS_ISSORT[A0] X2)
              (CONSP X3)
              (CONSP (CDR X3))
              (CONSP (CDDR X3))
              (TRS_ISSORT[A0] (CADR X3))
              (TRS_ISSORT[A2] (CADDR X3))
              (NOT (CDDDR X3))
              (EQUAL (CAR X0) 'TRS_TRUE)
              (EQUAL (CAR X3) 'TRS_CONS))
         (< (ACL2-COUNT (CADDR X3))
            (+ 1 (ACL2-COUNT (CDR X3))))).

This simplifies, using the :definitions ACL2-COUNT and FIX, the :executable-
counterpart of ACL2-COUNT, the :rewrite rules COMMUTATIVITY-OF-+ and
UNICITY-OF-0 and the :type-prescription rule ACL2-COUNT, to

Subgoal 2''
(IMPLIES (AND (CONSP X0)
              (NOT (CDR X0))
              (TRS_ISSORT[A0] X1)
              (TRS_ISSORT[A0] X2)
              (CONSP X3)
              (CONSP (CDR X3))
              (CONSP (CDDR X3))
              (TRS_ISSORT[A0] (CADR X3))
              (TRS_ISSORT[A2] (CADDR X3))
              (NOT (CDDDR X3))
              (EQUAL (CAR X0) 'TRS_TRUE)
              (EQUAL (CAR X3) 'TRS_CONS))
         (< (ACL2-COUNT (CADDR X3))
            (+ 1 1 (ACL2-COUNT (CADR X3))
               1 (ACL2-COUNT (CADDR X3))))).

But simplification reduces this to T, using linear arithmetic, primitive
type reasoning and the :type-prescription rule ACL2-COUNT.

Subgoal 1
(IMPLIES (AND (CONSP X0)
              (COND ((EQUAL 'TRS_TRUE (CAR X0))
                     (EQUAL (CDR X0) NIL))
                    ((EQUAL 'TRS_FALSE (CAR X0))
                     (EQUAL (CDR X0) NIL))
                    (T NIL))
              (TRS_ISSORT[A0] X1)
              (TRS_ISSORT[A0] X2)
              (TRS_ISSORT[A2] X3)
              (NOT (AND (EQUAL (CAR X0) 'TRS_TRUE)
                        (EQUAL (CAR X3) 'TRS_NIL)))
              (EQUAL (CAR X0) 'TRS_FALSE)
              (EQUAL (CAR X3) 'TRS_CONS))
         (O< (ACL2-COUNT (CADDR X3))
             (ACL2-COUNT X3))).

This simplifies, using the :definitions ACL2-COUNT, FIX, O-FINP, O<
and TRS_ISSORT[A2], the :executable-counterparts of ACL2-COUNT and
EQUAL, primitive type reasoning, the :rewrite rule UNICITY-OF-0 and
the :type-prescription rule ACL2-COUNT, to

Subgoal 1'
(IMPLIES (AND (CONSP X0)
              (NOT (CDR X0))
              (TRS_ISSORT[A0] X1)
              (TRS_ISSORT[A0] X2)
              (CONSP X3)
              (CONSP (CDR X3))
              (CONSP (CDDR X3))
              (TRS_ISSORT[A0] (CADR X3))
              (TRS_ISSORT[A2] (CADDR X3))
              (NOT (CDDDR X3))
              (EQUAL (CAR X0) 'TRS_FALSE)
              (EQUAL (CAR X3) 'TRS_CONS))
         (< (ACL2-COUNT (CADDR X3))
            (+ 1 (ACL2-COUNT (CDR X3))))).

This simplifies, using the :definitions ACL2-COUNT and FIX, the :executable-
counterpart of ACL2-COUNT, the :rewrite rules COMMUTATIVITY-OF-+ and
UNICITY-OF-0 and the :type-prescription rule ACL2-COUNT, to

Subgoal 1''
(IMPLIES (AND (CONSP X0)
              (NOT (CDR X0))
              (TRS_ISSORT[A0] X1)
              (TRS_ISSORT[A0] X2)
              (CONSP X3)
              (CONSP (CDR X3))
              (CONSP (CDDR X3))
              (TRS_ISSORT[A0] (CADR X3))
              (TRS_ISSORT[A2] (CADDR X3))
              (NOT (CDDDR X3))
              (EQUAL (CAR X0) 'TRS_FALSE)
              (EQUAL (CAR X3) 'TRS_CONS))
         (< (ACL2-COUNT (CADDR X3))
            (+ 1 1 (ACL2-COUNT (CADR X3))
               1 (ACL2-COUNT (CADDR X3))))).

But simplification reduces this to T, using linear arithmetic, primitive
type reasoning and the :type-prescription rule ACL2-COUNT.

Q.E.D.

That completes the proof of the measure theorem for TRS_IF1.  Thus,
we admit this function under the principle of definition.  We observe
that the type of TRS_IF1 is described by the theorem 
(AND (CONSP (TRS_IF1 X0 X1 X2 X3)) (TRUE-LISTP (TRS_IF1 X0 X1 X2 X3))).
We used the :executable-counterpart of EQUAL and primitive type reasoning.

Summary
Form:  ( DEFUN TRS_IF1 ...)
Rules: ((:DEFINITION ACL2-COUNT)
        (:DEFINITION EQ)
        (:DEFINITION FIX)
        (:DEFINITION NOT)
        (:DEFINITION O-FINP)
        (:DEFINITION O<)
        (:DEFINITION TRS_ISBOOL)
        (:DEFINITION TRS_ISSORT[A2])
        (:EXECUTABLE-COUNTERPART ACL2-COUNT)
        (:EXECUTABLE-COUNTERPART EQUAL)
        (:FAKE-RUNE-FOR-LINEAR NIL)
        (:FAKE-RUNE-FOR-TYPE-SET NIL)
        (:REWRITE COMMUTATIVITY-OF-+)
        (:REWRITE UNICITY-OF-0)
        (:TYPE-PRESCRIPTION ACL2-COUNT))
Warnings:  None
Time:  0.03 seconds (prove: 0.01, print: 0.01, other: 0.01)
 TRS_IF1
ACL2 !>
For the admission of TRS_IF2PRIME we will use the relation O< (which
is known to be well-founded on the domain recognized by O-P) and the
measure (ACL2-COUNT X3).  The non-trivial part of the measure conjecture
is

Goal
(IMPLIES (AND (AND (TRS_ISBOOL X0)
                   (TRS_ISSORT[A0] X1)
                   (TRS_ISSORT[A0] X2)
                   (TRS_ISSORT[A2] X3))
              (NOT (EQ (CAR X0) 'TRS_TRUE))
              (AND (EQ (CAR X0) 'TRS_FALSE)
                   (EQ (CAR X3) 'TRS_CONS)))
         (O< (ACL2-COUNT (CADDR X3))
             (ACL2-COUNT X3))).

By the simple :definitions EQ and TRS_ISBOOL we reduce the conjecture
to

Goal'
(IMPLIES (AND (CONSP X0)
              (COND ((EQUAL 'TRS_TRUE (CAR X0))
                     (EQUAL (CDR X0) NIL))
                    ((EQUAL 'TRS_FALSE (CAR X0))
                     (EQUAL (CDR X0) NIL))
                    (T NIL))
              (TRS_ISSORT[A0] X1)
              (TRS_ISSORT[A0] X2)
              (TRS_ISSORT[A2] X3)
              (NOT (EQUAL (CAR X0) 'TRS_TRUE))
              (EQUAL (CAR X0) 'TRS_FALSE)
              (EQUAL (CAR X3) 'TRS_CONS))
         (O< (ACL2-COUNT (CADDR X3))
             (ACL2-COUNT X3))).

This simplifies, using the :definitions ACL2-COUNT, FIX, O-FINP, O<
and TRS_ISSORT[A2], the :executable-counterparts of ACL2-COUNT and
EQUAL, primitive type reasoning, the :rewrite rule UNICITY-OF-0 and
the :type-prescription rule ACL2-COUNT, to

Goal''
(IMPLIES (AND (CONSP X0)
              (NOT (CDR X0))
              (TRS_ISSORT[A0] X1)
              (TRS_ISSORT[A0] X2)
              (CONSP X3)
              (CONSP (CDR X3))
              (CONSP (CDDR X3))
              (TRS_ISSORT[A0] (CADR X3))
              (TRS_ISSORT[A2] (CADDR X3))
              (NOT (CDDDR X3))
              (EQUAL (CAR X0) 'TRS_FALSE)
              (EQUAL (CAR X3) 'TRS_CONS))
         (< (ACL2-COUNT (CADDR X3))
            (+ 1 (ACL2-COUNT (CDR X3))))).

This simplifies, using the :definitions ACL2-COUNT and FIX, the :executable-
counterpart of ACL2-COUNT, the :rewrite rules COMMUTATIVITY-OF-+ and
UNICITY-OF-0 and the :type-prescription rule ACL2-COUNT, to

Goal'''
(IMPLIES (AND (CONSP X0)
              (NOT (CDR X0))
              (TRS_ISSORT[A0] X1)
              (TRS_ISSORT[A0] X2)
              (CONSP X3)
              (CONSP (CDR X3))
              (CONSP (CDDR X3))
              (TRS_ISSORT[A0] (CADR X3))
              (TRS_ISSORT[A2] (CADDR X3))
              (NOT (CDDDR X3))
              (EQUAL (CAR X0) 'TRS_FALSE)
              (EQUAL (CAR X3) 'TRS_CONS))
         (< (ACL2-COUNT (CADDR X3))
            (+ 1 1 (ACL2-COUNT (CADR X3))
               1 (ACL2-COUNT (CADDR X3))))).

But simplification reduces this to T, using linear arithmetic, primitive
type reasoning and the :type-prescription rule ACL2-COUNT.

Q.E.D.

That completes the proof of the measure theorem for TRS_IF2PRIME. 
Thus, we admit this function under the principle of definition.  We
observe that the type of TRS_IF2PRIME is described by the theorem 
(AND (CONSP (TRS_IF2PRIME X0 X1 X2 X3))
     (TRUE-LISTP (TRS_IF2PRIME X0 X1 X2 X3))).

Summary
Form:  ( DEFUN TRS_IF2PRIME ...)
Rules: ((:DEFINITION ACL2-COUNT)
        (:DEFINITION EQ)
        (:DEFINITION FIX)
        (:DEFINITION NOT)
        (:DEFINITION O-FINP)
        (:DEFINITION O<)
        (:DEFINITION TRS_ISBOOL)
        (:DEFINITION TRS_ISSORT[A2])
        (:EXECUTABLE-COUNTERPART ACL2-COUNT)
        (:EXECUTABLE-COUNTERPART EQUAL)
        (:FAKE-RUNE-FOR-LINEAR NIL)
        (:FAKE-RUNE-FOR-TYPE-SET NIL)
        (:REWRITE COMMUTATIVITY-OF-+)
        (:REWRITE UNICITY-OF-0)
        (:TYPE-PRESCRIPTION ACL2-COUNT))
Warnings:  None
Time:  0.01 seconds (prove: 0.00, print: 0.01, other: 0.00)
 TRS_IF2PRIME
ACL2 !>
For the admission of TRS_FILTERHIGH we will use the relation O< (which
is known to be well-founded on the domain recognized by O-P) and the
measure (ACL2-COUNT X1).  The non-trivial part of the measure conjecture
is

Goal
(AND (IMPLIES (AND (AND (TRS_ISSORT[A0] X0)
                        (TRS_ISSORT[A2] X1))
                   (NOT (EQ (CAR X1) 'TRS_NIL))
                   (EQ (TRS_EQUAL_BOOL (TRS_GE (CADR X1) X0)
                                       '(TRS_TRUE))
                       '(TRS_FALSE)))
              (O< (ACL2-COUNT (CADDR X1))
                  (ACL2-COUNT X1)))
     (IMPLIES (AND (AND (TRS_ISSORT[A0] X0)
                        (TRS_ISSORT[A2] X1))
                   (NOT (EQ (CAR X1) 'TRS_NIL))
                   (AND (EQ (CAR X1) 'TRS_CONS)
                        (EQ (TRS_EQUAL_BOOL (TRS_GE (CADR X1) X0)
                                            '(TRS_TRUE))
                            '(TRS_TRUE))))
              (O< (ACL2-COUNT (CADDR X1))
                  (ACL2-COUNT X1)))).

By the simple :definition EQ we reduce the conjecture to the following
two conjectures.

Subgoal 2
(IMPLIES (AND (TRS_ISSORT[A0] X0)
              (TRS_ISSORT[A2] X1)
              (NOT (EQUAL (CAR X1) 'TRS_NIL))
              (EQUAL (TRS_EQUAL_BOOL (TRS_GE (CADR X1) X0)
                                     '(TRS_TRUE))
                     '(TRS_FALSE)))
         (O< (ACL2-COUNT (CADDR X1))
             (ACL2-COUNT X1))).

This simplifies, using the :definitions ACL2-COUNT, FIX, O-FINP, O<,
TRS_EQUAL_BOOL, TRS_ISBOOL and TRS_ISSORT[A2], the :executable-counterparts
of ACL2-COUNT, CAR, EQUAL and TRS_ISBOOL, primitive type reasoning,
the :rewrite rules COMMUTATIVITY-OF-+ and UNICITY-OF-0 and the :type-
prescription rules ACL2-COUNT and TRS_GE, to

Subgoal 2'
(IMPLIES (AND (TRS_ISSORT[A0] X0)
              (CONSP X1)
              (CONSP (CDR X1))
              (CONSP (CDDR X1))
              (EQUAL 'TRS_CONS (CAR X1))
              (TRS_ISSORT[A0] (CADR X1))
              (TRS_ISSORT[A2] (CADDR X1))
              (NOT (CDDDR X1))
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE (CADR X1) X0)))
              (NOT (CDR (TRS_GE (CADR X1) X0))))
         (< (ACL2-COUNT (CADDR X1))
            (+ 1 1 (ACL2-COUNT (CADR X1))
               1 (ACL2-COUNT (CADDR X1))))).

But simplification reduces this to T, using linear arithmetic, primitive
type reasoning and the :type-prescription rule ACL2-COUNT.

Subgoal 1
(IMPLIES (AND (TRS_ISSORT[A0] X0)
              (TRS_ISSORT[A2] X1)
              (NOT (EQUAL (CAR X1) 'TRS_NIL))
              (EQUAL (CAR X1) 'TRS_CONS)
              (EQUAL (TRS_EQUAL_BOOL (TRS_GE (CADR X1) X0)
                                     '(TRS_TRUE))
                     '(TRS_TRUE)))
         (O< (ACL2-COUNT (CADDR X1))
             (ACL2-COUNT X1))).

This simplifies, using the :definitions ACL2-COUNT, FIX, O-FINP, O<,
TRS_EQUAL_BOOL, TRS_ISBOOL and TRS_ISSORT[A2], the :executable-counterparts
of ACL2-COUNT, CAR, EQUAL and TRS_ISBOOL, primitive type reasoning,
the :rewrite rules COMMUTATIVITY-OF-+ and UNICITY-OF-0 and the :type-
prescription rules ACL2-COUNT and TRS_GE, to the following three conjectures.

Subgoal 1.3
(IMPLIES (AND (TRS_ISSORT[A0] X0)
              (CONSP X1)
              (CONSP (CDR X1))
              (CONSP (CDDR X1))
              (TRS_ISSORT[A0] (CADR X1))
              (TRS_ISSORT[A2] (CADDR X1))
              (NOT (CDDDR X1))
              (EQUAL (CAR X1) 'TRS_CONS)
              (EQUAL 'TRS_TRUE
                     (CAR (TRS_GE (CADR X1) X0))))
         (< (ACL2-COUNT (CADDR X1))
            (+ 1 1 (ACL2-COUNT (CADR X1))
               1 (ACL2-COUNT (CADDR X1))))).

But simplification reduces this to T, using linear arithmetic, primitive
type reasoning and the :type-prescription rule ACL2-COUNT.

Subgoal 1.2
(IMPLIES (AND (TRS_ISSORT[A0] X0)
              (CONSP X1)
              (CONSP (CDR X1))
              (CONSP (CDDR X1))
              (TRS_ISSORT[A0] (CADR X1))
              (TRS_ISSORT[A2] (CADDR X1))
              (NOT (CDDDR X1))
              (EQUAL (CAR X1) 'TRS_CONS)
              (CDR (TRS_GE (CADR X1) X0)))
         (< (ACL2-COUNT (CADDR X1))
            (+ 1 1 (ACL2-COUNT (CADR X1))
               1 (ACL2-COUNT (CADDR X1))))).

But simplification reduces this to T, using linear arithmetic, primitive
type reasoning and the :type-prescription rule ACL2-COUNT.

Subgoal 1.1
(IMPLIES (AND (TRS_ISSORT[A0] X0)
              (CONSP X1)
              (CONSP (CDR X1))
              (CONSP (CDDR X1))
              (TRS_ISSORT[A0] (CADR X1))
              (TRS_ISSORT[A2] (CADDR X1))
              (NOT (CDDDR X1))
              (EQUAL (CAR X1) 'TRS_CONS)
              (NOT (EQUAL 'TRS_FALSE
                          (CAR (TRS_GE (CADR X1) X0)))))
         (< (ACL2-COUNT (CADDR X1))
            (+ 1 1 (ACL2-COUNT (CADR X1))
               1 (ACL2-COUNT (CADDR X1))))).

But simplification reduces this to T, using linear arithmetic, primitive
type reasoning and the :type-prescription rule ACL2-COUNT.

Q.E.D.

That completes the proof of the measure theorem for TRS_FILTERHIGH.
Thus, we admit this function under the principle of definition.  We
observe that the type of TRS_FILTERHIGH is described by the theorem
(AND (CONSP (TRS_FILTERHIGH X0 X1)) (TRUE-LISTP (TRS_FILTERHIGH X0 X1))).
We used primitive type reasoning.

Summary
Form:  ( DEFUN TRS_FILTERHIGH ...)
Rules: ((:DEFINITION ACL2-COUNT)
        (:DEFINITION EQ)
        (:DEFINITION FIX)
        (:DEFINITION NOT)
        (:DEFINITION O-FINP)
        (:DEFINITION O<)
        (:DEFINITION TRS_EQUAL_BOOL)
        (:DEFINITION TRS_ISBOOL)
        (:DEFINITION TRS_ISSORT[A2])
        (:EXECUTABLE-COUNTERPART ACL2-COUNT)
        (:EXECUTABLE-COUNTERPART CAR)
        (:EXECUTABLE-COUNTERPART EQUAL)
        (:EXECUTABLE-COUNTERPART TRS_ISBOOL)
        (:FAKE-RUNE-FOR-LINEAR NIL)
        (:FAKE-RUNE-FOR-TYPE-SET NIL)
        (:REWRITE COMMUTATIVITY-OF-+)
        (:REWRITE UNICITY-OF-0)
        (:TYPE-PRESCRIPTION ACL2-COUNT)
        (:TYPE-PRESCRIPTION TRS_GE))
Warnings:  None
Time:  0.02 seconds (prove: 0.02, print: 0.00, other: 0.00)
 TRS_FILTERHIGH
ACL2 !>
For the admission of TRS_FILTERLOW we will use the relation O< (which
is known to be well-founded on the domain recognized by O-P) and the
measure (ACL2-COUNT X1).  The non-trivial part of the measure conjecture
is

Goal
(AND (IMPLIES (AND (AND (TRS_ISSORT[A0] X0)
                        (TRS_ISSORT[A2] X1))
                   (NOT (EQ (CAR X1) 'TRS_NIL))
                   (EQ (TRS_EQUAL_BOOL (TRS_GE X0 (CADR X1))
                                       '(TRS_TRUE))
                       '(TRS_FALSE)))
              (O< (ACL2-COUNT (CADDR X1))
                  (ACL2-COUNT X1)))
     (IMPLIES (AND (AND (TRS_ISSORT[A0] X0)
                        (TRS_ISSORT[A2] X1))
                   (NOT (EQ (CAR X1) 'TRS_NIL))
                   (AND (EQ (CAR X1) 'TRS_CONS)
                        (EQ (TRS_EQUAL_BOOL (TRS_GE X0 (CADR X1))
                                            '(TRS_TRUE))
                            '(TRS_TRUE))))
              (O< (ACL2-COUNT (CADDR X1))
                  (ACL2-COUNT X1)))).

By the simple :definition EQ we reduce the conjecture to the following
two conjectures.

Subgoal 2
(IMPLIES (AND (TRS_ISSORT[A0] X0)
              (TRS_ISSORT[A2] X1)
              (NOT (EQUAL (CAR X1) 'TRS_NIL))
              (EQUAL (TRS_EQUAL_BOOL (TRS_GE X0 (CADR X1))
                                     '(TRS_TRUE))
                     '(TRS_FALSE)))
         (O< (ACL2-COUNT (CADDR X1))
             (ACL2-COUNT X1))).

This simplifies, using the :definitions ACL2-COUNT, FIX, O-FINP, O<,
TRS_EQUAL_BOOL, TRS_ISBOOL and TRS_ISSORT[A2], the :executable-counterparts
of ACL2-COUNT, CAR, EQUAL and TRS_ISBOOL, primitive type reasoning,
the :rewrite rules COMMUTATIVITY-OF-+ and UNICITY-OF-0 and the :type-
prescription rules ACL2-COUNT and TRS_GE, to

Subgoal 2'
(IMPLIES (AND (TRS_ISSORT[A0] X0)
              (CONSP X1)
              (CONSP (CDR X1))
              (CONSP (CDDR X1))
              (EQUAL 'TRS_CONS (CAR X1))
              (TRS_ISSORT[A0] (CADR X1))
              (TRS_ISSORT[A2] (CADDR X1))
              (NOT (CDDDR X1))
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE X0 (CADR X1))))
              (NOT (CDR (TRS_GE X0 (CADR X1)))))
         (< (ACL2-COUNT (CADDR X1))
            (+ 1 1 (ACL2-COUNT (CADR X1))
               1 (ACL2-COUNT (CADDR X1))))).

But simplification reduces this to T, using linear arithmetic, primitive
type reasoning and the :type-prescription rule ACL2-COUNT.

Subgoal 1
(IMPLIES (AND (TRS_ISSORT[A0] X0)
              (TRS_ISSORT[A2] X1)
              (NOT (EQUAL (CAR X1) 'TRS_NIL))
              (EQUAL (CAR X1) 'TRS_CONS)
              (EQUAL (TRS_EQUAL_BOOL (TRS_GE X0 (CADR X1))
                                     '(TRS_TRUE))
                     '(TRS_TRUE)))
         (O< (ACL2-COUNT (CADDR X1))
             (ACL2-COUNT X1))).

This simplifies, using the :definitions ACL2-COUNT, FIX, O-FINP, O<,
TRS_EQUAL_BOOL, TRS_ISBOOL and TRS_ISSORT[A2], the :executable-counterparts
of ACL2-COUNT, CAR, EQUAL and TRS_ISBOOL, primitive type reasoning,
the :rewrite rules COMMUTATIVITY-OF-+ and UNICITY-OF-0 and the :type-
prescription rules ACL2-COUNT and TRS_GE, to the following three conjectures.

Subgoal 1.3
(IMPLIES (AND (TRS_ISSORT[A0] X0)
              (CONSP X1)
              (CONSP (CDR X1))
              (CONSP (CDDR X1))
              (TRS_ISSORT[A0] (CADR X1))
              (TRS_ISSORT[A2] (CADDR X1))
              (NOT (CDDDR X1))
              (EQUAL (CAR X1) 'TRS_CONS)
              (EQUAL 'TRS_TRUE
                     (CAR (TRS_GE X0 (CADR X1)))))
         (< (ACL2-COUNT (CADDR X1))
            (+ 1 1 (ACL2-COUNT (CADR X1))
               1 (ACL2-COUNT (CADDR X1))))).

But simplification reduces this to T, using linear arithmetic, primitive
type reasoning and the :type-prescription rule ACL2-COUNT.

Subgoal 1.2
(IMPLIES (AND (TRS_ISSORT[A0] X0)
              (CONSP X1)
              (CONSP (CDR X1))
              (CONSP (CDDR X1))
              (TRS_ISSORT[A0] (CADR X1))
              (TRS_ISSORT[A2] (CADDR X1))
              (NOT (CDDDR X1))
              (EQUAL (CAR X1) 'TRS_CONS)
              (CDR (TRS_GE X0 (CADR X1))))
         (< (ACL2-COUNT (CADDR X1))
            (+ 1 1 (ACL2-COUNT (CADR X1))
               1 (ACL2-COUNT (CADDR X1))))).

But simplification reduces this to T, using linear arithmetic, primitive
type reasoning and the :type-prescription rule ACL2-COUNT.

Subgoal 1.1
(IMPLIES (AND (TRS_ISSORT[A0] X0)
              (CONSP X1)
              (CONSP (CDR X1))
              (CONSP (CDDR X1))
              (TRS_ISSORT[A0] (CADR X1))
              (TRS_ISSORT[A2] (CADDR X1))
              (NOT (CDDDR X1))
              (EQUAL (CAR X1) 'TRS_CONS)
              (NOT (EQUAL 'TRS_FALSE
                          (CAR (TRS_GE X0 (CADR X1))))))
         (< (ACL2-COUNT (CADDR X1))
            (+ 1 1 (ACL2-COUNT (CADR X1))
               1 (ACL2-COUNT (CADDR X1))))).

But simplification reduces this to T, using linear arithmetic, primitive
type reasoning and the :type-prescription rule ACL2-COUNT.

Q.E.D.

That completes the proof of the measure theorem for TRS_FILTERLOW.
Thus, we admit this function under the principle of definition.  We
observe that the type of TRS_FILTERLOW is described by the theorem
(AND (CONSP (TRS_FILTERLOW X0 X1)) (TRUE-LISTP (TRS_FILTERLOW X0 X1))).
We used primitive type reasoning.

Summary
Form:  ( DEFUN TRS_FILTERLOW ...)
Rules: ((:DEFINITION ACL2-COUNT)
        (:DEFINITION EQ)
        (:DEFINITION FIX)
        (:DEFINITION NOT)
        (:DEFINITION O-FINP)
        (:DEFINITION O<)
        (:DEFINITION TRS_EQUAL_BOOL)
        (:DEFINITION TRS_ISBOOL)
        (:DEFINITION TRS_ISSORT[A2])
        (:EXECUTABLE-COUNTERPART ACL2-COUNT)
        (:EXECUTABLE-COUNTERPART CAR)
        (:EXECUTABLE-COUNTERPART EQUAL)
        (:EXECUTABLE-COUNTERPART TRS_ISBOOL)
        (:FAKE-RUNE-FOR-LINEAR NIL)
        (:FAKE-RUNE-FOR-TYPE-SET NIL)
        (:REWRITE COMMUTATIVITY-OF-+)
        (:REWRITE UNICITY-OF-0)
        (:TYPE-PRESCRIPTION ACL2-COUNT)
        (:TYPE-PRESCRIPTION TRS_GE))
Warnings:  None
Time:  0.02 seconds (prove: 0.01, print: 0.01, other: 0.00)
 TRS_FILTERLOW
ACL2 !>
For the admission of TRS_FILTERHIGHPRIME we will use the relation O<
(which is known to be well-founded on the domain recognized by O-P)
and the measure (ACL2-COUNT X1).  The non-trivial part of the measure
conjecture is

Goal
(IMPLIES (AND (AND (TRS_ISSORT[A0] X0)
                   (TRS_ISSORT[A2] X1))
              (NOT (EQ (CAR X1) 'TRS_NIL))
              (NOT (AND (EQ (CAR X1) 'TRS_CONS)
                        (EQ (TRS_EQUAL_BOOL (TRS_GE (CADR X1) X0)
                                            '(TRS_TRUE))
                            '(TRS_TRUE))))
              (EQ (TRS_EQUAL_BOOL (TRS_GE (CADR X1) X0)
                                  '(TRS_TRUE))
                  '(TRS_FALSE)))
         (O< (ACL2-COUNT (CADDR X1))
             (ACL2-COUNT X1))).

By the simple :definition EQ we reduce the conjecture to

Goal'
(IMPLIES (AND (TRS_ISSORT[A0] X0)
              (TRS_ISSORT[A2] X1)
              (NOT (EQUAL (CAR X1) 'TRS_NIL))
              (NOT (AND (EQUAL (CAR X1) 'TRS_CONS)
                        (EQUAL (TRS_EQUAL_BOOL (TRS_GE (CADR X1) X0)
                                               '(TRS_TRUE))
                               '(TRS_TRUE))))
              (EQUAL (TRS_EQUAL_BOOL (TRS_GE (CADR X1) X0)
                                     '(TRS_TRUE))
                     '(TRS_FALSE)))
         (O< (ACL2-COUNT (CADDR X1))
             (ACL2-COUNT X1))).

This simplifies, using the :definitions ACL2-COUNT, FIX, O-FINP, O<,
TRS_EQUAL_BOOL, TRS_ISBOOL and TRS_ISSORT[A2], the :executable-counterparts
of ACL2-COUNT, CAR, EQUAL and TRS_ISBOOL, primitive type reasoning,
the :rewrite rules COMMUTATIVITY-OF-+ and UNICITY-OF-0 and the :type-
prescription rules ACL2-COUNT and TRS_GE, to

Goal''
(IMPLIES (AND (TRS_ISSORT[A0] X0)
              (CONSP X1)
              (CONSP (CDR X1))
              (CONSP (CDDR X1))
              (EQUAL 'TRS_CONS (CAR X1))
              (TRS_ISSORT[A0] (CADR X1))
              (TRS_ISSORT[A2] (CADDR X1))
              (NOT (CDDDR X1))
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE (CADR X1) X0)))
              (NOT (CDR (TRS_GE (CADR X1) X0))))
         (< (ACL2-COUNT (CADDR X1))
            (+ 1 1 (ACL2-COUNT (CADR X1))
               1 (ACL2-COUNT (CADDR X1))))).

But simplification reduces this to T, using linear arithmetic, primitive
type reasoning and the :type-prescription rule ACL2-COUNT.

Q.E.D.

That completes the proof of the measure theorem for TRS_FILTERHIGHPRIME.
Thus, we admit this function under the principle of definition.  We
observe that the type of TRS_FILTERHIGHPRIME is described by the theorem
(AND (CONSP (TRS_FILTERHIGHPRIME X0 X1))
     (TRUE-LISTP (TRS_FILTERHIGHPRIME X0 X1))).

Summary
Form:  ( DEFUN TRS_FILTERHIGHPRIME ...)
Rules: ((:DEFINITION ACL2-COUNT)
        (:DEFINITION EQ)
        (:DEFINITION FIX)
        (:DEFINITION NOT)
        (:DEFINITION O-FINP)
        (:DEFINITION O<)
        (:DEFINITION TRS_EQUAL_BOOL)
        (:DEFINITION TRS_ISBOOL)
        (:DEFINITION TRS_ISSORT[A2])
        (:EXECUTABLE-COUNTERPART ACL2-COUNT)
        (:EXECUTABLE-COUNTERPART CAR)
        (:EXECUTABLE-COUNTERPART EQUAL)
        (:EXECUTABLE-COUNTERPART TRS_ISBOOL)
        (:FAKE-RUNE-FOR-LINEAR NIL)
        (:FAKE-RUNE-FOR-TYPE-SET NIL)
        (:REWRITE COMMUTATIVITY-OF-+)
        (:REWRITE UNICITY-OF-0)
        (:TYPE-PRESCRIPTION ACL2-COUNT)
        (:TYPE-PRESCRIPTION TRS_GE))
Warnings:  None
Time:  0.01 seconds (prove: 0.01, print: 0.00, other: 0.00)
 TRS_FILTERHIGHPRIME
ACL2 !>
For the admission of TRS_EQUAL_SORT[A2] we will use the relation O<
(which is known to be well-founded on the domain recognized by O-P)
and the measure (ACL2-COUNT X0).  The non-trivial part of the measure
conjecture is

Goal
(AND (IMPLIES (AND (AND (TRS_ISSORT[A2] X0)
                        (TRS_ISSORT[A2] X1))
                   (AND (EQ (CAR X0) 'TRS_CONS)
                        (EQ (CAR X1) 'TRS_CONS)))
              (O< (ACL2-COUNT (CADDR X0))
                  (ACL2-COUNT X0)))
     (IMPLIES (AND (AND (TRS_ISSORT[A2] X0)
                        (TRS_ISSORT[A2] X1))
                   (AND (EQ (CAR X0) 'TRS_CONS)
                        (EQ (CAR X1) 'TRS_CONS)))
              (O< (ACL2-COUNT (CADR X0))
                  (ACL2-COUNT X0)))).

By the simple :definition EQ we reduce the conjecture to the following
two conjectures.

Subgoal 2
(IMPLIES (AND (TRS_ISSORT[A2] X0)
              (TRS_ISSORT[A2] X1)
              (EQUAL (CAR X0) 'TRS_CONS)
              (EQUAL (CAR X1) 'TRS_CONS))
         (O< (ACL2-COUNT (CADDR X0))
             (ACL2-COUNT X0))).

This simplifies, using the :definitions ACL2-COUNT, FIX, O-FINP, O<
and TRS_ISSORT[A2], the :executable-counterparts of ACL2-COUNT and
EQUAL, primitive type reasoning, the :rewrite rule UNICITY-OF-0 and
the :type-prescription rule ACL2-COUNT, to

Subgoal 2'
(IMPLIES (AND (CONSP X0)
              (CONSP (CDR X0))
              (CONSP (CDDR X0))
              (TRS_ISSORT[A0] (CADR X0))
              (TRS_ISSORT[A2] (CADDR X0))
              (NOT (CDDDR X0))
              (TRS_ISSORT[A2] X1)
              (EQUAL (CAR X0) 'TRS_CONS)
              (EQUAL (CAR X1) 'TRS_CONS))
         (< (ACL2-COUNT (CADDR X0))
            (+ 1 (ACL2-COUNT (CDR X0))))).

This simplifies, using the :definitions ACL2-COUNT and FIX, the :executable-
counterpart of ACL2-COUNT, the :rewrite rules COMMUTATIVITY-OF-+ and
UNICITY-OF-0 and the :type-prescription rule ACL2-COUNT, to

Subgoal 2''
(IMPLIES (AND (CONSP X0)
              (CONSP (CDR X0))
              (CONSP (CDDR X0))
              (TRS_ISSORT[A0] (CADR X0))
              (TRS_ISSORT[A2] (CADDR X0))
              (NOT (CDDDR X0))
              (TRS_ISSORT[A2] X1)
              (EQUAL (CAR X0) 'TRS_CONS)
              (EQUAL (CAR X1) 'TRS_CONS))
         (< (ACL2-COUNT (CADDR X0))
            (+ 1 1 (ACL2-COUNT (CADR X0))
               1 (ACL2-COUNT (CADDR X0))))).

But simplification reduces this to T, using linear arithmetic, primitive
type reasoning and the :type-prescription rule ACL2-COUNT.

Subgoal 1
(IMPLIES (AND (TRS_ISSORT[A2] X0)
              (TRS_ISSORT[A2] X1)
              (EQUAL (CAR X0) 'TRS_CONS)
              (EQUAL (CAR X1) 'TRS_CONS))
         (O< (ACL2-COUNT (CADR X0))
             (ACL2-COUNT X0))).

This simplifies, using the :definitions O-FINP and O< and the :type-
prescription rule ACL2-COUNT, to

Subgoal 1'
(IMPLIES (AND (TRS_ISSORT[A2] X0)
              (TRS_ISSORT[A2] X1)
              (EQUAL (CAR X0) 'TRS_CONS)
              (EQUAL (CAR X1) 'TRS_CONS))
         (< (ACL2-COUNT (CADR X0))
            (ACL2-COUNT X0))).

The destructor terms (CAR X0) and (CDR X0) can be eliminated.  Furthermore,
those terms are at the root of a chain of two rounds of destructor
elimination. (1) Use CAR-CDR-ELIM to replace X0 by (CONS X2 X3), (CAR X0)
by X2 and (CDR X0) by X3 and restrict the type of the new variable
X2 to be that of the term it replaces.  (2) Use CAR-CDR-ELIM, again,
to replace X3 by (CONS X4 X5), (CAR X3) by X4 and (CDR X3) by X5. 
  These steps produce the following three goals.

Subgoal 1.3
(IMPLIES (AND (NOT (CONSP X0))
              (TRS_ISSORT[A2] X0)
              (TRS_ISSORT[A2] X1)
              (EQUAL (CAR X0) 'TRS_CONS)
              (EQUAL (CAR X1) 'TRS_CONS))
         (< (ACL2-COUNT (CADR X0))
            (ACL2-COUNT X0))).

But we reduce the conjecture to T, by primitive type reasoning.

Subgoal 1.2
(IMPLIES (AND (NOT (CONSP X3))
              (SYMBOLP X2)
              (NOT (EQUAL X2 T))
              (NOT (EQUAL X2 NIL))
              (CONSP (CONS X2 X3))
              (TRS_ISSORT[A2] (CONS X2 X3))
              (TRS_ISSORT[A2] X1)
              (EQUAL X2 'TRS_CONS)
              (EQUAL (CAR X1) 'TRS_CONS))
         (< (ACL2-COUNT (CAR X3))
            (ACL2-COUNT (CONS X2 X3)))).

By case analysis we reduce the conjecture to

Subgoal 1.2'
(IMPLIES (AND (NOT (CONSP X3))
              (SYMBOLP X2)
              (NOT (EQUAL X2 T))
              X2 (CONSP (CONS X2 X3))
              (TRS_ISSORT[A2] (CONS X2 X3))
              (TRS_ISSORT[A2] X1)
              (EQUAL X2 'TRS_CONS)
              (EQUAL (CAR X1) 'TRS_CONS))
         (< (ACL2-COUNT (CAR X3))
            (ACL2-COUNT (CONS X2 X3)))).

But simplification reduces this to T, using the :definition TRS_ISSORT[A2],
the :executable-counterparts of EQUAL, NOT and SYMBOLP, primitive type
reasoning and the :rewrite rules CAR-CONS and CDR-CONS.

Subgoal 1.1
(IMPLIES (AND (CONSP (CONS X4 X5))
              (SYMBOLP X2)
              (NOT (EQUAL X2 T))
              (NOT (EQUAL X2 NIL))
              (CONSP (LIST* X2 X4 X5))
              (TRS_ISSORT[A2] (LIST* X2 X4 X5))
              (TRS_ISSORT[A2] X1)
              (EQUAL X2 'TRS_CONS)
              (EQUAL (CAR X1) 'TRS_CONS))
         (< (ACL2-COUNT X4)
            (ACL2-COUNT (LIST* X2 X4 X5)))).

By case analysis we reduce the conjecture to

Subgoal 1.1'
(IMPLIES (AND (CONSP (CONS X4 X5))
              (SYMBOLP X2)
              (NOT (EQUAL X2 T))
              X2 (CONSP (LIST* X2 X4 X5))
              (TRS_ISSORT[A2] (LIST* X2 X4 X5))
              (TRS_ISSORT[A2] X1)
              (EQUAL X2 'TRS_CONS)
              (EQUAL (CAR X1) 'TRS_CONS))
         (< (ACL2-COUNT X4)
            (ACL2-COUNT (LIST* X2 X4 X5)))).

This simplifies, using the :definitions ACL2-COUNT, FIX and TRS_ISSORT[A2],
the :executable-counterparts of ACL2-COUNT, EQUAL, NOT and SYMBOLP,
primitive type reasoning, the :rewrite rules CAR-CONS, CDR-CONS and
UNICITY-OF-0 and the :type-prescription rule ACL2-COUNT, to

Subgoal 1.1''
(IMPLIES (AND (CONSP X5)
              (TRS_ISSORT[A0] X4)
              (TRS_ISSORT[A2] (CAR X5))
              (NOT (CDR X5))
              (TRS_ISSORT[A2] X1)
              (EQUAL (CAR X1) 'TRS_CONS))
         (< (ACL2-COUNT X4)
            (+ 1 1 (ACL2-COUNT X4)
               (ACL2-COUNT X5)))).

But simplification reduces this to T, using linear arithmetic, primitive
type reasoning and the :type-prescription rule ACL2-COUNT.

Q.E.D.

That completes the proof of the measure theorem for TRS_EQUAL_SORT[A2].
Thus, we admit this function under the principle of definition.  We
observe that the type of TRS_EQUAL_SORT[A2] is described by the theorem
(AND (CONSP (TRS_EQUAL_SORT[A2] X0 X1))
     (TRUE-LISTP (TRS_EQUAL_SORT[A2] X0 X1))).
We used the :executable-counterpart of EQUAL, primitive type reasoning
and the :type-prescription rule TRS_AND.

Summary
Form:  ( DEFUN TRS_EQUAL_SORT[A2] ...)
Rules: ((:DEFINITION ACL2-COUNT)
        (:DEFINITION EQ)
        (:DEFINITION FIX)
        (:DEFINITION NOT)
        (:DEFINITION O-FINP)
        (:DEFINITION O<)
        (:DEFINITION TRS_ISSORT[A2])
        (:ELIM CAR-CDR-ELIM)
        (:EXECUTABLE-COUNTERPART ACL2-COUNT)
        (:EXECUTABLE-COUNTERPART EQUAL)
        (:EXECUTABLE-COUNTERPART NOT)
        (:EXECUTABLE-COUNTERPART SYMBOLP)
        (:FAKE-RUNE-FOR-LINEAR NIL)
        (:FAKE-RUNE-FOR-TYPE-SET NIL)
        (:REWRITE CAR-CONS)
        (:REWRITE CDR-CONS)
        (:REWRITE COMMUTATIVITY-OF-+)
        (:REWRITE UNICITY-OF-0)
        (:TYPE-PRESCRIPTION ACL2-COUNT)
        (:TYPE-PRESCRIPTION TRS_AND))
Warnings:  None
Time:  0.02 seconds (prove: 0.02, print: 0.00, other: 0.00)
 TRS_EQUAL_SORT[A2]
ACL2 !>
[Note:  A hint was supplied for our processing of the goal above. 
Thanks!]

By the simple :definition EQ we reduce the conjecture to

Goal'
(IMPLIES (AND (TRS_ISSORT[A0] TRS_X)
              (TRS_ISSORT[A2] TRS_XS))
         (EQUAL (TRS_FILTERHIGHPRIME TRS_X (LIST 'TRS_CONS TRS_X TRS_XS))
                '(TRS_TRUE))).

This simplifies, using the :definitions TRS_EQUAL_BOOL, TRS_FILTERHIGHPRIME,
TRS_ISBOOL and TRS_ISSORT[A2], the :executable-counterparts of CAR,
EQUAL and TRS_ISBOOL, primitive type reasoning, the :rewrite rules
CAR-CONS and CDR-CONS and the :type-prescription rules TRS_GE, 
TRS_ISSORT[A0] and TRS_ISSORT[A2], to

Goal''
(IMPLIES (AND (TRS_ISSORT[A0] TRS_X)
              (TRS_ISSORT[A2] TRS_XS)
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE TRS_X TRS_X)))
              (NOT (CDR (TRS_GE TRS_X TRS_X))))
         (EQUAL (TRS_FILTERHIGHPRIME TRS_X TRS_XS)
                '(TRS_TRUE))).

Name the formula above *1.

Perhaps we can prove *1 by induction.  Five induction schemes are suggested
by this conjecture.  Subsumption reduces that number to four.  These
merge into two derived induction schemes.  However, one of these is
flawed and so we are left with one viable candidate.  

We will induct according to a scheme suggested by 
(TRS_FILTERHIGHPRIME TRS_X TRS_XS).  This suggestion was produced using
the :induction rules TRS_FILTERHIGHPRIME and TRS_ISSORT[A2].  If we
let (:P TRS_X TRS_XS) denote *1 above then the induction scheme we'll
use is
(AND (IMPLIES (NOT (AND (TRS_ISSORT[A0] TRS_X)
                        (TRS_ISSORT[A2] TRS_XS)))
              (:P TRS_X TRS_XS))
     (IMPLIES (AND (AND (TRS_ISSORT[A0] TRS_X)
                        (TRS_ISSORT[A2] TRS_XS))
                   (NOT (EQ (CAR TRS_XS) 'TRS_NIL))
                   (NOT (AND (EQ (CAR TRS_XS) 'TRS_CONS)
                             (EQ (TRS_EQUAL_BOOL (TRS_GE (CADR TRS_XS) TRS_X)
                                                 '(TRS_TRUE))
                                 '(TRS_TRUE))))
                   (NOT (EQ (TRS_EQUAL_BOOL (TRS_GE (CADR TRS_XS) TRS_X)
                                            '(TRS_TRUE))
                            '(TRS_FALSE))))
              (:P TRS_X TRS_XS))
     (IMPLIES (AND (AND (TRS_ISSORT[A0] TRS_X)
                        (TRS_ISSORT[A2] TRS_XS))
                   (NOT (EQ (CAR TRS_XS) 'TRS_NIL))
                   (NOT (AND (EQ (CAR TRS_XS) 'TRS_CONS)
                             (EQ (TRS_EQUAL_BOOL (TRS_GE (CADR TRS_XS) TRS_X)
                                                 '(TRS_TRUE))
                                 '(TRS_TRUE))))
                   (EQ (TRS_EQUAL_BOOL (TRS_GE (CADR TRS_XS) TRS_X)
                                       '(TRS_TRUE))
                       '(TRS_FALSE))
                   (:P TRS_X (CADDR TRS_XS)))
              (:P TRS_X TRS_XS))
     (IMPLIES (AND (AND (TRS_ISSORT[A0] TRS_X)
                        (TRS_ISSORT[A2] TRS_XS))
                   (NOT (EQ (CAR TRS_XS) 'TRS_NIL))
                   (AND (EQ (CAR TRS_XS) 'TRS_CONS)
                        (EQ (TRS_EQUAL_BOOL (TRS_GE (CADR TRS_XS) TRS_X)
                                            '(TRS_TRUE))
                            '(TRS_TRUE))))
              (:P TRS_X TRS_XS))
     (IMPLIES (AND (AND (TRS_ISSORT[A0] TRS_X)
                        (TRS_ISSORT[A2] TRS_XS))
                   (EQ (CAR TRS_XS) 'TRS_NIL))
              (:P TRS_X TRS_XS))).
This induction is justified by the same argument used to admit 
TRS_FILTERHIGHPRIME.  When applied to the goal at hand the above induction
scheme produces five nontautological subgoals.

Subgoal *1/5
(IMPLIES (AND (AND (TRS_ISSORT[A0] TRS_X)
                   (TRS_ISSORT[A2] TRS_XS))
              (NOT (EQ (CAR TRS_XS) 'TRS_NIL))
              (NOT (AND (EQ (CAR TRS_XS) 'TRS_CONS)
                        (EQ (TRS_EQUAL_BOOL (TRS_GE (CADR TRS_XS) TRS_X)
                                            '(TRS_TRUE))
                            '(TRS_TRUE))))
              (NOT (EQ (TRS_EQUAL_BOOL (TRS_GE (CADR TRS_XS) TRS_X)
                                       '(TRS_TRUE))
                       '(TRS_FALSE)))
              (TRS_ISSORT[A0] TRS_X)
              (TRS_ISSORT[A2] TRS_XS)
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE TRS_X TRS_X)))
              (NOT (CDR (TRS_GE TRS_X TRS_X))))
         (EQUAL (TRS_FILTERHIGHPRIME TRS_X TRS_XS)
                '(TRS_TRUE))).

By the simple :definition EQ we reduce the conjecture to

Subgoal *1/5'
(IMPLIES (AND (TRS_ISSORT[A0] TRS_X)
              (TRS_ISSORT[A2] TRS_XS)
              (NOT (EQUAL (CAR TRS_XS) 'TRS_NIL))
              (NOT (AND (EQUAL (CAR TRS_XS) 'TRS_CONS)
                        (EQUAL (TRS_EQUAL_BOOL (TRS_GE (CADR TRS_XS) TRS_X)
                                               '(TRS_TRUE))
                               '(TRS_TRUE))))
              (NOT (EQUAL (TRS_EQUAL_BOOL (TRS_GE (CADR TRS_XS) TRS_X)
                                          '(TRS_TRUE))
                          '(TRS_FALSE)))
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE TRS_X TRS_X)))
              (NOT (CDR (TRS_GE TRS_X TRS_X))))
         (EQUAL (TRS_FILTERHIGHPRIME TRS_X TRS_XS)
                '(TRS_TRUE))).

But simplification reduces this to T, using the :definitions TRS_EQUAL_BOOL,
TRS_ISBOOL and TRS_ISSORT[A2], the :executable-counterparts of CAR,
EQUAL and TRS_ISBOOL, primitive type reasoning and the :type-prescription
rule TRS_GE.

Subgoal *1/4
(IMPLIES (AND (AND (TRS_ISSORT[A0] TRS_X)
                   (TRS_ISSORT[A2] TRS_XS))
              (NOT (EQ (CAR TRS_XS) 'TRS_NIL))
              (NOT (AND (EQ (CAR TRS_XS) 'TRS_CONS)
                        (EQ (TRS_EQUAL_BOOL (TRS_GE (CADR TRS_XS) TRS_X)
                                            '(TRS_TRUE))
                            '(TRS_TRUE))))
              (EQ (TRS_EQUAL_BOOL (TRS_GE (CADR TRS_XS) TRS_X)
                                  '(TRS_TRUE))
                  '(TRS_FALSE))
              (EQUAL (TRS_FILTERHIGHPRIME TRS_X (CADDR TRS_XS))
                     '(TRS_TRUE))
              (TRS_ISSORT[A0] TRS_X)
              (TRS_ISSORT[A2] TRS_XS)
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE TRS_X TRS_X)))
              (NOT (CDR (TRS_GE TRS_X TRS_X))))
         (EQUAL (TRS_FILTERHIGHPRIME TRS_X TRS_XS)
                '(TRS_TRUE))).

By the simple :definition EQ we reduce the conjecture to

Subgoal *1/4'
(IMPLIES (AND (TRS_ISSORT[A0] TRS_X)
              (TRS_ISSORT[A2] TRS_XS)
              (NOT (EQUAL (CAR TRS_XS) 'TRS_NIL))
              (NOT (AND (EQUAL (CAR TRS_XS) 'TRS_CONS)
                        (EQUAL (TRS_EQUAL_BOOL (TRS_GE (CADR TRS_XS) TRS_X)
                                               '(TRS_TRUE))
                               '(TRS_TRUE))))
              (EQUAL (TRS_EQUAL_BOOL (TRS_GE (CADR TRS_XS) TRS_X)
                                     '(TRS_TRUE))
                     '(TRS_FALSE))
              (EQUAL (TRS_FILTERHIGHPRIME TRS_X (CADDR TRS_XS))
                     '(TRS_TRUE))
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE TRS_X TRS_X)))
              (NOT (CDR (TRS_GE TRS_X TRS_X))))
         (EQUAL (TRS_FILTERHIGHPRIME TRS_X TRS_XS)
                '(TRS_TRUE))).

But simplification reduces this to T, using the :definitions TRS_EQUAL_BOOL,
TRS_FILTERHIGHPRIME, TRS_ISBOOL and TRS_ISSORT[A2], the :executable-
counterparts of CAR, EQUAL and TRS_ISBOOL, primitive type reasoning
and the :type-prescription rules TRS_GE, TRS_ISSORT[A0] and TRS_ISSORT[A2].

Subgoal *1/3
(IMPLIES (AND (AND (TRS_ISSORT[A0] TRS_X)
                   (TRS_ISSORT[A2] TRS_XS))
              (NOT (EQ (CAR TRS_XS) 'TRS_NIL))
              (NOT (AND (EQ (CAR TRS_XS) 'TRS_CONS)
                        (EQ (TRS_EQUAL_BOOL (TRS_GE (CADR TRS_XS) TRS_X)
                                            '(TRS_TRUE))
                            '(TRS_TRUE))))
              (EQ (TRS_EQUAL_BOOL (TRS_GE (CADR TRS_XS) TRS_X)
                                  '(TRS_TRUE))
                  '(TRS_FALSE))
              (NOT (TRS_ISSORT[A2] (CADDR TRS_XS)))
              (TRS_ISSORT[A0] TRS_X)
              (TRS_ISSORT[A2] TRS_XS)
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE TRS_X TRS_X)))
              (NOT (CDR (TRS_GE TRS_X TRS_X))))
         (EQUAL (TRS_FILTERHIGHPRIME TRS_X TRS_XS)
                '(TRS_TRUE))).

By the simple :definition EQ we reduce the conjecture to

Subgoal *1/3'
(IMPLIES (AND (TRS_ISSORT[A0] TRS_X)
              (TRS_ISSORT[A2] TRS_XS)
              (NOT (EQUAL (CAR TRS_XS) 'TRS_NIL))
              (NOT (AND (EQUAL (CAR TRS_XS) 'TRS_CONS)
                        (EQUAL (TRS_EQUAL_BOOL (TRS_GE (CADR TRS_XS) TRS_X)
                                               '(TRS_TRUE))
                               '(TRS_TRUE))))
              (EQUAL (TRS_EQUAL_BOOL (TRS_GE (CADR TRS_XS) TRS_X)
                                     '(TRS_TRUE))
                     '(TRS_FALSE))
              (NOT (TRS_ISSORT[A2] (CADDR TRS_XS)))
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE TRS_X TRS_X)))
              (NOT (CDR (TRS_GE TRS_X TRS_X))))
         (EQUAL (TRS_FILTERHIGHPRIME TRS_X TRS_XS)
                '(TRS_TRUE))).

But simplification reduces this to T, using the :definition TRS_ISSORT[A2]
and the :executable-counterpart of EQUAL.

Subgoal *1/2
(IMPLIES (AND (AND (TRS_ISSORT[A0] TRS_X)
                   (TRS_ISSORT[A2] TRS_XS))
              (NOT (EQ (CAR TRS_XS) 'TRS_NIL))
              (AND (EQ (CAR TRS_XS) 'TRS_CONS)
                   (EQ (TRS_EQUAL_BOOL (TRS_GE (CADR TRS_XS) TRS_X)
                                       '(TRS_TRUE))
                       '(TRS_TRUE)))
              (TRS_ISSORT[A0] TRS_X)
              (TRS_ISSORT[A2] TRS_XS)
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE TRS_X TRS_X)))
              (NOT (CDR (TRS_GE TRS_X TRS_X))))
         (EQUAL (TRS_FILTERHIGHPRIME TRS_X TRS_XS)
                '(TRS_TRUE))).

By the simple :definition EQ we reduce the conjecture to

Subgoal *1/2'
(IMPLIES (AND (TRS_ISSORT[A0] TRS_X)
              (TRS_ISSORT[A2] TRS_XS)
              (NOT (EQUAL (CAR TRS_XS) 'TRS_NIL))
              (EQUAL (CAR TRS_XS) 'TRS_CONS)
              (EQUAL (TRS_EQUAL_BOOL (TRS_GE (CADR TRS_XS) TRS_X)
                                     '(TRS_TRUE))
                     '(TRS_TRUE))
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE TRS_X TRS_X)))
              (NOT (CDR (TRS_GE TRS_X TRS_X))))
         (EQUAL (TRS_FILTERHIGHPRIME TRS_X TRS_XS)
                '(TRS_TRUE))).

But simplification reduces this to T, using the :definitions TRS_EQUAL_BOOL,
TRS_FILTERHIGHPRIME, TRS_ISBOOL and TRS_ISSORT[A2], the :executable-
counterparts of CAR, EQUAL and TRS_ISBOOL, primitive type reasoning
and the :type-prescription rules TRS_GE, TRS_ISSORT[A0] and TRS_ISSORT[A2].

Subgoal *1/1
(IMPLIES (AND (AND (TRS_ISSORT[A0] TRS_X)
                   (TRS_ISSORT[A2] TRS_XS))
              (EQ (CAR TRS_XS) 'TRS_NIL)
              (TRS_ISSORT[A0] TRS_X)
              (TRS_ISSORT[A2] TRS_XS)
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE TRS_X TRS_X)))
              (NOT (CDR (TRS_GE TRS_X TRS_X))))
         (EQUAL (TRS_FILTERHIGHPRIME TRS_X TRS_XS)
                '(TRS_TRUE))).

By the simple :definition EQ we reduce the conjecture to

Subgoal *1/1'
(IMPLIES (AND (TRS_ISSORT[A0] TRS_X)
              (TRS_ISSORT[A2] TRS_XS)
              (EQUAL (CAR TRS_XS) 'TRS_NIL)
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE TRS_X TRS_X)))
              (NOT (CDR (TRS_GE TRS_X TRS_X))))
         (EQUAL (TRS_FILTERHIGHPRIME TRS_X TRS_XS)
                '(TRS_TRUE))).

This simplifies, using the :definitions TRS_FILTERHIGHPRIME and 
TRS_ISSORT[A2], the :executable-counterparts of CONSP and EQUAL, primitive
type reasoning and the :type-prescription rule TRS_ISSORT[A0], to

Subgoal *1/1''
(IMPLIES (AND (TRS_ISSORT[A0] TRS_X)
              (CONSP TRS_XS)
              (NOT (CONSP (CDR TRS_XS)))
              (NOT (CDR TRS_XS))
              (EQUAL (CAR TRS_XS) 'TRS_NIL)
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE TRS_X TRS_X))))
         (CDR (TRS_GE TRS_X TRS_X))).

This simplifies, using the :executable-counterpart of CONSP, to

Subgoal *1/1'''
(IMPLIES (AND (TRS_ISSORT[A0] TRS_X)
              (CONSP TRS_XS)
              (NOT (CDR TRS_XS))
              (EQUAL (CAR TRS_XS) 'TRS_NIL)
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE TRS_X TRS_X))))
         (CDR (TRS_GE TRS_X TRS_X))).

The destructor terms (CAR TRS_XS) and (CDR TRS_XS) can be eliminated
by using CAR-CDR-ELIM to replace TRS_XS by (CONS TRS_XS1 TRS_XS2),
(CAR TRS_XS) by TRS_XS1 and (CDR TRS_XS) by TRS_XS2 and restrict the
type of the new variable TRS_XS1 to be that of the term it replaces.
This produces the following goal.

Subgoal *1/1'4'
(IMPLIES (AND (SYMBOLP TRS_XS1)
              (NOT (EQUAL TRS_XS1 T))
              (NOT (EQUAL TRS_XS1 NIL))
              (CONSP (CONS TRS_XS1 TRS_XS2))
              (TRS_ISSORT[A0] TRS_X)
              (NOT TRS_XS2)
              (EQUAL TRS_XS1 'TRS_NIL)
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE TRS_X TRS_X))))
         (CDR (TRS_GE TRS_X TRS_X))).

By case analysis we reduce the conjecture to

Subgoal *1/1'5'
(IMPLIES (AND (SYMBOLP TRS_XS1)
              (NOT (EQUAL TRS_XS1 T))
              TRS_XS1 (CONSP (CONS TRS_XS1 TRS_XS2))
              (TRS_ISSORT[A0] TRS_X)
              (NOT TRS_XS2)
              (EQUAL TRS_XS1 'TRS_NIL)
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE TRS_X TRS_X))))
         (CDR (TRS_GE TRS_X TRS_X))).

This simplifies, using the :executable-counterparts of CONS, CONSP,
EQUAL, NOT and SYMBOLP, to

Subgoal *1/1'6'
(IMPLIES (AND (TRS_ISSORT[A0] TRS_X)
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE TRS_X TRS_X))))
         (CDR (TRS_GE TRS_X TRS_X))).

Name the formula above *1.1.

Perhaps we can prove *1.1 by induction.  Three induction schemes are
suggested by this conjecture.  Subsumption reduces that number to two.
These merge into one derived induction scheme.  

We will induct according to a scheme suggested by (TRS_GE TRS_X TRS_X).
This suggestion was produced using the :induction rules TRS_GE and
TRS_ISSORT[A0].  If we let (:P TRS_X) denote *1.1 above then the induction
scheme we'll use is
(AND (IMPLIES (NOT (AND (TRS_ISSORT[A0] TRS_X)
                        (TRS_ISSORT[A0] TRS_X)))
              (:P TRS_X))
     (IMPLIES (AND (AND (TRS_ISSORT[A0] TRS_X)
                        (TRS_ISSORT[A0] TRS_X))
                   (NOT (EQ (CAR TRS_X) 'TRS_0))
                   (NOT (AND (EQ (CAR TRS_X) 'TRS_0)
                             (EQ (CAR TRS_X) 'TRS_S)))
                   T (:P (CADR TRS_X)))
              (:P TRS_X))
     (IMPLIES (AND (AND (TRS_ISSORT[A0] TRS_X)
                        (TRS_ISSORT[A0] TRS_X))
                   (NOT (EQ (CAR TRS_X) 'TRS_0))
                   (AND (EQ (CAR TRS_X) 'TRS_0)
                        (EQ (CAR TRS_X) 'TRS_S)))
              (:P TRS_X))
     (IMPLIES (AND (AND (TRS_ISSORT[A0] TRS_X)
                        (TRS_ISSORT[A0] TRS_X))
                   (EQ (CAR TRS_X) 'TRS_0))
              (:P TRS_X))).
This induction is justified by the same argument used to admit TRS_GE.
When applied to the goal at hand the above induction scheme produces
four nontautological subgoals.

Subgoal *1.1/4
(IMPLIES (AND (AND (TRS_ISSORT[A0] TRS_X)
                   (TRS_ISSORT[A0] TRS_X))
              (NOT (EQ (CAR TRS_X) 'TRS_0))
              (NOT (AND (EQ (CAR TRS_X) 'TRS_0)
                        (EQ (CAR TRS_X) 'TRS_S)))
              T
              (CDR (TRS_GE (CADR TRS_X) (CADR TRS_X)))
              (TRS_ISSORT[A0] TRS_X)
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE TRS_X TRS_X))))
         (CDR (TRS_GE TRS_X TRS_X))).

By the simple :definition EQ we reduce the conjecture to

Subgoal *1.1/4'
(IMPLIES (AND (TRS_ISSORT[A0] TRS_X)
              (NOT (EQUAL (CAR TRS_X) 'TRS_0))
              (NOT (AND (EQUAL (CAR TRS_X) 'TRS_0)
                        (EQUAL (CAR TRS_X) 'TRS_S)))
              (CDR (TRS_GE (CADR TRS_X) (CADR TRS_X)))
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE TRS_X TRS_X))))
         (CDR (TRS_GE TRS_X TRS_X))).

But simplification reduces this to T, using the :definitions TRS_GE
and TRS_ISSORT[A0], the :executable-counterpart of EQUAL, primitive
type reasoning and the :type-prescription rules TRS_GE and TRS_ISSORT[A0].

Subgoal *1.1/3
(IMPLIES (AND (AND (TRS_ISSORT[A0] TRS_X)
                   (TRS_ISSORT[A0] TRS_X))
              (NOT (EQ (CAR TRS_X) 'TRS_0))
              (NOT (AND (EQ (CAR TRS_X) 'TRS_0)
                        (EQ (CAR TRS_X) 'TRS_S)))
              T
              (NOT (EQUAL 'TRS_FALSE
                          (CAR (TRS_GE (CADR TRS_X) (CADR TRS_X)))))
              (TRS_ISSORT[A0] TRS_X)
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE TRS_X TRS_X))))
         (CDR (TRS_GE TRS_X TRS_X))).

By the simple :definition EQ we reduce the conjecture to

Subgoal *1.1/3'
(IMPLIES (AND (TRS_ISSORT[A0] TRS_X)
              (NOT (EQUAL (CAR TRS_X) 'TRS_0))
              (NOT (AND (EQUAL (CAR TRS_X) 'TRS_0)
                        (EQUAL (CAR TRS_X) 'TRS_S)))
              (NOT (EQUAL 'TRS_FALSE
                          (CAR (TRS_GE (CADR TRS_X) (CADR TRS_X)))))
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE TRS_X TRS_X))))
         (CDR (TRS_GE TRS_X TRS_X))).

But simplification reduces this to T, using the :definitions TRS_GE
and TRS_ISSORT[A0], the :executable-counterpart of EQUAL, primitive
type reasoning and the :type-prescription rule TRS_ISSORT[A0].

Subgoal *1.1/2
(IMPLIES (AND (AND (TRS_ISSORT[A0] TRS_X)
                   (TRS_ISSORT[A0] TRS_X))
              (NOT (EQ (CAR TRS_X) 'TRS_0))
              (NOT (AND (EQ (CAR TRS_X) 'TRS_0)
                        (EQ (CAR TRS_X) 'TRS_S)))
              T (NOT (TRS_ISSORT[A0] (CADR TRS_X)))
              (TRS_ISSORT[A0] TRS_X)
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE TRS_X TRS_X))))
         (CDR (TRS_GE TRS_X TRS_X))).

By the simple :definition EQ we reduce the conjecture to

Subgoal *1.1/2'
(IMPLIES (AND (TRS_ISSORT[A0] TRS_X)
              (NOT (EQUAL (CAR TRS_X) 'TRS_0))
              (NOT (AND (EQUAL (CAR TRS_X) 'TRS_0)
                        (EQUAL (CAR TRS_X) 'TRS_S)))
              (NOT (TRS_ISSORT[A0] (CADR TRS_X)))
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE TRS_X TRS_X))))
         (CDR (TRS_GE TRS_X TRS_X))).

But simplification reduces this to T, using the :definition TRS_ISSORT[A0].

Subgoal *1.1/1
(IMPLIES (AND (AND (TRS_ISSORT[A0] TRS_X)
                   (TRS_ISSORT[A0] TRS_X))
              (EQ (CAR TRS_X) 'TRS_0)
              (TRS_ISSORT[A0] TRS_X)
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE TRS_X TRS_X))))
         (CDR (TRS_GE TRS_X TRS_X))).

By the simple :definition EQ we reduce the conjecture to

Subgoal *1.1/1'
(IMPLIES (AND (TRS_ISSORT[A0] TRS_X)
              (EQUAL (CAR TRS_X) 'TRS_0)
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE TRS_X TRS_X))))
         (CDR (TRS_GE TRS_X TRS_X))).

But simplification reduces this to T, using the :definitions TRS_GE
and TRS_ISSORT[A0], the :executable-counterparts of CAR and EQUAL and
primitive type reasoning.

That completes the proofs of *1.1 and *1.

Q.E.D.

Summary
Form:  ( DEFTHM TEST ...)
Rules: ((:DEFINITION EQ)
        (:DEFINITION NOT)
        (:DEFINITION TRS_EQUAL_BOOL)
        (:DEFINITION TRS_FILTERHIGHPRIME)
        (:DEFINITION TRS_GE)
        (:DEFINITION TRS_ISBOOL)
        (:DEFINITION TRS_ISSORT[A0])
        (:DEFINITION TRS_ISSORT[A2])
        (:ELIM CAR-CDR-ELIM)
        (:EXECUTABLE-COUNTERPART CAR)
        (:EXECUTABLE-COUNTERPART CONS)
        (:EXECUTABLE-COUNTERPART CONSP)
        (:EXECUTABLE-COUNTERPART EQUAL)
        (:EXECUTABLE-COUNTERPART NOT)
        (:EXECUTABLE-COUNTERPART SYMBOLP)
        (:EXECUTABLE-COUNTERPART TRS_ISBOOL)
        (:FAKE-RUNE-FOR-TYPE-SET NIL)
        (:INDUCTION TRS_FILTERHIGHPRIME)
        (:INDUCTION TRS_GE)
        (:INDUCTION TRS_ISSORT[A0])
        (:INDUCTION TRS_ISSORT[A2])
        (:REWRITE CAR-CONS)
        (:REWRITE CDR-CONS)
        (:TYPE-PRESCRIPTION TRS_GE)
        (:TYPE-PRESCRIPTION TRS_ISSORT[A0])
        (:TYPE-PRESCRIPTION TRS_ISSORT[A2]))
Warnings:  None
Time:  0.05 seconds (prove: 0.05, print: 0.00, other: 0.00)
 TEST
ACL2 !>Bye.

(41) Complex Obligation (AND)

(42) Obligation:

Q DP problem:
The TRS P consists of the following rules:

QSORT(cons(x, xs)) → QSORT(filterlow(x, cons(x, xs)))

The TRS R consists of the following rules:

filterlow(n, cons(x, xs)) → if1(ge(n, x), n, x, xs)
if1(true, n, x, xs) → filterlow(n, xs)
ge(x, 0) → true
ge(0, s(x)) → false
ge(s(x), s(y)) → ge(x, y)
if1(false, n, x, xs) → cons(x, filterlow(n, xs))
filterlow(n, nil) → nil
filterhigh(n, cons(x, xs)) → if2(ge(x, n), n, x, xs)
if2(true, n, x, xs) → filterhigh(n, xs)
if2(false, n, x, xs) → cons(x, filterhigh(n, xs))
filterhigh(n, nil) → nil

The set Q consists of the following terms:

filterlow(x0, nil)
filterlow(x0, cons(x1, x2))
if1(true, x0, x1, x2)
if1(false, x0, x1, x2)
filterhigh(x0, nil)
filterhigh(x0, cons(x1, x2))
if2(true, x0, x1, x2)
if2(false, x0, x1, x2)
ge(x0, 0)
ge(0, s(x0))
ge(s(x0), s(x1))

We have to consider all minimal (P,Q,R)-chains.

(43) UsableRulesProof (EQUIVALENT transformation)

As all Q-normal forms are R-normal forms we are in the innermost case. Hence, by the usable rules processor [LPAR04] we can delete all non-usable rules [FROCOS05] from R.

(44) Obligation:

Q DP problem:
The TRS P consists of the following rules:

QSORT(cons(x, xs)) → QSORT(filterlow(x, cons(x, xs)))

The TRS R consists of the following rules:

if1(true, n, x, xs) → filterlow(n, xs)
filterlow(n, cons(x, xs)) → if1(ge(n, x), n, x, xs)
filterlow(n, nil) → nil
ge(x, 0) → true
ge(0, s(x)) → false
ge(s(x), s(y)) → ge(x, y)
if1(false, n, x, xs) → cons(x, filterlow(n, xs))

The set Q consists of the following terms:

filterlow(x0, nil)
filterlow(x0, cons(x1, x2))
if1(true, x0, x1, x2)
if1(false, x0, x1, x2)
filterhigh(x0, nil)
filterhigh(x0, cons(x1, x2))
if2(true, x0, x1, x2)
if2(false, x0, x1, x2)
ge(x0, 0)
ge(0, s(x0))
ge(s(x0), s(x1))

We have to consider all minimal (P,Q,R)-chains.

(45) QReductionProof (EQUIVALENT transformation)

We deleted the following terms from Q as each root-symbol of these terms does neither occur in P nor in R.[THIEMANN].

filterhigh(x0, nil)
filterhigh(x0, cons(x1, x2))
if2(true, x0, x1, x2)
if2(false, x0, x1, x2)

(46) Obligation:

Q DP problem:
The TRS P consists of the following rules:

QSORT(cons(x, xs)) → QSORT(filterlow(x, cons(x, xs)))

The TRS R consists of the following rules:

if1(true, n, x, xs) → filterlow(n, xs)
filterlow(n, cons(x, xs)) → if1(ge(n, x), n, x, xs)
filterlow(n, nil) → nil
ge(x, 0) → true
ge(0, s(x)) → false
ge(s(x), s(y)) → ge(x, y)
if1(false, n, x, xs) → cons(x, filterlow(n, xs))

The set Q consists of the following terms:

filterlow(x0, nil)
filterlow(x0, cons(x1, x2))
if1(true, x0, x1, x2)
if1(false, x0, x1, x2)
ge(x0, 0)
ge(0, s(x0))
ge(s(x0), s(x1))

We have to consider all minimal (P,Q,R)-chains.

(47) Induction-Processor (SOUND transformation)


This DP could be deleted by the Induction-Processor:
QSORT(cons(x, xs)) → QSORT(filterlow(x, cons(x, xs)))


This order was computed:
Polynomial interpretation [POLO]:

POL(0) = 1   
POL(QSORT(x1)) = x1   
POL(cons(x1, x2)) = 1 + x2   
POL(false) = 1   
POL(filterlow(x1, x2)) = x2   
POL(ge(x1, x2)) = 1 + x1   
POL(if1(x1, x2, x3, x4)) = 1 + x4   
POL(nil) = 0   
POL(s(x1)) = 1 + x1   
POL(true) = 0   

At least one of these decreasing rules is always used after the deleted DP:
if1(true, n1', x3', xs''') → filterlow(n1', xs''')


The following formula is valid:
x:sort[a0],xs:sort[a2].filterlow'(, cons(, xs ))=true


The transformed set:
filterlow'(n, cons(x, xs)) → if1'(ge(n, x), n, x, xs)
if1'(true, n1, x3, xs'') → true
filterlow'(n7, nil) → false
if1'(false, n24, x38, xs17) → filterlow'(n24, xs17)
filterlow(n, cons(x, xs)) → if1(ge(n, x), n, x, xs)
if1(true, n1, x3, xs'') → filterlow(n1, xs'')
filterlow(n7, nil) → nil
ge(x17, 0) → true
ge(0, s(x24)) → false
ge(s(x31), s(y3)) → ge(x31, y3)
if1(false, n24, x38, xs17) → cons(x38, filterlow(n24, xs17))
equal_bool(true, false) → false
equal_bool(false, true) → false
equal_bool(true, true) → true
equal_bool(false, false) → true
and(true, x) → x
and(false, x) → false
or(true, x) → true
or(false, x) → x
not(false) → true
not(true) → false
isa_true(true) → true
isa_true(false) → false
isa_false(true) → false
isa_false(false) → true
equal_sort[a0](0, 0) → true
equal_sort[a0](0, s(x0)) → false
equal_sort[a0](s(x0), 0) → false
equal_sort[a0](s(x0), s(x1)) → equal_sort[a0](x0, x1)
equal_sort[a2](cons(x0, x1), cons(x2, x3)) → and(equal_sort[a2](x0, x2), equal_sort[a2](x1, x3))
equal_sort[a2](cons(x0, x1), nil) → false
equal_sort[a2](nil, cons(x0, x1)) → false
equal_sort[a2](nil, nil) → true
equal_sort[a35](witness_sort[a35], witness_sort[a35]) → true


The proof given by the theorem prover:
The following input was given to ACL2:
(set-ruler-extenders :all)

(defun trs_isbool (x)
  (or
    (and
      (consp
        x
      )
      (eq
        'trs_true
        (car
          x
        )
      )
      (eq
        (cdr
          x
        )
        'nil
      )
    )
    (and
      (consp
        x
      )
      (eq
        'trs_false
        (car
          x
        )
      )
      (eq
        (cdr
          x
        )
        'nil
      )
    )
  )
)
(defun trs_issort[a0] (x)
  (or
    (and
      (consp
        x
      )
      (eq
        'trs_0
        (car
          x
        )
      )
      (eq
        (cdr
          x
        )
        'nil
      )
    )
    (and
      (consp
        x
      )
      (consp
        (cdr
          x
        )
      )
      (eq
        'trs_s
        (car
          x
        )
      )
      (trs_issort[a0]
        (car
          (cdr
            x
          )
        )
      )
      (eq
        (cdr
          (cdr
            x
          )
        )
        'nil
      )
    )
  )
)
(defun trs_issort[a35] (x)
  (or
    (and
      (consp
        x
      )
      (eq
        'trs_witness_sort[a35]
        (car
          x
        )
      )
      (eq
        (cdr
          x
        )
        'nil
      )
    )
  )
)
(defun trs_issort[a2] (x)
  (or
    (and
      (consp
        x
      )
      (consp
        (cdr
          x
        )
      )
      (consp
        (cdr
          (cdr
            x
          )
        )
      )
      (eq
        'trs_cons
        (car
          x
        )
      )
      (trs_issort[a0]
        (car
          (cdr
            x
          )
        )
      )
      (trs_issort[a2]
        (car
          (cdr
            (cdr
              x
            )
          )
        )
      )
      (eq
        (cdr
          (cdr
            (cdr
              x
            )
          )
        )
        'nil
      )
    )
    (and
      (consp
        x
      )
      (eq
        'trs_nil
        (car
          x
        )
      )
      (eq
        (cdr
          x
        )
        'nil
      )
    )
  )
)
(defun trs_ge (x0 x1)
  (if
    (and
      (trs_issort[a0]
        x0
      )
      (trs_issort[a0]
        x1
      )
    )
    (if
      (and
        (eq
          (car
            x1
          )
          'trs_0
        )
      )
      (list 'trs_true
      )
      (if
        (and
          (eq
            (car
              x0
            )
            'trs_0
          )
          (eq
            (car
              x1
            )
            'trs_s
          )
        )
        (list 'trs_false
        )
        (if
          (and
          )
          (trs_ge
            (car
              (cdr
                x0
              )
            )
            (car
              (cdr
                x1
              )
            )
          )
          (list 'trs_true
          )
        )
      )
    )
    (list 'trs_true
    )
  )
)
(defun trs_equal_sort[a35] (x0 x1)
  (if
    (and
      (trs_issort[a35]
        x0
      )
      (trs_issort[a35]
        x1
      )
    )
    (if
      (and
      )
      (list 'trs_true
      )
      (list 'trs_true
      )
    )
    (list 'trs_true
    )
  )
)
(defun trs_equal_sort[a0] (x0 x1)
  (if
    (and
      (trs_issort[a0]
        x0
      )
      (trs_issort[a0]
        x1
      )
    )
    (if
      (and
        (eq
          (car
            x0
          )
          'trs_0
        )
        (eq
          (car
            x1
          )
          'trs_0
        )
      )
      (list 'trs_true
      )
      (if
        (and
          (eq
            (car
              x0
            )
            'trs_0
          )
          (eq
            (car
              x1
            )
            'trs_s
          )
        )
        (list 'trs_false
        )
        (if
          (and
            (eq
              (car
                x0
              )
              'trs_s
            )
            (eq
              (car
                x1
              )
              'trs_0
            )
          )
          (list 'trs_false
          )
          (if
            (and
            )
            (trs_equal_sort[a0]
              (car
                (cdr
                  x0
                )
              )
              (car
                (cdr
                  x1
                )
              )
            )
            (list 'trs_true
            )
          )
        )
      )
    )
    (list 'trs_true
    )
  )
)
(defun trs_isa_false (x0)
  (if
    (and
      (trs_isbool
        x0
      )
    )
    (if
      (and
        (eq
          (car
            x0
          )
          'trs_true
        )
      )
      (list 'trs_false
      )
      (if
        (and
        )
        (list 'trs_true
        )
        (list 'trs_true
        )
      )
    )
    (list 'trs_true
    )
  )
)
(defun trs_isa_true (x0)
  (if
    (and
      (trs_isbool
        x0
      )
    )
    (if
      (and
        (eq
          (car
            x0
          )
          'trs_true
        )
      )
      (list 'trs_true
      )
      (if
        (and
        )
        (list 'trs_false
        )
        (list 'trs_true
        )
      )
    )
    (list 'trs_true
    )
  )
)
(defun trs_not (x0)
  (if
    (and
      (trs_isbool
        x0
      )
    )
    (if
      (and
        (eq
          (car
            x0
          )
          'trs_false
        )
      )
      (list 'trs_true
      )
      (if
        (and
        )
        (list 'trs_false
        )
        (list 'trs_true
        )
      )
    )
    (list 'trs_true
    )
  )
)
(defun trs_or (x0 x1)
  (if
    (and
      (trs_isbool
        x0
      )
      (trs_isbool
        x1
      )
    )
    (if
      (and
        (eq
          (car
            x0
          )
          'trs_true
        )
      )
      (list 'trs_true
      )
      (if
        (and
        )
        x1
        (list 'trs_true
        )
      )
    )
    (list 'trs_true
    )
  )
)
(defun trs_and (x0 x1)
  (if
    (and
      (trs_isbool
        x0
      )
      (trs_isbool
        x1
      )
    )
    (if
      (and
        (eq
          (car
            x0
          )
          'trs_true
        )
      )
      x1
      (if
        (and
        )
        (list 'trs_false
        )
        (list 'trs_true
        )
      )
    )
    (list 'trs_true
    )
  )
)
(defun trs_equal_bool (x0 x1)
  (if
    (and
      (trs_isbool
        x0
      )
      (trs_isbool
        x1
      )
    )
    (if
      (and
        (eq
          (car
            x0
          )
          'trs_true
        )
        (eq
          (car
            x1
          )
          'trs_false
        )
      )
      (list 'trs_false
      )
      (if
        (and
          (eq
            (car
              x0
            )
            'trs_false
          )
          (eq
            (car
              x1
            )
            'trs_true
          )
        )
        (list 'trs_false
        )
        (if
          (and
            (eq
              (car
                x0
              )
              'trs_true
            )
            (eq
              (car
                x1
              )
              'trs_true
            )
          )
          (list 'trs_true
          )
          (if
            (and
            )
            (list 'trs_true
            )
            (list 'trs_true
            )
          )
        )
      )
    )
    (list 'trs_true
    )
  )
)
(defun trs_if1 (x0 x1 x2 x3)
  (if
    (and
      (trs_isbool
        x0
      )
      (trs_issort[a0]
        x1
      )
      (trs_issort[a0]
        x2
      )
      (trs_issort[a2]
        x3
      )
    )
    (if
      (and
        (eq
          (car
            x0
          )
          'trs_true
        )
        (eq
          (car
            x3
          )
          'trs_cons
        )
      )
      (trs_if1
        (trs_ge
          x1
          (car
            (cdr
              x3
            )
          )
        )
        x1
        (car
          (cdr
            x3
          )
        )
        (car
          (cdr
            (cdr
              x3
            )
          )
        )
      )
      (if
        (and
          (eq
            (car
              x0
            )
            'trs_true
          )
          (eq
            (car
              x3
            )
            'trs_nil
          )
        )
        (list 'trs_nil
        )
        (if
          (and
            (eq
              (car
                x0
              )
              'trs_false
            )
            (eq
              (car
                x3
              )
              'trs_cons
            )
          )
          (list 'trs_cons
            x2
            (trs_if1
              (trs_ge
                x1
                (car
                  (cdr
                    x3
                  )
                )
              )
              x1
              (car
                (cdr
                  x3
                )
              )
              (car
                (cdr
                  (cdr
                    x3
                  )
                )
              )
            )
          )
          (if
            (and
            )
            (list 'trs_cons
              x2
              (list 'trs_nil
              )
            )
            (list 'trs_nil
            )
          )
        )
      )
    )
    (list 'trs_nil
    )
  )
)
(defun trs_if1prime (x0 x1 x2 x3)
  (if
    (and
      (trs_isbool
        x0
      )
      (trs_issort[a0]
        x1
      )
      (trs_issort[a0]
        x2
      )
      (trs_issort[a2]
        x3
      )
    )
    (if
      (and
        (eq
          (car
            x0
          )
          'trs_true
        )
      )
      (list 'trs_true
      )
      (if
        (and
          (eq
            (car
              x0
            )
            'trs_false
          )
          (eq
            (car
              x3
            )
            'trs_cons
          )
        )
        (trs_if1prime
          (trs_ge
            x1
            (car
              (cdr
                x3
              )
            )
          )
          x1
          (car
            (cdr
              x3
            )
          )
          (car
            (cdr
              (cdr
                x3
              )
            )
          )
        )
        (if
          (and
          )
          (list 'trs_false
          )
          (list 'trs_true
          )
        )
      )
    )
    (list 'trs_true
    )
  )
)
(defun trs_filterlow (x0 x1)
  (if
    (and
      (trs_issort[a0]
        x0
      )
      (trs_issort[a2]
        x1
      )
    )
    (if
      (and
        (eq
          (car
            x1
          )
          'trs_nil
        )
      )
      (list 'trs_nil
      )
      (if
        (and
          (eq
            (car
              x1
            )
            'trs_cons
          )
          (eq
            (trs_equal_bool
              (trs_ge
                x0
                (car
                  (cdr
                    x1
                  )
                )
              )
              (list 'trs_true
              )
            )
            (list 'trs_true
            )
          )
        )
        (trs_filterlow
          x0
          (car
            (cdr
              (cdr
                x1
              )
            )
          )
        )
        (if
          (and
            (eq
              (trs_equal_bool
                (trs_ge
                  x0
                  (car
                    (cdr
                      x1
                    )
                  )
                )
                (list 'trs_true
                )
              )
              (list 'trs_false
              )
            )
          )
          (list 'trs_cons
            (car
              (cdr
                x1
              )
            )
            (trs_filterlow
              x0
              (car
                (cdr
                  (cdr
                    x1
                  )
                )
              )
            )
          )
          (list 'trs_nil
          )
        )
      )
    )
    (list 'trs_nil
    )
  )
)
(defun trs_filterlowprime (x0 x1)
  (if
    (and
      (trs_issort[a0]
        x0
      )
      (trs_issort[a2]
        x1
      )
    )
    (if
      (and
        (eq
          (car
            x1
          )
          'trs_nil
        )
      )
      (list 'trs_false
      )
      (if
        (and
          (eq
            (car
              x1
            )
            'trs_cons
          )
          (eq
            (trs_equal_bool
              (trs_ge
                x0
                (car
                  (cdr
                    x1
                  )
                )
              )
              (list 'trs_true
              )
            )
            (list 'trs_true
            )
          )
        )
        (list 'trs_true
        )
        (if
          (and
            (eq
              (trs_equal_bool
                (trs_ge
                  x0
                  (car
                    (cdr
                      x1
                    )
                  )
                )
                (list 'trs_true
                )
              )
              (list 'trs_false
              )
            )
          )
          (trs_filterlowprime
            x0
            (car
              (cdr
                (cdr
                  x1
                )
              )
            )
          )
          (list 'trs_true
          )
        )
      )
    )
    (list 'trs_true
    )
  )
)
(defun trs_equal_sort[a2] (x0 x1)
  (if
    (and
      (trs_issort[a2]
        x0
      )
      (trs_issort[a2]
        x1
      )
    )
    (if
      (and
        (eq
          (car
            x0
          )
          'trs_cons
        )
        (eq
          (car
            x1
          )
          'trs_cons
        )
      )
      (trs_and
        (trs_equal_sort[a2]
          (car
            (cdr
              x0
            )
          )
          (car
            (cdr
              x1
            )
          )
        )
        (trs_equal_sort[a2]
          (car
            (cdr
              (cdr
                x0
              )
            )
          )
          (car
            (cdr
              (cdr
                x1
              )
            )
          )
        )
      )
      (if
        (and
          (eq
            (car
              x0
            )
            'trs_cons
          )
          (eq
            (car
              x1
            )
            'trs_nil
          )
        )
        (list 'trs_false
        )
        (if
          (and
            (eq
              (car
                x0
              )
              'trs_nil
            )
            (eq
              (car
                x1
              )
              'trs_cons
            )
          )
          (list 'trs_false
          )
          (if
            (and
            )
            (list 'trs_true
            )
            (list 'trs_true
            )
          )
        )
      )
    )
    (list 'trs_true
    )
  )
)
(with-prover-time-limit 3
  (defthm test
    (implies
      (and
        (trs_issort[a0] trs_x)
        (trs_issort[a2] trs_xs)
      )
      (eq
        (trs_filterlowprime
          trs_x
          (list 'trs_cons
            trs_x
            trs_xs
          )
        )
        (list 'trs_true
        )
      )
    )
    :hints (("Goal" :do-not '(generalize)))
  )
)


The following output was given by ACL2:
This is SBCL 1.0.29.11.debian, an implementation of ANSI Common Lisp.
More information about SBCL is available at .

SBCL is free software, provided as is, with absolutely no warranty.
It is mostly in the public domain; some portions are provided under
BSD-style licenses.  See the CREDITS and COPYING files in the
distribution for more information.

 ACL2 Version 3.6 built February 12, 2010  14:59:57.
 Copyright (C) 2009  University of Texas at Austin
 ACL2 comes with ABSOLUTELY NO WARRANTY.  This is free software and you
 are welcome to redistribute it under certain conditions.  For details,
 see the GNU General Public License.

 Initialized with (INITIALIZE-ACL2 'INCLUDE-BOOK *ACL2-PASS-2-FILES*).
 See the documentation topic note-3-6 for recent changes.
 Note: We have modified the prompt in some underlying Lisps to further
 distinguish it from the ACL2 prompt.

ACL2 Version 3.6.  Level 1.  Cbd "/home/petersk/workspace/benchmark/".
Distributed books directory "/home/petersk/download/acl2-sources/books/".
Type :help for help.
Type (good-bye) to quit completely out of ACL2.

ACL2 !> :ALL
ACL2 !>
Since TRS_ISBOOL is non-recursive, its admission is trivial.  We observe
that the type of TRS_ISBOOL is described by the theorem 
(OR (EQUAL (TRS_ISBOOL X) T) (EQUAL (TRS_ISBOOL X) NIL)).  We used
the :executable-counterpart of EQUAL and primitive type reasoning.

Summary
Form:  ( DEFUN TRS_ISBOOL ...)
Rules: ((:EXECUTABLE-COUNTERPART EQUAL)
        (:FAKE-RUNE-FOR-TYPE-SET NIL))
Warnings:  None
Time:  0.01 seconds (prove: 0.00, print: 0.00, other: 0.01)
 TRS_ISBOOL
ACL2 !>
For the admission of TRS_ISSORT[A0] we will use the relation O< (which
is known to be well-founded on the domain recognized by O-P) and the
measure (ACL2-COUNT X).  The non-trivial part of the measure conjecture
is

Goal
(IMPLIES (AND (NOT (AND (CONSP X)
                        (EQ 'TRS_0 (CAR X))
                        (EQ (CDR X) NIL)))
              (CONSP X)
              (CONSP (CDR X))
              (EQ 'TRS_S (CAR X)))
         (O< (ACL2-COUNT (CADR X))
             (ACL2-COUNT X))).

By the simple :definition EQ we reduce the conjecture to

Goal'
(IMPLIES (AND (NOT (AND (CONSP X)
                        (EQUAL 'TRS_0 (CAR X))
                        (EQUAL (CDR X) NIL)))
              (CONSP X)
              (CONSP (CDR X))
              (EQUAL 'TRS_S (CAR X)))
         (O< (ACL2-COUNT (CADR X))
             (ACL2-COUNT X))).

This simplifies, using the :definitions ACL2-COUNT, FIX, O-FINP and
O<, the :executable-counterparts of ACL2-COUNT and EQUAL, primitive
type reasoning, the :rewrite rule UNICITY-OF-0 and the :type-prescription
rule ACL2-COUNT, to

Goal''
(IMPLIES (AND (CONSP X)
              (CONSP (CDR X))
              (EQUAL 'TRS_S (CAR X)))
         (< (ACL2-COUNT (CADR X))
            (+ 1 (ACL2-COUNT (CDR X))))).

The destructor terms (CAR X) and (CDR X) can be eliminated.  Furthermore,
those terms are at the root of a chain of two rounds of destructor
elimination. (1) Use CAR-CDR-ELIM to replace X by (CONS X1 X2), (CAR X)
by X1 and (CDR X) by X2 and restrict the type of the new variable X1
to be that of the term it replaces.  (2) Use CAR-CDR-ELIM, again, to
replace X2 by (CONS X3 X4), (CAR X2) by X3 and (CDR X2) by X4.    These
steps produce the following goal.

Goal'''
(IMPLIES (AND (CONSP (CONS X3 X4))
              (SYMBOLP X1)
              (NOT (EQUAL X1 T))
              (NOT (EQUAL X1 NIL))
              (CONSP (LIST* X1 X3 X4))
              (EQUAL 'TRS_S X1))
         (< (ACL2-COUNT X3)
            (+ 1 (ACL2-COUNT (CONS X3 X4))))).

By case analysis we reduce the conjecture to

Goal'4'
(IMPLIES (AND (CONSP (CONS X3 X4))
              (SYMBOLP X1)
              (NOT (EQUAL X1 T))
              X1 (CONSP (LIST* X1 X3 X4))
              (EQUAL 'TRS_S X1))
         (< (ACL2-COUNT X3)
            (+ 1 (ACL2-COUNT (CONS X3 X4))))).

This simplifies, using the :definition ACL2-COUNT, the :executable-
counterparts of EQUAL, NOT and SYMBOLP, primitive type reasoning and
the :rewrite rules CAR-CONS and CDR-CONS, to

Goal'5'
(< (ACL2-COUNT X3)
   (+ 1 1 (ACL2-COUNT X3)
      (ACL2-COUNT X4))).

But simplification reduces this to T, using linear arithmetic, primitive
type reasoning and the :type-prescription rule ACL2-COUNT.

Q.E.D.

That completes the proof of the measure theorem for TRS_ISSORT[A0].
Thus, we admit this function under the principle of definition.  We
observe that the type of TRS_ISSORT[A0] is described by the theorem
(OR (EQUAL (TRS_ISSORT[A0] X) T) (EQUAL (TRS_ISSORT[A0] X) NIL)). 
We used the :executable-counterpart of EQUAL and primitive type reasoning.

Summary
Form:  ( DEFUN TRS_ISSORT[A0] ...)
Rules: ((:DEFINITION ACL2-COUNT)
        (:DEFINITION EQ)
        (:DEFINITION FIX)
        (:DEFINITION NOT)
        (:DEFINITION O-FINP)
        (:DEFINITION O<)
        (:ELIM CAR-CDR-ELIM)
        (:EXECUTABLE-COUNTERPART ACL2-COUNT)
        (:EXECUTABLE-COUNTERPART EQUAL)
        (:EXECUTABLE-COUNTERPART NOT)
        (:EXECUTABLE-COUNTERPART SYMBOLP)
        (:FAKE-RUNE-FOR-LINEAR NIL)
        (:FAKE-RUNE-FOR-TYPE-SET NIL)
        (:REWRITE CAR-CONS)
        (:REWRITE CDR-CONS)
        (:REWRITE UNICITY-OF-0)
        (:TYPE-PRESCRIPTION ACL2-COUNT))
Warnings:  None
Time:  0.01 seconds (prove: 0.01, print: 0.00, other: 0.00)
 TRS_ISSORT[A0]
ACL2 !>
Since TRS_ISSORT[A35] is non-recursive, its admission is trivial. 
We observe that the type of TRS_ISSORT[A35] is described by the theorem
(OR (EQUAL (TRS_ISSORT[A35] X) T) (EQUAL (TRS_ISSORT[A35] X) NIL)).
We used primitive type reasoning.

Summary
Form:  ( DEFUN TRS_ISSORT[A35] ...)
Rules: ((:FAKE-RUNE-FOR-TYPE-SET NIL))
Warnings:  None
Time:  0.01 seconds (prove: 0.00, print: 0.00, other: 0.01)
 TRS_ISSORT[A35]
ACL2 !>
For the admission of TRS_ISSORT[A2] we will use the relation O< (which
is known to be well-founded on the domain recognized by O-P) and the
measure (ACL2-COUNT X).  The non-trivial part of the measure conjecture
is

Goal
(IMPLIES (AND (CONSP X)
              (CONSP (CDR X))
              (CONSP (CDDR X))
              (EQ 'TRS_CONS (CAR X))
              (TRS_ISSORT[A0] (CADR X)))
         (O< (ACL2-COUNT (CADDR X))
             (ACL2-COUNT X))).

By the simple :definition EQ we reduce the conjecture to

Goal'
(IMPLIES (AND (CONSP X)
              (CONSP (CDR X))
              (CONSP (CDDR X))
              (EQUAL 'TRS_CONS (CAR X))
              (TRS_ISSORT[A0] (CADR X)))
         (O< (ACL2-COUNT (CADDR X))
             (ACL2-COUNT X))).

This simplifies, using the :definitions ACL2-COUNT, FIX, O-FINP and
O<, the :executable-counterpart of ACL2-COUNT, primitive type reasoning,
the :rewrite rule UNICITY-OF-0 and the :type-prescription rule ACL2-COUNT,
to

Goal''
(IMPLIES (AND (CONSP X)
              (CONSP (CDR X))
              (CONSP (CDDR X))
              (EQUAL 'TRS_CONS (CAR X))
              (TRS_ISSORT[A0] (CADR X)))
         (< (ACL2-COUNT (CADDR X))
            (+ 1 1 (ACL2-COUNT (CADR X))
               (ACL2-COUNT (CDDR X))))).

The destructor terms (CAR X) and (CDR X) can be eliminated.  Furthermore,
those terms are at the root of a chain of three rounds of destructor
elimination. (1) Use CAR-CDR-ELIM to replace X by (CONS X1 X2), (CAR X)
by X1 and (CDR X) by X2 and restrict the type of the new variable X1
to be that of the term it replaces.  (2) Use CAR-CDR-ELIM, again, to
replace X2 by (CONS X3 X4), (CAR X2) by X3 and (CDR X2) by X4.  (3)
Finally, use CAR-CDR-ELIM to replace X4 by (CONS X5 X6), (CAR X4) by
X5 and (CDR X4) by X6.    These steps produce the following goal.

Goal'''
(IMPLIES (AND (CONSP (CONS X5 X6))
              (CONSP (LIST* X3 X5 X6))
              (SYMBOLP X1)
              (NOT (EQUAL X1 T))
              (NOT (EQUAL X1 NIL))
              (CONSP (LIST* X1 X3 X5 X6))
              (EQUAL 'TRS_CONS X1)
              (TRS_ISSORT[A0] X3))
         (< (ACL2-COUNT X5)
            (+ 1 1 (ACL2-COUNT X3)
               (ACL2-COUNT (CONS X5 X6))))).

By case analysis we reduce the conjecture to

Goal'4'
(IMPLIES (AND (CONSP (CONS X5 X6))
              (CONSP (LIST* X3 X5 X6))
              (SYMBOLP X1)
              (NOT (EQUAL X1 T))
              X1 (CONSP (LIST* X1 X3 X5 X6))
              (EQUAL 'TRS_CONS X1)
              (TRS_ISSORT[A0] X3))
         (< (ACL2-COUNT X5)
            (+ 1 1 (ACL2-COUNT X3)
               (ACL2-COUNT (CONS X5 X6))))).

This simplifies, using the :definition ACL2-COUNT, the :executable-
counterparts of EQUAL, NOT and SYMBOLP, primitive type reasoning and
the :rewrite rules CAR-CONS and CDR-CONS, to

Goal'5'
(IMPLIES (TRS_ISSORT[A0] X3)
         (< (ACL2-COUNT X5)
            (+ 1 1 (ACL2-COUNT X3)
               1 (ACL2-COUNT X5)
               (ACL2-COUNT X6)))).

But simplification reduces this to T, using linear arithmetic, primitive
type reasoning and the :type-prescription rule ACL2-COUNT.

Q.E.D.

That completes the proof of the measure theorem for TRS_ISSORT[A2].
Thus, we admit this function under the principle of definition.  We
observe that the type of TRS_ISSORT[A2] is described by the theorem
(OR (EQUAL (TRS_ISSORT[A2] X) T) (EQUAL (TRS_ISSORT[A2] X) NIL)). 
We used the :executable-counterpart of EQUAL, primitive type reasoning
and the :type-prescription rule TRS_ISSORT[A0].

Summary
Form:  ( DEFUN TRS_ISSORT[A2] ...)
Rules: ((:DEFINITION ACL2-COUNT)
        (:DEFINITION EQ)
        (:DEFINITION FIX)
        (:DEFINITION NOT)
        (:DEFINITION O-FINP)
        (:DEFINITION O<)
        (:ELIM CAR-CDR-ELIM)
        (:EXECUTABLE-COUNTERPART ACL2-COUNT)
        (:EXECUTABLE-COUNTERPART EQUAL)
        (:EXECUTABLE-COUNTERPART NOT)
        (:EXECUTABLE-COUNTERPART SYMBOLP)
        (:FAKE-RUNE-FOR-LINEAR NIL)
        (:FAKE-RUNE-FOR-TYPE-SET NIL)
        (:REWRITE CAR-CONS)
        (:REWRITE CDR-CONS)
        (:REWRITE UNICITY-OF-0)
        (:TYPE-PRESCRIPTION ACL2-COUNT)
        (:TYPE-PRESCRIPTION TRS_ISSORT[A0]))
Warnings:  None
Time:  0.02 seconds (prove: 0.01, print: 0.00, other: 0.01)
 TRS_ISSORT[A2]
ACL2 !>
For the admission of TRS_GE we will use the relation O< (which is known
to be well-founded on the domain recognized by O-P) and the measure
(ACL2-COUNT X0).  The non-trivial part of the measure conjecture is

Goal
(IMPLIES (AND (AND (TRS_ISSORT[A0] X0)
                   (TRS_ISSORT[A0] X1))
              (NOT (EQ (CAR X1) 'TRS_0))
              (NOT (AND (EQ (CAR X0) 'TRS_0)
                        (EQ (CAR X1) 'TRS_S)))
              T)
         (O< (ACL2-COUNT (CADR X0))
             (ACL2-COUNT X0))).

By the simple :definition EQ we reduce the conjecture to

Goal'
(IMPLIES (AND (TRS_ISSORT[A0] X0)
              (TRS_ISSORT[A0] X1)
              (NOT (EQUAL (CAR X1) 'TRS_0))
              (NOT (AND (EQUAL (CAR X0) 'TRS_0)
                        (EQUAL (CAR X1) 'TRS_S))))
         (O< (ACL2-COUNT (CADR X0))
             (ACL2-COUNT X0))).

This simplifies, using the :definitions ACL2-COUNT, FIX, O-FINP, O<
and TRS_ISSORT[A0], the :executable-counterparts of ACL2-COUNT and
EQUAL, primitive type reasoning, the :rewrite rules COMMUTATIVITY-OF-+
and UNICITY-OF-0 and the :type-prescription rule ACL2-COUNT, to

Goal''
(IMPLIES (AND (CONSP X0)
              (CONSP (CDR X0))
              (EQUAL 'TRS_S (CAR X0))
              (TRS_ISSORT[A0] (CADR X0))
              (NOT (CDDR X0))
              (TRS_ISSORT[A0] X1)
              (NOT (EQUAL (CAR X1) 'TRS_0)))
         (< (ACL2-COUNT (CADR X0))
            (+ 1 1 (ACL2-COUNT (CADR X0))))).

But simplification reduces this to T, using linear arithmetic, primitive
type reasoning and the :type-prescription rule ACL2-COUNT.

Q.E.D.

That completes the proof of the measure theorem for TRS_GE.  Thus,
we admit this function under the principle of definition.  We observe
that the type of TRS_GE is described by the theorem 
(AND (CONSP (TRS_GE X0 X1)) (TRUE-LISTP (TRS_GE X0 X1))).  

Summary
Form:  ( DEFUN TRS_GE ...)
Rules: ((:DEFINITION ACL2-COUNT)
        (:DEFINITION EQ)
        (:DEFINITION FIX)
        (:DEFINITION NOT)
        (:DEFINITION O-FINP)
        (:DEFINITION O<)
        (:DEFINITION TRS_ISSORT[A0])
        (:EXECUTABLE-COUNTERPART ACL2-COUNT)
        (:EXECUTABLE-COUNTERPART EQUAL)
        (:FAKE-RUNE-FOR-LINEAR NIL)
        (:FAKE-RUNE-FOR-TYPE-SET NIL)
        (:REWRITE COMMUTATIVITY-OF-+)
        (:REWRITE UNICITY-OF-0)
        (:TYPE-PRESCRIPTION ACL2-COUNT))
Warnings:  None
Time:  0.02 seconds (prove: 0.00, print: 0.00, other: 0.02)
 TRS_GE
ACL2 !>
Since TRS_EQUAL_SORT[A35] is non-recursive, its admission is trivial.
We observe that the type of TRS_EQUAL_SORT[A35] is described by the
theorem 
(AND (CONSP (TRS_EQUAL_SORT[A35] X0 X1))
     (TRUE-LISTP (TRS_EQUAL_SORT[A35] X0 X1))).

Summary
Form:  ( DEFUN TRS_EQUAL_SORT[A35] ...)
Rules: NIL
Warnings:  None
Time:  0.00 seconds (prove: 0.00, print: 0.00, other: 0.00)
 TRS_EQUAL_SORT[A35]
ACL2 !>
For the admission of TRS_EQUAL_SORT[A0] we will use the relation O<
(which is known to be well-founded on the domain recognized by O-P)
and the measure (ACL2-COUNT X0).  The non-trivial part of the measure
conjecture is

Goal
(IMPLIES (AND (AND (TRS_ISSORT[A0] X0)
                   (TRS_ISSORT[A0] X1))
              (NOT (AND (EQ (CAR X0) 'TRS_0)
                        (EQ (CAR X1) 'TRS_0)))
              (NOT (AND (EQ (CAR X0) 'TRS_0)
                        (EQ (CAR X1) 'TRS_S)))
              (NOT (AND (EQ (CAR X0) 'TRS_S)
                        (EQ (CAR X1) 'TRS_0)))
              T)
         (O< (ACL2-COUNT (CADR X0))
             (ACL2-COUNT X0))).

By the simple :definition EQ we reduce the conjecture to

Goal'
(IMPLIES (AND (TRS_ISSORT[A0] X0)
              (TRS_ISSORT[A0] X1)
              (NOT (AND (EQUAL (CAR X0) 'TRS_0)
                        (EQUAL (CAR X1) 'TRS_0)))
              (NOT (AND (EQUAL (CAR X0) 'TRS_0)
                        (EQUAL (CAR X1) 'TRS_S)))
              (NOT (AND (EQUAL (CAR X0) 'TRS_S)
                        (EQUAL (CAR X1) 'TRS_0))))
         (O< (ACL2-COUNT (CADR X0))
             (ACL2-COUNT X0))).

This simplifies, using the :definitions ACL2-COUNT, FIX, O-FINP, O<
and TRS_ISSORT[A0], the :executable-counterparts of ACL2-COUNT and
EQUAL, primitive type reasoning, the :rewrite rules COMMUTATIVITY-OF-+
and UNICITY-OF-0 and the :type-prescription rule ACL2-COUNT, to

Goal''
(IMPLIES (AND (CONSP X0)
              (CONSP (CDR X0))
              (EQUAL 'TRS_S (CAR X0))
              (TRS_ISSORT[A0] (CADR X0))
              (NOT (CDDR X0))
              (TRS_ISSORT[A0] X1)
              (NOT (EQUAL (CAR X1) 'TRS_0)))
         (< (ACL2-COUNT (CADR X0))
            (+ 1 1 (ACL2-COUNT (CADR X0))))).

But simplification reduces this to T, using linear arithmetic, primitive
type reasoning and the :type-prescription rule ACL2-COUNT.

Q.E.D.

That completes the proof of the measure theorem for TRS_EQUAL_SORT[A0].
Thus, we admit this function under the principle of definition.  We
observe that the type of TRS_EQUAL_SORT[A0] is described by the theorem
(AND (CONSP (TRS_EQUAL_SORT[A0] X0 X1))
     (TRUE-LISTP (TRS_EQUAL_SORT[A0] X0 X1))).
We used the :executable-counterpart of EQUAL and primitive type reasoning.

Summary
Form:  ( DEFUN TRS_EQUAL_SORT[A0] ...)
Rules: ((:DEFINITION ACL2-COUNT)
        (:DEFINITION EQ)
        (:DEFINITION FIX)
        (:DEFINITION NOT)
        (:DEFINITION O-FINP)
        (:DEFINITION O<)
        (:DEFINITION TRS_ISSORT[A0])
        (:EXECUTABLE-COUNTERPART ACL2-COUNT)
        (:EXECUTABLE-COUNTERPART EQUAL)
        (:FAKE-RUNE-FOR-LINEAR NIL)
        (:FAKE-RUNE-FOR-TYPE-SET NIL)
        (:REWRITE COMMUTATIVITY-OF-+)
        (:REWRITE UNICITY-OF-0)
        (:TYPE-PRESCRIPTION ACL2-COUNT))
Warnings:  None
Time:  0.02 seconds (prove: 0.01, print: 0.00, other: 0.01)
 TRS_EQUAL_SORT[A0]
ACL2 !>
Since TRS_ISA_FALSE is non-recursive, its admission is trivial.  We
observe that the type of TRS_ISA_FALSE is described by the theorem
(AND (CONSP (TRS_ISA_FALSE X0)) (TRUE-LISTP (TRS_ISA_FALSE X0))). 

Summary
Form:  ( DEFUN TRS_ISA_FALSE ...)
Rules: NIL
Warnings:  None
Time:  0.00 seconds (prove: 0.00, print: 0.00, other: 0.00)
 TRS_ISA_FALSE
ACL2 !>
Since TRS_ISA_TRUE is non-recursive, its admission is trivial.  We
observe that the type of TRS_ISA_TRUE is described by the theorem 
(AND (CONSP (TRS_ISA_TRUE X0)) (TRUE-LISTP (TRS_ISA_TRUE X0))).  

Summary
Form:  ( DEFUN TRS_ISA_TRUE ...)
Rules: NIL
Warnings:  None
Time:  0.01 seconds (prove: 0.00, print: 0.00, other: 0.01)
 TRS_ISA_TRUE
ACL2 !>
Since TRS_NOT is non-recursive, its admission is trivial.  We observe
that the type of TRS_NOT is described by the theorem 
(AND (CONSP (TRS_NOT X0)) (TRUE-LISTP (TRS_NOT X0))).  

Summary
Form:  ( DEFUN TRS_NOT ...)
Rules: NIL
Warnings:  None
Time:  0.00 seconds (prove: 0.00, print: 0.00, other: 0.00)
 TRS_NOT
ACL2 !>
Since TRS_OR is non-recursive, its admission is trivial.  We observe
that the type of TRS_OR is described by the theorem 
(OR (AND (CONSP (TRS_OR X0 X1))
         (TRUE-LISTP (TRS_OR X0 X1)))
    (EQUAL (TRS_OR X0 X1) X1)).

Summary
Form:  ( DEFUN TRS_OR ...)
Rules: NIL
Warnings:  None
Time:  0.00 seconds (prove: 0.00, print: 0.00, other: 0.00)
 TRS_OR
ACL2 !>
Since TRS_AND is non-recursive, its admission is trivial.  We observe
that the type of TRS_AND is described by the theorem 
(OR (AND (CONSP (TRS_AND X0 X1))
         (TRUE-LISTP (TRS_AND X0 X1)))
    (EQUAL (TRS_AND X0 X1) X1)).

Summary
Form:  ( DEFUN TRS_AND ...)
Rules: NIL
Warnings:  None
Time:  0.01 seconds (prove: 0.00, print: 0.01, other: 0.00)
 TRS_AND
ACL2 !>
Since TRS_EQUAL_BOOL is non-recursive, its admission is trivial.  We
observe that the type of TRS_EQUAL_BOOL is described by the theorem
(AND (CONSP (TRS_EQUAL_BOOL X0 X1)) (TRUE-LISTP (TRS_EQUAL_BOOL X0 X1))).
We used the :executable-counterpart of EQUAL and primitive type reasoning.

Summary
Form:  ( DEFUN TRS_EQUAL_BOOL ...)
Rules: ((:EXECUTABLE-COUNTERPART EQUAL)
        (:FAKE-RUNE-FOR-TYPE-SET NIL))
Warnings:  None
Time:  0.00 seconds (prove: 0.00, print: 0.00, other: 0.00)
 TRS_EQUAL_BOOL
ACL2 !>
For the admission of TRS_IF1 we will use the relation O< (which is
known to be well-founded on the domain recognized by O-P) and the measure
(ACL2-COUNT X3).  The non-trivial part of the measure conjecture is

Goal
(AND (IMPLIES (AND (AND (TRS_ISBOOL X0)
                        (TRS_ISSORT[A0] X1)
                        (TRS_ISSORT[A0] X2)
                        (TRS_ISSORT[A2] X3))
                   (AND (EQ (CAR X0) 'TRS_TRUE)
                        (EQ (CAR X3) 'TRS_CONS)))
              (O< (ACL2-COUNT (CADDR X3))
                  (ACL2-COUNT X3)))
     (IMPLIES (AND (AND (TRS_ISBOOL X0)
                        (TRS_ISSORT[A0] X1)
                        (TRS_ISSORT[A0] X2)
                        (TRS_ISSORT[A2] X3))
                   (NOT (AND (EQ (CAR X0) 'TRS_TRUE)
                             (EQ (CAR X3) 'TRS_NIL)))
                   (AND (EQ (CAR X0) 'TRS_FALSE)
                        (EQ (CAR X3) 'TRS_CONS)))
              (O< (ACL2-COUNT (CADDR X3))
                  (ACL2-COUNT X3)))).

By the simple :definitions EQ and TRS_ISBOOL we reduce the conjecture
to the following two conjectures.

Subgoal 2
(IMPLIES (AND (CONSP X0)
              (COND ((EQUAL 'TRS_TRUE (CAR X0))
                     (EQUAL (CDR X0) NIL))
                    ((EQUAL 'TRS_FALSE (CAR X0))
                     (EQUAL (CDR X0) NIL))
                    (T NIL))
              (TRS_ISSORT[A0] X1)
              (TRS_ISSORT[A0] X2)
              (TRS_ISSORT[A2] X3)
              (EQUAL (CAR X0) 'TRS_TRUE)
              (EQUAL (CAR X3) 'TRS_CONS))
         (O< (ACL2-COUNT (CADDR X3))
             (ACL2-COUNT X3))).

This simplifies, using the :definitions ACL2-COUNT, FIX, O-FINP, O<
and TRS_ISSORT[A2], the :executable-counterparts of ACL2-COUNT and
EQUAL, primitive type reasoning, the :rewrite rule UNICITY-OF-0 and
the :type-prescription rule ACL2-COUNT, to

Subgoal 2'
(IMPLIES (AND (CONSP X0)
              (NOT (CDR X0))
              (TRS_ISSORT[A0] X1)
              (TRS_ISSORT[A0] X2)
              (CONSP X3)
              (CONSP (CDR X3))
              (CONSP (CDDR X3))
              (TRS_ISSORT[A0] (CADR X3))
              (TRS_ISSORT[A2] (CADDR X3))
              (NOT (CDDDR X3))
              (EQUAL (CAR X0) 'TRS_TRUE)
              (EQUAL (CAR X3) 'TRS_CONS))
         (< (ACL2-COUNT (CADDR X3))
            (+ 1 (ACL2-COUNT (CDR X3))))).

This simplifies, using the :definitions ACL2-COUNT and FIX, the :executable-
counterpart of ACL2-COUNT, the :rewrite rules COMMUTATIVITY-OF-+ and
UNICITY-OF-0 and the :type-prescription rule ACL2-COUNT, to

Subgoal 2''
(IMPLIES (AND (CONSP X0)
              (NOT (CDR X0))
              (TRS_ISSORT[A0] X1)
              (TRS_ISSORT[A0] X2)
              (CONSP X3)
              (CONSP (CDR X3))
              (CONSP (CDDR X3))
              (TRS_ISSORT[A0] (CADR X3))
              (TRS_ISSORT[A2] (CADDR X3))
              (NOT (CDDDR X3))
              (EQUAL (CAR X0) 'TRS_TRUE)
              (EQUAL (CAR X3) 'TRS_CONS))
         (< (ACL2-COUNT (CADDR X3))
            (+ 1 1 (ACL2-COUNT (CADR X3))
               1 (ACL2-COUNT (CADDR X3))))).

But simplification reduces this to T, using linear arithmetic, primitive
type reasoning and the :type-prescription rule ACL2-COUNT.

Subgoal 1
(IMPLIES (AND (CONSP X0)
              (COND ((EQUAL 'TRS_TRUE (CAR X0))
                     (EQUAL (CDR X0) NIL))
                    ((EQUAL 'TRS_FALSE (CAR X0))
                     (EQUAL (CDR X0) NIL))
                    (T NIL))
              (TRS_ISSORT[A0] X1)
              (TRS_ISSORT[A0] X2)
              (TRS_ISSORT[A2] X3)
              (NOT (AND (EQUAL (CAR X0) 'TRS_TRUE)
                        (EQUAL (CAR X3) 'TRS_NIL)))
              (EQUAL (CAR X0) 'TRS_FALSE)
              (EQUAL (CAR X3) 'TRS_CONS))
         (O< (ACL2-COUNT (CADDR X3))
             (ACL2-COUNT X3))).

This simplifies, using the :definitions ACL2-COUNT, FIX, O-FINP, O<
and TRS_ISSORT[A2], the :executable-counterparts of ACL2-COUNT and
EQUAL, primitive type reasoning, the :rewrite rule UNICITY-OF-0 and
the :type-prescription rule ACL2-COUNT, to

Subgoal 1'
(IMPLIES (AND (CONSP X0)
              (NOT (CDR X0))
              (TRS_ISSORT[A0] X1)
              (TRS_ISSORT[A0] X2)
              (CONSP X3)
              (CONSP (CDR X3))
              (CONSP (CDDR X3))
              (TRS_ISSORT[A0] (CADR X3))
              (TRS_ISSORT[A2] (CADDR X3))
              (NOT (CDDDR X3))
              (EQUAL (CAR X0) 'TRS_FALSE)
              (EQUAL (CAR X3) 'TRS_CONS))
         (< (ACL2-COUNT (CADDR X3))
            (+ 1 (ACL2-COUNT (CDR X3))))).

This simplifies, using the :definitions ACL2-COUNT and FIX, the :executable-
counterpart of ACL2-COUNT, the :rewrite rules COMMUTATIVITY-OF-+ and
UNICITY-OF-0 and the :type-prescription rule ACL2-COUNT, to

Subgoal 1''
(IMPLIES (AND (CONSP X0)
              (NOT (CDR X0))
              (TRS_ISSORT[A0] X1)
              (TRS_ISSORT[A0] X2)
              (CONSP X3)
              (CONSP (CDR X3))
              (CONSP (CDDR X3))
              (TRS_ISSORT[A0] (CADR X3))
              (TRS_ISSORT[A2] (CADDR X3))
              (NOT (CDDDR X3))
              (EQUAL (CAR X0) 'TRS_FALSE)
              (EQUAL (CAR X3) 'TRS_CONS))
         (< (ACL2-COUNT (CADDR X3))
            (+ 1 1 (ACL2-COUNT (CADR X3))
               1 (ACL2-COUNT (CADDR X3))))).

But simplification reduces this to T, using linear arithmetic, primitive
type reasoning and the :type-prescription rule ACL2-COUNT.

Q.E.D.

That completes the proof of the measure theorem for TRS_IF1.  Thus,
we admit this function under the principle of definition.  We observe
that the type of TRS_IF1 is described by the theorem 
(AND (CONSP (TRS_IF1 X0 X1 X2 X3)) (TRUE-LISTP (TRS_IF1 X0 X1 X2 X3))).
We used the :executable-counterpart of EQUAL and primitive type reasoning.

Summary
Form:  ( DEFUN TRS_IF1 ...)
Rules: ((:DEFINITION ACL2-COUNT)
        (:DEFINITION EQ)
        (:DEFINITION FIX)
        (:DEFINITION NOT)
        (:DEFINITION O-FINP)
        (:DEFINITION O<)
        (:DEFINITION TRS_ISBOOL)
        (:DEFINITION TRS_ISSORT[A2])
        (:EXECUTABLE-COUNTERPART ACL2-COUNT)
        (:EXECUTABLE-COUNTERPART EQUAL)
        (:FAKE-RUNE-FOR-LINEAR NIL)
        (:FAKE-RUNE-FOR-TYPE-SET NIL)
        (:REWRITE COMMUTATIVITY-OF-+)
        (:REWRITE UNICITY-OF-0)
        (:TYPE-PRESCRIPTION ACL2-COUNT))
Warnings:  None
Time:  0.03 seconds (prove: 0.02, print: 0.00, other: 0.01)
 TRS_IF1
ACL2 !>
For the admission of TRS_IF1PRIME we will use the relation O< (which
is known to be well-founded on the domain recognized by O-P) and the
measure (ACL2-COUNT X3).  The non-trivial part of the measure conjecture
is

Goal
(IMPLIES (AND (AND (TRS_ISBOOL X0)
                   (TRS_ISSORT[A0] X1)
                   (TRS_ISSORT[A0] X2)
                   (TRS_ISSORT[A2] X3))
              (NOT (EQ (CAR X0) 'TRS_TRUE))
              (AND (EQ (CAR X0) 'TRS_FALSE)
                   (EQ (CAR X3) 'TRS_CONS)))
         (O< (ACL2-COUNT (CADDR X3))
             (ACL2-COUNT X3))).

By the simple :definitions EQ and TRS_ISBOOL we reduce the conjecture
to

Goal'
(IMPLIES (AND (CONSP X0)
              (COND ((EQUAL 'TRS_TRUE (CAR X0))
                     (EQUAL (CDR X0) NIL))
                    ((EQUAL 'TRS_FALSE (CAR X0))
                     (EQUAL (CDR X0) NIL))
                    (T NIL))
              (TRS_ISSORT[A0] X1)
              (TRS_ISSORT[A0] X2)
              (TRS_ISSORT[A2] X3)
              (NOT (EQUAL (CAR X0) 'TRS_TRUE))
              (EQUAL (CAR X0) 'TRS_FALSE)
              (EQUAL (CAR X3) 'TRS_CONS))
         (O< (ACL2-COUNT (CADDR X3))
             (ACL2-COUNT X3))).

This simplifies, using the :definitions ACL2-COUNT, FIX, O-FINP, O<
and TRS_ISSORT[A2], the :executable-counterparts of ACL2-COUNT and
EQUAL, primitive type reasoning, the :rewrite rule UNICITY-OF-0 and
the :type-prescription rule ACL2-COUNT, to

Goal''
(IMPLIES (AND (CONSP X0)
              (NOT (CDR X0))
              (TRS_ISSORT[A0] X1)
              (TRS_ISSORT[A0] X2)
              (CONSP X3)
              (CONSP (CDR X3))
              (CONSP (CDDR X3))
              (TRS_ISSORT[A0] (CADR X3))
              (TRS_ISSORT[A2] (CADDR X3))
              (NOT (CDDDR X3))
              (EQUAL (CAR X0) 'TRS_FALSE)
              (EQUAL (CAR X3) 'TRS_CONS))
         (< (ACL2-COUNT (CADDR X3))
            (+ 1 (ACL2-COUNT (CDR X3))))).

This simplifies, using the :definitions ACL2-COUNT and FIX, the :executable-
counterpart of ACL2-COUNT, the :rewrite rules COMMUTATIVITY-OF-+ and
UNICITY-OF-0 and the :type-prescription rule ACL2-COUNT, to

Goal'''
(IMPLIES (AND (CONSP X0)
              (NOT (CDR X0))
              (TRS_ISSORT[A0] X1)
              (TRS_ISSORT[A0] X2)
              (CONSP X3)
              (CONSP (CDR X3))
              (CONSP (CDDR X3))
              (TRS_ISSORT[A0] (CADR X3))
              (TRS_ISSORT[A2] (CADDR X3))
              (NOT (CDDDR X3))
              (EQUAL (CAR X0) 'TRS_FALSE)
              (EQUAL (CAR X3) 'TRS_CONS))
         (< (ACL2-COUNT (CADDR X3))
            (+ 1 1 (ACL2-COUNT (CADR X3))
               1 (ACL2-COUNT (CADDR X3))))).

But simplification reduces this to T, using linear arithmetic, primitive
type reasoning and the :type-prescription rule ACL2-COUNT.

Q.E.D.

That completes the proof of the measure theorem for TRS_IF1PRIME. 
Thus, we admit this function under the principle of definition.  We
observe that the type of TRS_IF1PRIME is described by the theorem 
(AND (CONSP (TRS_IF1PRIME X0 X1 X2 X3))
     (TRUE-LISTP (TRS_IF1PRIME X0 X1 X2 X3))).

Summary
Form:  ( DEFUN TRS_IF1PRIME ...)
Rules: ((:DEFINITION ACL2-COUNT)
        (:DEFINITION EQ)
        (:DEFINITION FIX)
        (:DEFINITION NOT)
        (:DEFINITION O-FINP)
        (:DEFINITION O<)
        (:DEFINITION TRS_ISBOOL)
        (:DEFINITION TRS_ISSORT[A2])
        (:EXECUTABLE-COUNTERPART ACL2-COUNT)
        (:EXECUTABLE-COUNTERPART EQUAL)
        (:FAKE-RUNE-FOR-LINEAR NIL)
        (:FAKE-RUNE-FOR-TYPE-SET NIL)
        (:REWRITE COMMUTATIVITY-OF-+)
        (:REWRITE UNICITY-OF-0)
        (:TYPE-PRESCRIPTION ACL2-COUNT))
Warnings:  None
Time:  0.02 seconds (prove: 0.01, print: 0.00, other: 0.01)
 TRS_IF1PRIME
ACL2 !>
For the admission of TRS_FILTERLOW we will use the relation O< (which
is known to be well-founded on the domain recognized by O-P) and the
measure (ACL2-COUNT X1).  The non-trivial part of the measure conjecture
is

Goal
(AND (IMPLIES (AND (AND (TRS_ISSORT[A0] X0)
                        (TRS_ISSORT[A2] X1))
                   (NOT (EQ (CAR X1) 'TRS_NIL))
                   (EQ (TRS_EQUAL_BOOL (TRS_GE X0 (CADR X1))
                                       '(TRS_TRUE))
                       '(TRS_FALSE)))
              (O< (ACL2-COUNT (CADDR X1))
                  (ACL2-COUNT X1)))
     (IMPLIES (AND (AND (TRS_ISSORT[A0] X0)
                        (TRS_ISSORT[A2] X1))
                   (NOT (EQ (CAR X1) 'TRS_NIL))
                   (AND (EQ (CAR X1) 'TRS_CONS)
                        (EQ (TRS_EQUAL_BOOL (TRS_GE X0 (CADR X1))
                                            '(TRS_TRUE))
                            '(TRS_TRUE))))
              (O< (ACL2-COUNT (CADDR X1))
                  (ACL2-COUNT X1)))).

By the simple :definition EQ we reduce the conjecture to the following
two conjectures.

Subgoal 2
(IMPLIES (AND (TRS_ISSORT[A0] X0)
              (TRS_ISSORT[A2] X1)
              (NOT (EQUAL (CAR X1) 'TRS_NIL))
              (EQUAL (TRS_EQUAL_BOOL (TRS_GE X0 (CADR X1))
                                     '(TRS_TRUE))
                     '(TRS_FALSE)))
         (O< (ACL2-COUNT (CADDR X1))
             (ACL2-COUNT X1))).

This simplifies, using the :definitions ACL2-COUNT, FIX, O-FINP, O<,
TRS_EQUAL_BOOL, TRS_ISBOOL and TRS_ISSORT[A2], the :executable-counterparts
of ACL2-COUNT, CAR, EQUAL and TRS_ISBOOL, primitive type reasoning,
the :rewrite rules COMMUTATIVITY-OF-+ and UNICITY-OF-0 and the :type-
prescription rules ACL2-COUNT and TRS_GE, to

Subgoal 2'
(IMPLIES (AND (TRS_ISSORT[A0] X0)
              (CONSP X1)
              (CONSP (CDR X1))
              (CONSP (CDDR X1))
              (EQUAL 'TRS_CONS (CAR X1))
              (TRS_ISSORT[A0] (CADR X1))
              (TRS_ISSORT[A2] (CADDR X1))
              (NOT (CDDDR X1))
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE X0 (CADR X1))))
              (NOT (CDR (TRS_GE X0 (CADR X1)))))
         (< (ACL2-COUNT (CADDR X1))
            (+ 1 1 (ACL2-COUNT (CADR X1))
               1 (ACL2-COUNT (CADDR X1))))).

But simplification reduces this to T, using linear arithmetic, primitive
type reasoning and the :type-prescription rule ACL2-COUNT.

Subgoal 1
(IMPLIES (AND (TRS_ISSORT[A0] X0)
              (TRS_ISSORT[A2] X1)
              (NOT (EQUAL (CAR X1) 'TRS_NIL))
              (EQUAL (CAR X1) 'TRS_CONS)
              (EQUAL (TRS_EQUAL_BOOL (TRS_GE X0 (CADR X1))
                                     '(TRS_TRUE))
                     '(TRS_TRUE)))
         (O< (ACL2-COUNT (CADDR X1))
             (ACL2-COUNT X1))).

This simplifies, using the :definitions ACL2-COUNT, FIX, O-FINP, O<,
TRS_EQUAL_BOOL, TRS_ISBOOL and TRS_ISSORT[A2], the :executable-counterparts
of ACL2-COUNT, CAR, EQUAL and TRS_ISBOOL, primitive type reasoning,
the :rewrite rules COMMUTATIVITY-OF-+ and UNICITY-OF-0 and the :type-
prescription rules ACL2-COUNT and TRS_GE, to the following three conjectures.

Subgoal 1.3
(IMPLIES (AND (TRS_ISSORT[A0] X0)
              (CONSP X1)
              (CONSP (CDR X1))
              (CONSP (CDDR X1))
              (TRS_ISSORT[A0] (CADR X1))
              (TRS_ISSORT[A2] (CADDR X1))
              (NOT (CDDDR X1))
              (EQUAL (CAR X1) 'TRS_CONS)
              (EQUAL 'TRS_TRUE
                     (CAR (TRS_GE X0 (CADR X1)))))
         (< (ACL2-COUNT (CADDR X1))
            (+ 1 1 (ACL2-COUNT (CADR X1))
               1 (ACL2-COUNT (CADDR X1))))).

But simplification reduces this to T, using linear arithmetic, primitive
type reasoning and the :type-prescription rule ACL2-COUNT.

Subgoal 1.2
(IMPLIES (AND (TRS_ISSORT[A0] X0)
              (CONSP X1)
              (CONSP (CDR X1))
              (CONSP (CDDR X1))
              (TRS_ISSORT[A0] (CADR X1))
              (TRS_ISSORT[A2] (CADDR X1))
              (NOT (CDDDR X1))
              (EQUAL (CAR X1) 'TRS_CONS)
              (CDR (TRS_GE X0 (CADR X1))))
         (< (ACL2-COUNT (CADDR X1))
            (+ 1 1 (ACL2-COUNT (CADR X1))
               1 (ACL2-COUNT (CADDR X1))))).

But simplification reduces this to T, using linear arithmetic, primitive
type reasoning and the :type-prescription rule ACL2-COUNT.

Subgoal 1.1
(IMPLIES (AND (TRS_ISSORT[A0] X0)
              (CONSP X1)
              (CONSP (CDR X1))
              (CONSP (CDDR X1))
              (TRS_ISSORT[A0] (CADR X1))
              (TRS_ISSORT[A2] (CADDR X1))
              (NOT (CDDDR X1))
              (EQUAL (CAR X1) 'TRS_CONS)
              (NOT (EQUAL 'TRS_FALSE
                          (CAR (TRS_GE X0 (CADR X1))))))
         (< (ACL2-COUNT (CADDR X1))
            (+ 1 1 (ACL2-COUNT (CADR X1))
               1 (ACL2-COUNT (CADDR X1))))).

But simplification reduces this to T, using linear arithmetic, primitive
type reasoning and the :type-prescription rule ACL2-COUNT.

Q.E.D.

That completes the proof of the measure theorem for TRS_FILTERLOW.
Thus, we admit this function under the principle of definition.  We
observe that the type of TRS_FILTERLOW is described by the theorem
(AND (CONSP (TRS_FILTERLOW X0 X1)) (TRUE-LISTP (TRS_FILTERLOW X0 X1))).
We used primitive type reasoning.

Summary
Form:  ( DEFUN TRS_FILTERLOW ...)
Rules: ((:DEFINITION ACL2-COUNT)
        (:DEFINITION EQ)
        (:DEFINITION FIX)
        (:DEFINITION NOT)
        (:DEFINITION O-FINP)
        (:DEFINITION O<)
        (:DEFINITION TRS_EQUAL_BOOL)
        (:DEFINITION TRS_ISBOOL)
        (:DEFINITION TRS_ISSORT[A2])
        (:EXECUTABLE-COUNTERPART ACL2-COUNT)
        (:EXECUTABLE-COUNTERPART CAR)
        (:EXECUTABLE-COUNTERPART EQUAL)
        (:EXECUTABLE-COUNTERPART TRS_ISBOOL)
        (:FAKE-RUNE-FOR-LINEAR NIL)
        (:FAKE-RUNE-FOR-TYPE-SET NIL)
        (:REWRITE COMMUTATIVITY-OF-+)
        (:REWRITE UNICITY-OF-0)
        (:TYPE-PRESCRIPTION ACL2-COUNT)
        (:TYPE-PRESCRIPTION TRS_GE))
Warnings:  None
Time:  0.02 seconds (prove: 0.01, print: 0.00, other: 0.01)
 TRS_FILTERLOW
ACL2 !>
For the admission of TRS_FILTERLOWPRIME we will use the relation O<
(which is known to be well-founded on the domain recognized by O-P)
and the measure (ACL2-COUNT X1).  The non-trivial part of the measure
conjecture is

Goal
(IMPLIES (AND (AND (TRS_ISSORT[A0] X0)
                   (TRS_ISSORT[A2] X1))
              (NOT (EQ (CAR X1) 'TRS_NIL))
              (NOT (AND (EQ (CAR X1) 'TRS_CONS)
                        (EQ (TRS_EQUAL_BOOL (TRS_GE X0 (CADR X1))
                                            '(TRS_TRUE))
                            '(TRS_TRUE))))
              (EQ (TRS_EQUAL_BOOL (TRS_GE X0 (CADR X1))
                                  '(TRS_TRUE))
                  '(TRS_FALSE)))
         (O< (ACL2-COUNT (CADDR X1))
             (ACL2-COUNT X1))).

By the simple :definition EQ we reduce the conjecture to

Goal'
(IMPLIES (AND (TRS_ISSORT[A0] X0)
              (TRS_ISSORT[A2] X1)
              (NOT (EQUAL (CAR X1) 'TRS_NIL))
              (NOT (AND (EQUAL (CAR X1) 'TRS_CONS)
                        (EQUAL (TRS_EQUAL_BOOL (TRS_GE X0 (CADR X1))
                                               '(TRS_TRUE))
                               '(TRS_TRUE))))
              (EQUAL (TRS_EQUAL_BOOL (TRS_GE X0 (CADR X1))
                                     '(TRS_TRUE))
                     '(TRS_FALSE)))
         (O< (ACL2-COUNT (CADDR X1))
             (ACL2-COUNT X1))).

This simplifies, using the :definitions ACL2-COUNT, FIX, O-FINP, O<,
TRS_EQUAL_BOOL, TRS_ISBOOL and TRS_ISSORT[A2], the :executable-counterparts
of ACL2-COUNT, CAR, EQUAL and TRS_ISBOOL, primitive type reasoning,
the :rewrite rules COMMUTATIVITY-OF-+ and UNICITY-OF-0 and the :type-
prescription rules ACL2-COUNT and TRS_GE, to

Goal''
(IMPLIES (AND (TRS_ISSORT[A0] X0)
              (CONSP X1)
              (CONSP (CDR X1))
              (CONSP (CDDR X1))
              (EQUAL 'TRS_CONS (CAR X1))
              (TRS_ISSORT[A0] (CADR X1))
              (TRS_ISSORT[A2] (CADDR X1))
              (NOT (CDDDR X1))
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE X0 (CADR X1))))
              (NOT (CDR (TRS_GE X0 (CADR X1)))))
         (< (ACL2-COUNT (CADDR X1))
            (+ 1 1 (ACL2-COUNT (CADR X1))
               1 (ACL2-COUNT (CADDR X1))))).

But simplification reduces this to T, using linear arithmetic, primitive
type reasoning and the :type-prescription rule ACL2-COUNT.

Q.E.D.

That completes the proof of the measure theorem for TRS_FILTERLOWPRIME.
Thus, we admit this function under the principle of definition.  We
observe that the type of TRS_FILTERLOWPRIME is described by the theorem
(AND (CONSP (TRS_FILTERLOWPRIME X0 X1))
     (TRUE-LISTP (TRS_FILTERLOWPRIME X0 X1))).

Summary
Form:  ( DEFUN TRS_FILTERLOWPRIME ...)
Rules: ((:DEFINITION ACL2-COUNT)
        (:DEFINITION EQ)
        (:DEFINITION FIX)
        (:DEFINITION NOT)
        (:DEFINITION O-FINP)
        (:DEFINITION O<)
        (:DEFINITION TRS_EQUAL_BOOL)
        (:DEFINITION TRS_ISBOOL)
        (:DEFINITION TRS_ISSORT[A2])
        (:EXECUTABLE-COUNTERPART ACL2-COUNT)
        (:EXECUTABLE-COUNTERPART CAR)
        (:EXECUTABLE-COUNTERPART EQUAL)
        (:EXECUTABLE-COUNTERPART TRS_ISBOOL)
        (:FAKE-RUNE-FOR-LINEAR NIL)
        (:FAKE-RUNE-FOR-TYPE-SET NIL)
        (:REWRITE COMMUTATIVITY-OF-+)
        (:REWRITE UNICITY-OF-0)
        (:TYPE-PRESCRIPTION ACL2-COUNT)
        (:TYPE-PRESCRIPTION TRS_GE))
Warnings:  None
Time:  0.01 seconds (prove: 0.00, print: 0.00, other: 0.01)
 TRS_FILTERLOWPRIME
ACL2 !>
For the admission of TRS_EQUAL_SORT[A2] we will use the relation O<
(which is known to be well-founded on the domain recognized by O-P)
and the measure (ACL2-COUNT X0).  The non-trivial part of the measure
conjecture is

Goal
(AND (IMPLIES (AND (AND (TRS_ISSORT[A2] X0)
                        (TRS_ISSORT[A2] X1))
                   (AND (EQ (CAR X0) 'TRS_CONS)
                        (EQ (CAR X1) 'TRS_CONS)))
              (O< (ACL2-COUNT (CADDR X0))
                  (ACL2-COUNT X0)))
     (IMPLIES (AND (AND (TRS_ISSORT[A2] X0)
                        (TRS_ISSORT[A2] X1))
                   (AND (EQ (CAR X0) 'TRS_CONS)
                        (EQ (CAR X1) 'TRS_CONS)))
              (O< (ACL2-COUNT (CADR X0))
                  (ACL2-COUNT X0)))).

By the simple :definition EQ we reduce the conjecture to the following
two conjectures.

Subgoal 2
(IMPLIES (AND (TRS_ISSORT[A2] X0)
              (TRS_ISSORT[A2] X1)
              (EQUAL (CAR X0) 'TRS_CONS)
              (EQUAL (CAR X1) 'TRS_CONS))
         (O< (ACL2-COUNT (CADDR X0))
             (ACL2-COUNT X0))).

This simplifies, using the :definitions ACL2-COUNT, FIX, O-FINP, O<
and TRS_ISSORT[A2], the :executable-counterparts of ACL2-COUNT and
EQUAL, primitive type reasoning, the :rewrite rule UNICITY-OF-0 and
the :type-prescription rule ACL2-COUNT, to

Subgoal 2'
(IMPLIES (AND (CONSP X0)
              (CONSP (CDR X0))
              (CONSP (CDDR X0))
              (TRS_ISSORT[A0] (CADR X0))
              (TRS_ISSORT[A2] (CADDR X0))
              (NOT (CDDDR X0))
              (TRS_ISSORT[A2] X1)
              (EQUAL (CAR X0) 'TRS_CONS)
              (EQUAL (CAR X1) 'TRS_CONS))
         (< (ACL2-COUNT (CADDR X0))
            (+ 1 (ACL2-COUNT (CDR X0))))).

This simplifies, using the :definitions ACL2-COUNT and FIX, the :executable-
counterpart of ACL2-COUNT, the :rewrite rules COMMUTATIVITY-OF-+ and
UNICITY-OF-0 and the :type-prescription rule ACL2-COUNT, to

Subgoal 2''
(IMPLIES (AND (CONSP X0)
              (CONSP (CDR X0))
              (CONSP (CDDR X0))
              (TRS_ISSORT[A0] (CADR X0))
              (TRS_ISSORT[A2] (CADDR X0))
              (NOT (CDDDR X0))
              (TRS_ISSORT[A2] X1)
              (EQUAL (CAR X0) 'TRS_CONS)
              (EQUAL (CAR X1) 'TRS_CONS))
         (< (ACL2-COUNT (CADDR X0))
            (+ 1 1 (ACL2-COUNT (CADR X0))
               1 (ACL2-COUNT (CADDR X0))))).

But simplification reduces this to T, using linear arithmetic, primitive
type reasoning and the :type-prescription rule ACL2-COUNT.

Subgoal 1
(IMPLIES (AND (TRS_ISSORT[A2] X0)
              (TRS_ISSORT[A2] X1)
              (EQUAL (CAR X0) 'TRS_CONS)
              (EQUAL (CAR X1) 'TRS_CONS))
         (O< (ACL2-COUNT (CADR X0))
             (ACL2-COUNT X0))).

This simplifies, using the :definitions O-FINP and O< and the :type-
prescription rule ACL2-COUNT, to

Subgoal 1'
(IMPLIES (AND (TRS_ISSORT[A2] X0)
              (TRS_ISSORT[A2] X1)
              (EQUAL (CAR X0) 'TRS_CONS)
              (EQUAL (CAR X1) 'TRS_CONS))
         (< (ACL2-COUNT (CADR X0))
            (ACL2-COUNT X0))).

The destructor terms (CAR X0) and (CDR X0) can be eliminated.  Furthermore,
those terms are at the root of a chain of two rounds of destructor
elimination. (1) Use CAR-CDR-ELIM to replace X0 by (CONS X2 X3), (CAR X0)
by X2 and (CDR X0) by X3 and restrict the type of the new variable
X2 to be that of the term it replaces.  (2) Use CAR-CDR-ELIM, again,
to replace X3 by (CONS X4 X5), (CAR X3) by X4 and (CDR X3) by X5. 
  These steps produce the following three goals.

Subgoal 1.3
(IMPLIES (AND (NOT (CONSP X0))
              (TRS_ISSORT[A2] X0)
              (TRS_ISSORT[A2] X1)
              (EQUAL (CAR X0) 'TRS_CONS)
              (EQUAL (CAR X1) 'TRS_CONS))
         (< (ACL2-COUNT (CADR X0))
            (ACL2-COUNT X0))).

But we reduce the conjecture to T, by primitive type reasoning.

Subgoal 1.2
(IMPLIES (AND (NOT (CONSP X3))
              (SYMBOLP X2)
              (NOT (EQUAL X2 T))
              (NOT (EQUAL X2 NIL))
              (CONSP (CONS X2 X3))
              (TRS_ISSORT[A2] (CONS X2 X3))
              (TRS_ISSORT[A2] X1)
              (EQUAL X2 'TRS_CONS)
              (EQUAL (CAR X1) 'TRS_CONS))
         (< (ACL2-COUNT (CAR X3))
            (ACL2-COUNT (CONS X2 X3)))).

By case analysis we reduce the conjecture to

Subgoal 1.2'
(IMPLIES (AND (NOT (CONSP X3))
              (SYMBOLP X2)
              (NOT (EQUAL X2 T))
              X2 (CONSP (CONS X2 X3))
              (TRS_ISSORT[A2] (CONS X2 X3))
              (TRS_ISSORT[A2] X1)
              (EQUAL X2 'TRS_CONS)
              (EQUAL (CAR X1) 'TRS_CONS))
         (< (ACL2-COUNT (CAR X3))
            (ACL2-COUNT (CONS X2 X3)))).

But simplification reduces this to T, using the :definition TRS_ISSORT[A2],
the :executable-counterparts of EQUAL, NOT and SYMBOLP, primitive type
reasoning and the :rewrite rules CAR-CONS and CDR-CONS.

Subgoal 1.1
(IMPLIES (AND (CONSP (CONS X4 X5))
              (SYMBOLP X2)
              (NOT (EQUAL X2 T))
              (NOT (EQUAL X2 NIL))
              (CONSP (LIST* X2 X4 X5))
              (TRS_ISSORT[A2] (LIST* X2 X4 X5))
              (TRS_ISSORT[A2] X1)
              (EQUAL X2 'TRS_CONS)
              (EQUAL (CAR X1) 'TRS_CONS))
         (< (ACL2-COUNT X4)
            (ACL2-COUNT (LIST* X2 X4 X5)))).

By case analysis we reduce the conjecture to

Subgoal 1.1'
(IMPLIES (AND (CONSP (CONS X4 X5))
              (SYMBOLP X2)
              (NOT (EQUAL X2 T))
              X2 (CONSP (LIST* X2 X4 X5))
              (TRS_ISSORT[A2] (LIST* X2 X4 X5))
              (TRS_ISSORT[A2] X1)
              (EQUAL X2 'TRS_CONS)
              (EQUAL (CAR X1) 'TRS_CONS))
         (< (ACL2-COUNT X4)
            (ACL2-COUNT (LIST* X2 X4 X5)))).

This simplifies, using the :definitions ACL2-COUNT, FIX and TRS_ISSORT[A2],
the :executable-counterparts of ACL2-COUNT, EQUAL, NOT and SYMBOLP,
primitive type reasoning, the :rewrite rules CAR-CONS, CDR-CONS and
UNICITY-OF-0 and the :type-prescription rule ACL2-COUNT, to

Subgoal 1.1''
(IMPLIES (AND (CONSP X5)
              (TRS_ISSORT[A0] X4)
              (TRS_ISSORT[A2] (CAR X5))
              (NOT (CDR X5))
              (TRS_ISSORT[A2] X1)
              (EQUAL (CAR X1) 'TRS_CONS))
         (< (ACL2-COUNT X4)
            (+ 1 1 (ACL2-COUNT X4)
               (ACL2-COUNT X5)))).

But simplification reduces this to T, using linear arithmetic, primitive
type reasoning and the :type-prescription rule ACL2-COUNT.

Q.E.D.

That completes the proof of the measure theorem for TRS_EQUAL_SORT[A2].
Thus, we admit this function under the principle of definition.  We
observe that the type of TRS_EQUAL_SORT[A2] is described by the theorem
(AND (CONSP (TRS_EQUAL_SORT[A2] X0 X1))
     (TRUE-LISTP (TRS_EQUAL_SORT[A2] X0 X1))).
We used the :executable-counterpart of EQUAL, primitive type reasoning
and the :type-prescription rule TRS_AND.

Summary
Form:  ( DEFUN TRS_EQUAL_SORT[A2] ...)
Rules: ((:DEFINITION ACL2-COUNT)
        (:DEFINITION EQ)
        (:DEFINITION FIX)
        (:DEFINITION NOT)
        (:DEFINITION O-FINP)
        (:DEFINITION O<)
        (:DEFINITION TRS_ISSORT[A2])
        (:ELIM CAR-CDR-ELIM)
        (:EXECUTABLE-COUNTERPART ACL2-COUNT)
        (:EXECUTABLE-COUNTERPART EQUAL)
        (:EXECUTABLE-COUNTERPART NOT)
        (:EXECUTABLE-COUNTERPART SYMBOLP)
        (:FAKE-RUNE-FOR-LINEAR NIL)
        (:FAKE-RUNE-FOR-TYPE-SET NIL)
        (:REWRITE CAR-CONS)
        (:REWRITE CDR-CONS)
        (:REWRITE COMMUTATIVITY-OF-+)
        (:REWRITE UNICITY-OF-0)
        (:TYPE-PRESCRIPTION ACL2-COUNT)
        (:TYPE-PRESCRIPTION TRS_AND))
Warnings:  None
Time:  0.02 seconds (prove: 0.02, print: 0.00, other: 0.00)
 TRS_EQUAL_SORT[A2]
ACL2 !>
[Note:  A hint was supplied for our processing of the goal above. 
Thanks!]

By the simple :definition EQ we reduce the conjecture to

Goal'
(IMPLIES (AND (TRS_ISSORT[A0] TRS_X)
              (TRS_ISSORT[A2] TRS_XS))
         (EQUAL (TRS_FILTERLOWPRIME TRS_X (LIST 'TRS_CONS TRS_X TRS_XS))
                '(TRS_TRUE))).

This simplifies, using the :definitions TRS_EQUAL_BOOL, TRS_FILTERLOWPRIME,
TRS_ISBOOL and TRS_ISSORT[A2], the :executable-counterparts of CAR,
EQUAL and TRS_ISBOOL, primitive type reasoning, the :rewrite rules
CAR-CONS and CDR-CONS and the :type-prescription rules TRS_GE, 
TRS_ISSORT[A0] and TRS_ISSORT[A2], to

Goal''
(IMPLIES (AND (TRS_ISSORT[A0] TRS_X)
              (TRS_ISSORT[A2] TRS_XS)
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE TRS_X TRS_X)))
              (NOT (CDR (TRS_GE TRS_X TRS_X))))
         (EQUAL (TRS_FILTERLOWPRIME TRS_X TRS_XS)
                '(TRS_TRUE))).

Name the formula above *1.

Perhaps we can prove *1 by induction.  Five induction schemes are suggested
by this conjecture.  Subsumption reduces that number to four.  These
merge into two derived induction schemes.  However, one of these is
flawed and so we are left with one viable candidate.  

We will induct according to a scheme suggested by 
(TRS_FILTERLOWPRIME TRS_X TRS_XS).  This suggestion was produced using
the :induction rules TRS_FILTERLOWPRIME and TRS_ISSORT[A2].  If we
let (:P TRS_X TRS_XS) denote *1 above then the induction scheme we'll
use is
(AND (IMPLIES (NOT (AND (TRS_ISSORT[A0] TRS_X)
                        (TRS_ISSORT[A2] TRS_XS)))
              (:P TRS_X TRS_XS))
     (IMPLIES (AND (AND (TRS_ISSORT[A0] TRS_X)
                        (TRS_ISSORT[A2] TRS_XS))
                   (NOT (EQ (CAR TRS_XS) 'TRS_NIL))
                   (NOT (AND (EQ (CAR TRS_XS) 'TRS_CONS)
                             (EQ (TRS_EQUAL_BOOL (TRS_GE TRS_X (CADR TRS_XS))
                                                 '(TRS_TRUE))
                                 '(TRS_TRUE))))
                   (NOT (EQ (TRS_EQUAL_BOOL (TRS_GE TRS_X (CADR TRS_XS))
                                            '(TRS_TRUE))
                            '(TRS_FALSE))))
              (:P TRS_X TRS_XS))
     (IMPLIES (AND (AND (TRS_ISSORT[A0] TRS_X)
                        (TRS_ISSORT[A2] TRS_XS))
                   (NOT (EQ (CAR TRS_XS) 'TRS_NIL))
                   (NOT (AND (EQ (CAR TRS_XS) 'TRS_CONS)
                             (EQ (TRS_EQUAL_BOOL (TRS_GE TRS_X (CADR TRS_XS))
                                                 '(TRS_TRUE))
                                 '(TRS_TRUE))))
                   (EQ (TRS_EQUAL_BOOL (TRS_GE TRS_X (CADR TRS_XS))
                                       '(TRS_TRUE))
                       '(TRS_FALSE))
                   (:P TRS_X (CADDR TRS_XS)))
              (:P TRS_X TRS_XS))
     (IMPLIES (AND (AND (TRS_ISSORT[A0] TRS_X)
                        (TRS_ISSORT[A2] TRS_XS))
                   (NOT (EQ (CAR TRS_XS) 'TRS_NIL))
                   (AND (EQ (CAR TRS_XS) 'TRS_CONS)
                        (EQ (TRS_EQUAL_BOOL (TRS_GE TRS_X (CADR TRS_XS))
                                            '(TRS_TRUE))
                            '(TRS_TRUE))))
              (:P TRS_X TRS_XS))
     (IMPLIES (AND (AND (TRS_ISSORT[A0] TRS_X)
                        (TRS_ISSORT[A2] TRS_XS))
                   (EQ (CAR TRS_XS) 'TRS_NIL))
              (:P TRS_X TRS_XS))).
This induction is justified by the same argument used to admit 
TRS_FILTERLOWPRIME.  When applied to the goal at hand the above induction
scheme produces five nontautological subgoals.

Subgoal *1/5
(IMPLIES (AND (AND (TRS_ISSORT[A0] TRS_X)
                   (TRS_ISSORT[A2] TRS_XS))
              (NOT (EQ (CAR TRS_XS) 'TRS_NIL))
              (NOT (AND (EQ (CAR TRS_XS) 'TRS_CONS)
                        (EQ (TRS_EQUAL_BOOL (TRS_GE TRS_X (CADR TRS_XS))
                                            '(TRS_TRUE))
                            '(TRS_TRUE))))
              (NOT (EQ (TRS_EQUAL_BOOL (TRS_GE TRS_X (CADR TRS_XS))
                                       '(TRS_TRUE))
                       '(TRS_FALSE)))
              (TRS_ISSORT[A0] TRS_X)
              (TRS_ISSORT[A2] TRS_XS)
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE TRS_X TRS_X)))
              (NOT (CDR (TRS_GE TRS_X TRS_X))))
         (EQUAL (TRS_FILTERLOWPRIME TRS_X TRS_XS)
                '(TRS_TRUE))).

By the simple :definition EQ we reduce the conjecture to

Subgoal *1/5'
(IMPLIES (AND (TRS_ISSORT[A0] TRS_X)
              (TRS_ISSORT[A2] TRS_XS)
              (NOT (EQUAL (CAR TRS_XS) 'TRS_NIL))
              (NOT (AND (EQUAL (CAR TRS_XS) 'TRS_CONS)
                        (EQUAL (TRS_EQUAL_BOOL (TRS_GE TRS_X (CADR TRS_XS))
                                               '(TRS_TRUE))
                               '(TRS_TRUE))))
              (NOT (EQUAL (TRS_EQUAL_BOOL (TRS_GE TRS_X (CADR TRS_XS))
                                          '(TRS_TRUE))
                          '(TRS_FALSE)))
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE TRS_X TRS_X)))
              (NOT (CDR (TRS_GE TRS_X TRS_X))))
         (EQUAL (TRS_FILTERLOWPRIME TRS_X TRS_XS)
                '(TRS_TRUE))).

But simplification reduces this to T, using the :definitions TRS_EQUAL_BOOL,
TRS_ISBOOL and TRS_ISSORT[A2], the :executable-counterparts of CAR,
EQUAL and TRS_ISBOOL, primitive type reasoning and the :type-prescription
rule TRS_GE.

Subgoal *1/4
(IMPLIES (AND (AND (TRS_ISSORT[A0] TRS_X)
                   (TRS_ISSORT[A2] TRS_XS))
              (NOT (EQ (CAR TRS_XS) 'TRS_NIL))
              (NOT (AND (EQ (CAR TRS_XS) 'TRS_CONS)
                        (EQ (TRS_EQUAL_BOOL (TRS_GE TRS_X (CADR TRS_XS))
                                            '(TRS_TRUE))
                            '(TRS_TRUE))))
              (EQ (TRS_EQUAL_BOOL (TRS_GE TRS_X (CADR TRS_XS))
                                  '(TRS_TRUE))
                  '(TRS_FALSE))
              (EQUAL (TRS_FILTERLOWPRIME TRS_X (CADDR TRS_XS))
                     '(TRS_TRUE))
              (TRS_ISSORT[A0] TRS_X)
              (TRS_ISSORT[A2] TRS_XS)
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE TRS_X TRS_X)))
              (NOT (CDR (TRS_GE TRS_X TRS_X))))
         (EQUAL (TRS_FILTERLOWPRIME TRS_X TRS_XS)
                '(TRS_TRUE))).

By the simple :definition EQ we reduce the conjecture to

Subgoal *1/4'
(IMPLIES (AND (TRS_ISSORT[A0] TRS_X)
              (TRS_ISSORT[A2] TRS_XS)
              (NOT (EQUAL (CAR TRS_XS) 'TRS_NIL))
              (NOT (AND (EQUAL (CAR TRS_XS) 'TRS_CONS)
                        (EQUAL (TRS_EQUAL_BOOL (TRS_GE TRS_X (CADR TRS_XS))
                                               '(TRS_TRUE))
                               '(TRS_TRUE))))
              (EQUAL (TRS_EQUAL_BOOL (TRS_GE TRS_X (CADR TRS_XS))
                                     '(TRS_TRUE))
                     '(TRS_FALSE))
              (EQUAL (TRS_FILTERLOWPRIME TRS_X (CADDR TRS_XS))
                     '(TRS_TRUE))
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE TRS_X TRS_X)))
              (NOT (CDR (TRS_GE TRS_X TRS_X))))
         (EQUAL (TRS_FILTERLOWPRIME TRS_X TRS_XS)
                '(TRS_TRUE))).

But simplification reduces this to T, using the :definitions TRS_EQUAL_BOOL,
TRS_FILTERLOWPRIME, TRS_ISBOOL and TRS_ISSORT[A2], the :executable-
counterparts of CAR, EQUAL and TRS_ISBOOL, primitive type reasoning
and the :type-prescription rules TRS_GE, TRS_ISSORT[A0] and TRS_ISSORT[A2].

Subgoal *1/3
(IMPLIES (AND (AND (TRS_ISSORT[A0] TRS_X)
                   (TRS_ISSORT[A2] TRS_XS))
              (NOT (EQ (CAR TRS_XS) 'TRS_NIL))
              (NOT (AND (EQ (CAR TRS_XS) 'TRS_CONS)
                        (EQ (TRS_EQUAL_BOOL (TRS_GE TRS_X (CADR TRS_XS))
                                            '(TRS_TRUE))
                            '(TRS_TRUE))))
              (EQ (TRS_EQUAL_BOOL (TRS_GE TRS_X (CADR TRS_XS))
                                  '(TRS_TRUE))
                  '(TRS_FALSE))
              (NOT (TRS_ISSORT[A2] (CADDR TRS_XS)))
              (TRS_ISSORT[A0] TRS_X)
              (TRS_ISSORT[A2] TRS_XS)
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE TRS_X TRS_X)))
              (NOT (CDR (TRS_GE TRS_X TRS_X))))
         (EQUAL (TRS_FILTERLOWPRIME TRS_X TRS_XS)
                '(TRS_TRUE))).

By the simple :definition EQ we reduce the conjecture to

Subgoal *1/3'
(IMPLIES (AND (TRS_ISSORT[A0] TRS_X)
              (TRS_ISSORT[A2] TRS_XS)
              (NOT (EQUAL (CAR TRS_XS) 'TRS_NIL))
              (NOT (AND (EQUAL (CAR TRS_XS) 'TRS_CONS)
                        (EQUAL (TRS_EQUAL_BOOL (TRS_GE TRS_X (CADR TRS_XS))
                                               '(TRS_TRUE))
                               '(TRS_TRUE))))
              (EQUAL (TRS_EQUAL_BOOL (TRS_GE TRS_X (CADR TRS_XS))
                                     '(TRS_TRUE))
                     '(TRS_FALSE))
              (NOT (TRS_ISSORT[A2] (CADDR TRS_XS)))
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE TRS_X TRS_X)))
              (NOT (CDR (TRS_GE TRS_X TRS_X))))
         (EQUAL (TRS_FILTERLOWPRIME TRS_X TRS_XS)
                '(TRS_TRUE))).

But simplification reduces this to T, using the :definition TRS_ISSORT[A2]
and the :executable-counterpart of EQUAL.

Subgoal *1/2
(IMPLIES (AND (AND (TRS_ISSORT[A0] TRS_X)
                   (TRS_ISSORT[A2] TRS_XS))
              (NOT (EQ (CAR TRS_XS) 'TRS_NIL))
              (AND (EQ (CAR TRS_XS) 'TRS_CONS)
                   (EQ (TRS_EQUAL_BOOL (TRS_GE TRS_X (CADR TRS_XS))
                                       '(TRS_TRUE))
                       '(TRS_TRUE)))
              (TRS_ISSORT[A0] TRS_X)
              (TRS_ISSORT[A2] TRS_XS)
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE TRS_X TRS_X)))
              (NOT (CDR (TRS_GE TRS_X TRS_X))))
         (EQUAL (TRS_FILTERLOWPRIME TRS_X TRS_XS)
                '(TRS_TRUE))).

By the simple :definition EQ we reduce the conjecture to

Subgoal *1/2'
(IMPLIES (AND (TRS_ISSORT[A0] TRS_X)
              (TRS_ISSORT[A2] TRS_XS)
              (NOT (EQUAL (CAR TRS_XS) 'TRS_NIL))
              (EQUAL (CAR TRS_XS) 'TRS_CONS)
              (EQUAL (TRS_EQUAL_BOOL (TRS_GE TRS_X (CADR TRS_XS))
                                     '(TRS_TRUE))
                     '(TRS_TRUE))
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE TRS_X TRS_X)))
              (NOT (CDR (TRS_GE TRS_X TRS_X))))
         (EQUAL (TRS_FILTERLOWPRIME TRS_X TRS_XS)
                '(TRS_TRUE))).

But simplification reduces this to T, using the :definitions TRS_EQUAL_BOOL,
TRS_FILTERLOWPRIME, TRS_ISBOOL and TRS_ISSORT[A2], the :executable-
counterparts of CAR, EQUAL and TRS_ISBOOL, primitive type reasoning
and the :type-prescription rules TRS_GE, TRS_ISSORT[A0] and TRS_ISSORT[A2].

Subgoal *1/1
(IMPLIES (AND (AND (TRS_ISSORT[A0] TRS_X)
                   (TRS_ISSORT[A2] TRS_XS))
              (EQ (CAR TRS_XS) 'TRS_NIL)
              (TRS_ISSORT[A0] TRS_X)
              (TRS_ISSORT[A2] TRS_XS)
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE TRS_X TRS_X)))
              (NOT (CDR (TRS_GE TRS_X TRS_X))))
         (EQUAL (TRS_FILTERLOWPRIME TRS_X TRS_XS)
                '(TRS_TRUE))).

By the simple :definition EQ we reduce the conjecture to

Subgoal *1/1'
(IMPLIES (AND (TRS_ISSORT[A0] TRS_X)
              (TRS_ISSORT[A2] TRS_XS)
              (EQUAL (CAR TRS_XS) 'TRS_NIL)
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE TRS_X TRS_X)))
              (NOT (CDR (TRS_GE TRS_X TRS_X))))
         (EQUAL (TRS_FILTERLOWPRIME TRS_X TRS_XS)
                '(TRS_TRUE))).

This simplifies, using the :definitions TRS_FILTERLOWPRIME and 
TRS_ISSORT[A2], the :executable-counterparts of CONSP and EQUAL, primitive
type reasoning and the :type-prescription rule TRS_ISSORT[A0], to

Subgoal *1/1''
(IMPLIES (AND (TRS_ISSORT[A0] TRS_X)
              (CONSP TRS_XS)
              (NOT (CONSP (CDR TRS_XS)))
              (NOT (CDR TRS_XS))
              (EQUAL (CAR TRS_XS) 'TRS_NIL)
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE TRS_X TRS_X))))
         (CDR (TRS_GE TRS_X TRS_X))).

This simplifies, using the :executable-counterpart of CONSP, to

Subgoal *1/1'''
(IMPLIES (AND (TRS_ISSORT[A0] TRS_X)
              (CONSP TRS_XS)
              (NOT (CDR TRS_XS))
              (EQUAL (CAR TRS_XS) 'TRS_NIL)
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE TRS_X TRS_X))))
         (CDR (TRS_GE TRS_X TRS_X))).

The destructor terms (CAR TRS_XS) and (CDR TRS_XS) can be eliminated
by using CAR-CDR-ELIM to replace TRS_XS by (CONS TRS_XS1 TRS_XS2),
(CAR TRS_XS) by TRS_XS1 and (CDR TRS_XS) by TRS_XS2 and restrict the
type of the new variable TRS_XS1 to be that of the term it replaces.
This produces the following goal.

Subgoal *1/1'4'
(IMPLIES (AND (SYMBOLP TRS_XS1)
              (NOT (EQUAL TRS_XS1 T))
              (NOT (EQUAL TRS_XS1 NIL))
              (CONSP (CONS TRS_XS1 TRS_XS2))
              (TRS_ISSORT[A0] TRS_X)
              (NOT TRS_XS2)
              (EQUAL TRS_XS1 'TRS_NIL)
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE TRS_X TRS_X))))
         (CDR (TRS_GE TRS_X TRS_X))).

By case analysis we reduce the conjecture to

Subgoal *1/1'5'
(IMPLIES (AND (SYMBOLP TRS_XS1)
              (NOT (EQUAL TRS_XS1 T))
              TRS_XS1 (CONSP (CONS TRS_XS1 TRS_XS2))
              (TRS_ISSORT[A0] TRS_X)
              (NOT TRS_XS2)
              (EQUAL TRS_XS1 'TRS_NIL)
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE TRS_X TRS_X))))
         (CDR (TRS_GE TRS_X TRS_X))).

This simplifies, using the :executable-counterparts of CONS, CONSP,
EQUAL, NOT and SYMBOLP, to

Subgoal *1/1'6'
(IMPLIES (AND (TRS_ISSORT[A0] TRS_X)
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE TRS_X TRS_X))))
         (CDR (TRS_GE TRS_X TRS_X))).

Name the formula above *1.1.

Perhaps we can prove *1.1 by induction.  Three induction schemes are
suggested by this conjecture.  Subsumption reduces that number to two.
These merge into one derived induction scheme.  

We will induct according to a scheme suggested by (TRS_GE TRS_X TRS_X).
This suggestion was produced using the :induction rules TRS_GE and
TRS_ISSORT[A0].  If we let (:P TRS_X) denote *1.1 above then the induction
scheme we'll use is
(AND (IMPLIES (NOT (AND (TRS_ISSORT[A0] TRS_X)
                        (TRS_ISSORT[A0] TRS_X)))
              (:P TRS_X))
     (IMPLIES (AND (AND (TRS_ISSORT[A0] TRS_X)
                        (TRS_ISSORT[A0] TRS_X))
                   (NOT (EQ (CAR TRS_X) 'TRS_0))
                   (NOT (AND (EQ (CAR TRS_X) 'TRS_0)
                             (EQ (CAR TRS_X) 'TRS_S)))
                   T (:P (CADR TRS_X)))
              (:P TRS_X))
     (IMPLIES (AND (AND (TRS_ISSORT[A0] TRS_X)
                        (TRS_ISSORT[A0] TRS_X))
                   (NOT (EQ (CAR TRS_X) 'TRS_0))
                   (AND (EQ (CAR TRS_X) 'TRS_0)
                        (EQ (CAR TRS_X) 'TRS_S)))
              (:P TRS_X))
     (IMPLIES (AND (AND (TRS_ISSORT[A0] TRS_X)
                        (TRS_ISSORT[A0] TRS_X))
                   (EQ (CAR TRS_X) 'TRS_0))
              (:P TRS_X))).
This induction is justified by the same argument used to admit TRS_GE.
When applied to the goal at hand the above induction scheme produces
four nontautological subgoals.

Subgoal *1.1/4
(IMPLIES (AND (AND (TRS_ISSORT[A0] TRS_X)
                   (TRS_ISSORT[A0] TRS_X))
              (NOT (EQ (CAR TRS_X) 'TRS_0))
              (NOT (AND (EQ (CAR TRS_X) 'TRS_0)
                        (EQ (CAR TRS_X) 'TRS_S)))
              T
              (CDR (TRS_GE (CADR TRS_X) (CADR TRS_X)))
              (TRS_ISSORT[A0] TRS_X)
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE TRS_X TRS_X))))
         (CDR (TRS_GE TRS_X TRS_X))).

By the simple :definition EQ we reduce the conjecture to

Subgoal *1.1/4'
(IMPLIES (AND (TRS_ISSORT[A0] TRS_X)
              (NOT (EQUAL (CAR TRS_X) 'TRS_0))
              (NOT (AND (EQUAL (CAR TRS_X) 'TRS_0)
                        (EQUAL (CAR TRS_X) 'TRS_S)))
              (CDR (TRS_GE (CADR TRS_X) (CADR TRS_X)))
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE TRS_X TRS_X))))
         (CDR (TRS_GE TRS_X TRS_X))).

But simplification reduces this to T, using the :definitions TRS_GE
and TRS_ISSORT[A0], the :executable-counterpart of EQUAL, primitive
type reasoning and the :type-prescription rules TRS_GE and TRS_ISSORT[A0].

Subgoal *1.1/3
(IMPLIES (AND (AND (TRS_ISSORT[A0] TRS_X)
                   (TRS_ISSORT[A0] TRS_X))
              (NOT (EQ (CAR TRS_X) 'TRS_0))
              (NOT (AND (EQ (CAR TRS_X) 'TRS_0)
                        (EQ (CAR TRS_X) 'TRS_S)))
              T
              (NOT (EQUAL 'TRS_FALSE
                          (CAR (TRS_GE (CADR TRS_X) (CADR TRS_X)))))
              (TRS_ISSORT[A0] TRS_X)
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE TRS_X TRS_X))))
         (CDR (TRS_GE TRS_X TRS_X))).

By the simple :definition EQ we reduce the conjecture to

Subgoal *1.1/3'
(IMPLIES (AND (TRS_ISSORT[A0] TRS_X)
              (NOT (EQUAL (CAR TRS_X) 'TRS_0))
              (NOT (AND (EQUAL (CAR TRS_X) 'TRS_0)
                        (EQUAL (CAR TRS_X) 'TRS_S)))
              (NOT (EQUAL 'TRS_FALSE
                          (CAR (TRS_GE (CADR TRS_X) (CADR TRS_X)))))
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE TRS_X TRS_X))))
         (CDR (TRS_GE TRS_X TRS_X))).

But simplification reduces this to T, using the :definitions TRS_GE
and TRS_ISSORT[A0], the :executable-counterpart of EQUAL, primitive
type reasoning and the :type-prescription rule TRS_ISSORT[A0].

Subgoal *1.1/2
(IMPLIES (AND (AND (TRS_ISSORT[A0] TRS_X)
                   (TRS_ISSORT[A0] TRS_X))
              (NOT (EQ (CAR TRS_X) 'TRS_0))
              (NOT (AND (EQ (CAR TRS_X) 'TRS_0)
                        (EQ (CAR TRS_X) 'TRS_S)))
              T (NOT (TRS_ISSORT[A0] (CADR TRS_X)))
              (TRS_ISSORT[A0] TRS_X)
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE TRS_X TRS_X))))
         (CDR (TRS_GE TRS_X TRS_X))).

By the simple :definition EQ we reduce the conjecture to

Subgoal *1.1/2'
(IMPLIES (AND (TRS_ISSORT[A0] TRS_X)
              (NOT (EQUAL (CAR TRS_X) 'TRS_0))
              (NOT (AND (EQUAL (CAR TRS_X) 'TRS_0)
                        (EQUAL (CAR TRS_X) 'TRS_S)))
              (NOT (TRS_ISSORT[A0] (CADR TRS_X)))
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE TRS_X TRS_X))))
         (CDR (TRS_GE TRS_X TRS_X))).

But simplification reduces this to T, using the :definition TRS_ISSORT[A0].

Subgoal *1.1/1
(IMPLIES (AND (AND (TRS_ISSORT[A0] TRS_X)
                   (TRS_ISSORT[A0] TRS_X))
              (EQ (CAR TRS_X) 'TRS_0)
              (TRS_ISSORT[A0] TRS_X)
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE TRS_X TRS_X))))
         (CDR (TRS_GE TRS_X TRS_X))).

By the simple :definition EQ we reduce the conjecture to

Subgoal *1.1/1'
(IMPLIES (AND (TRS_ISSORT[A0] TRS_X)
              (EQUAL (CAR TRS_X) 'TRS_0)
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_GE TRS_X TRS_X))))
         (CDR (TRS_GE TRS_X TRS_X))).

But simplification reduces this to T, using the :definitions TRS_GE
and TRS_ISSORT[A0], the :executable-counterparts of CAR and EQUAL and
primitive type reasoning.

That completes the proofs of *1.1 and *1.

Q.E.D.

Summary
Form:  ( DEFTHM TEST ...)
Rules: ((:DEFINITION EQ)
        (:DEFINITION NOT)
        (:DEFINITION TRS_EQUAL_BOOL)
        (:DEFINITION TRS_FILTERLOWPRIME)
        (:DEFINITION TRS_GE)
        (:DEFINITION TRS_ISBOOL)
        (:DEFINITION TRS_ISSORT[A0])
        (:DEFINITION TRS_ISSORT[A2])
        (:ELIM CAR-CDR-ELIM)
        (:EXECUTABLE-COUNTERPART CAR)
        (:EXECUTABLE-COUNTERPART CONS)
        (:EXECUTABLE-COUNTERPART CONSP)
        (:EXECUTABLE-COUNTERPART EQUAL)
        (:EXECUTABLE-COUNTERPART NOT)
        (:EXECUTABLE-COUNTERPART SYMBOLP)
        (:EXECUTABLE-COUNTERPART TRS_ISBOOL)
        (:FAKE-RUNE-FOR-TYPE-SET NIL)
        (:INDUCTION TRS_FILTERLOWPRIME)
        (:INDUCTION TRS_GE)
        (:INDUCTION TRS_ISSORT[A0])
        (:INDUCTION TRS_ISSORT[A2])
        (:REWRITE CAR-CONS)
        (:REWRITE CDR-CONS)
        (:TYPE-PRESCRIPTION TRS_GE)
        (:TYPE-PRESCRIPTION TRS_ISSORT[A0])
        (:TYPE-PRESCRIPTION TRS_ISSORT[A2]))
Warnings:  None
Time:  0.06 seconds (prove: 0.05, print: 0.01, other: 0.00)
 TEST
ACL2 !>Bye.

(48) Complex Obligation (AND)

(49) Obligation:

Q DP problem:
P is empty.
The TRS R consists of the following rules:

if1(true, n, x, xs) → filterlow(n, xs)
filterlow(n, cons(x, xs)) → if1(ge(n, x), n, x, xs)
filterlow(n, nil) → nil
ge(x, 0) → true
ge(0, s(x)) → false
ge(s(x), s(y)) → ge(x, y)
if1(false, n, x, xs) → cons(x, filterlow(n, xs))

The set Q consists of the following terms:

filterlow(x0, nil)
filterlow(x0, cons(x1, x2))
if1(true, x0, x1, x2)
if1(false, x0, x1, x2)
ge(x0, 0)
ge(0, s(x0))
ge(s(x0), s(x1))

We have to consider all minimal (P,Q,R)-chains.

(50) PisEmptyProof (EQUIVALENT transformation)

The TRS P is empty. Hence, there is no (P,Q,R) chain.

(51) YES

(52) Obligation:

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

filterlow'(n, cons(x, xs)) → if1'(ge(n, x), n, x, xs)
if1'(true, n1, x3, xs'') → true
filterlow'(n7, nil) → false
if1'(false, n24, x38, xs17) → filterlow'(n24, xs17)
filterlow(n, cons(x, xs)) → if1(ge(n, x), n, x, xs)
if1(true, n1, x3, xs'') → filterlow(n1, xs'')
filterlow(n7, nil) → nil
ge(x17, 0) → true
ge(0, s(x24)) → false
ge(s(x31), s(y3)) → ge(x31, y3)
if1(false, n24, x38, xs17) → cons(x38, filterlow(n24, xs17))
equal_bool(true, false) → false
equal_bool(false, true) → false
equal_bool(true, true) → true
equal_bool(false, false) → true
and(true, x) → x
and(false, x) → false
or(true, x) → true
or(false, x) → x
not(false) → true
not(true) → false
isa_true(true) → true
isa_true(false) → false
isa_false(true) → false
isa_false(false) → true
equal_sort[a0](0, 0) → true
equal_sort[a0](0, s(x0)) → false
equal_sort[a0](s(x0), 0) → false
equal_sort[a0](s(x0), s(x1)) → equal_sort[a0](x0, x1)
equal_sort[a2](cons(x0, x1), cons(x2, x3)) → and(equal_sort[a2](x0, x2), equal_sort[a2](x1, x3))
equal_sort[a2](cons(x0, x1), nil) → false
equal_sort[a2](nil, cons(x0, x1)) → false
equal_sort[a2](nil, nil) → true
equal_sort[a35](witness_sort[a35], witness_sort[a35]) → true

Q is empty.

(53) QTRSRRRProof (EQUIVALENT transformation)

Used ordering:
Combined order from the following AFS and order.
filterlow'(x1, x2)  =  filterlow'(x1, x2)
cons(x1, x2)  =  cons(x1, x2)
if1'(x1, x2, x3, x4)  =  if1'(x1, x2, x3, x4)
ge(x1, x2)  =  ge(x1, x2)
true  =  true
nil  =  nil
false  =  false
filterlow(x1, x2)  =  filterlow(x1, x2)
if1(x1, x2, x3, x4)  =  if1(x1, x2, x3, x4)
0  =  0
s(x1)  =  x1
equal_bool(x1, x2)  =  equal_bool(x1, x2)
and(x1, x2)  =  and(x1, x2)
or(x1, x2)  =  or(x1, x2)
not(x1)  =  not(x1)
isa_true(x1)  =  isa_true(x1)
isa_false(x1)  =  isa_false(x1)
equal_sort[a0](x1, x2)  =  equal_sort[a0](x1, x2)
equal_sort[a2](x1, x2)  =  equal_sort[a2](x1, x2)
equal_sort[a35](x1, x2)  =  equal_sort[a35](x1, x2)
witness_sort[a35]  =  witness_sort[a35]

Recursive path order with status [RPO].
Quasi-Precedence:
[filterlow'2, if1'4] > [cons2, false, not1, isafalse1] > ge2
[filterlow'2, if1'4] > [cons2, false, not1, isafalse1] > equalsort[a2]2 > true
[filterlow'2, if1'4] > [cons2, false, not1, isafalse1] > equalsort[a2]2 > and2
[filterlow2, if14] > nil > [cons2, false, not1, isafalse1] > ge2
[filterlow2, if14] > nil > [cons2, false, not1, isafalse1] > equalsort[a2]2 > true
[filterlow2, if14] > nil > [cons2, false, not1, isafalse1] > equalsort[a2]2 > and2
0 > [cons2, false, not1, isafalse1] > ge2
0 > [cons2, false, not1, isafalse1] > equalsort[a2]2 > true
0 > [cons2, false, not1, isafalse1] > equalsort[a2]2 > and2
equalbool2 > true
or2 > true
isatrue1 > [cons2, false, not1, isafalse1] > ge2
isatrue1 > [cons2, false, not1, isafalse1] > equalsort[a2]2 > true
isatrue1 > [cons2, false, not1, isafalse1] > equalsort[a2]2 > and2
equalsort[a35]2 > true

Status:
filterlow'2: [1,2]
cons2: [1,2]
if1'4: [2,4,3,1]
ge2: multiset
true: multiset
nil: multiset
false: multiset
filterlow2: [2,1]
if14: [4,2,3,1]
0: multiset
equalbool2: [2,1]
and2: [1,2]
or2: [2,1]
not1: multiset
isatrue1: [1]
isafalse1: multiset
equalsort[a0]2: [2,1]
equalsort[a2]2: [2,1]
equalsort[a35]2: [2,1]
witnesssort[a35]: multiset

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

filterlow'(n, cons(x, xs)) → if1'(ge(n, x), n, x, xs)
if1'(true, n1, x3, xs'') → true
filterlow'(n7, nil) → false
if1'(false, n24, x38, xs17) → filterlow'(n24, xs17)
filterlow(n, cons(x, xs)) → if1(ge(n, x), n, x, xs)
if1(true, n1, x3, xs'') → filterlow(n1, xs'')
filterlow(n7, nil) → nil
ge(x17, 0) → true
ge(0, s(x24)) → false
if1(false, n24, x38, xs17) → cons(x38, filterlow(n24, xs17))
equal_bool(true, false) → false
equal_bool(false, true) → false
equal_bool(true, true) → true
equal_bool(false, false) → true
and(true, x) → x
and(false, x) → false
or(true, x) → true
or(false, x) → x
not(false) → true
not(true) → false
isa_true(true) → true
isa_true(false) → false
isa_false(true) → false
isa_false(false) → true
equal_sort[a0](0, 0) → true
equal_sort[a0](0, s(x0)) → false
equal_sort[a0](s(x0), 0) → false
equal_sort[a2](cons(x0, x1), cons(x2, x3)) → and(equal_sort[a2](x0, x2), equal_sort[a2](x1, x3))
equal_sort[a2](cons(x0, x1), nil) → false
equal_sort[a2](nil, cons(x0, x1)) → false
equal_sort[a2](nil, nil) → true
equal_sort[a35](witness_sort[a35], witness_sort[a35]) → true


(54) Obligation:

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

ge(s(x31), s(y3)) → ge(x31, y3)
equal_sort[a0](s(x0), s(x1)) → equal_sort[a0](x0, x1)

Q is empty.

(55) QTRSRRRProof (EQUIVALENT transformation)

Used ordering:
Polynomial interpretation [POLO]:

POL(equal_sort[a0](x1, x2)) = x1 + x2   
POL(ge(x1, x2)) = 2·x1 + x2   
POL(s(x1)) = 1 + 2·x1   
With this ordering the following rules can be removed by the rule removal processor [LPAR04] because they are oriented strictly:

ge(s(x31), s(y3)) → ge(x31, y3)
equal_sort[a0](s(x0), s(x1)) → equal_sort[a0](x0, x1)


(56) Obligation:

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

(57) RisEmptyProof (EQUIVALENT transformation)

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

(58) YES

(59) Obligation:

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

filterhigh'(n58, cons(x67, xs43)) → if2'(ge(x67, n58), n58, x67, xs43)
if2'(true, n67, x77, xs50) → true
if2'(false, n76, x87, xs57) → filterhigh'(n76, xs57)
filterhigh'(n85, nil) → false
filterlow(n, cons(x, xs)) → if1(ge(n, x), n, x, xs)
if1(true, n7, x8, xs5) → filterlow(n7, xs5)
ge(x18, 0) → true
ge(0, s(x28)) → false
ge(s(x38), s(y2)) → ge(x38, y2)
if1(false, n40, x48, xs30) → cons(x48, filterlow(n40, xs30))
filterlow(n49, nil) → nil
filterhigh(n58, cons(x67, xs43)) → if2(ge(x67, n58), n58, x67, xs43)
if2(true, n67, x77, xs50) → filterhigh(n67, xs50)
if2(false, n76, x87, xs57) → cons(x87, filterhigh(n76, xs57))
filterhigh(n85, nil) → nil
equal_bool(true, false) → false
equal_bool(false, true) → false
equal_bool(true, true) → true
equal_bool(false, false) → true
and(true, x) → x
and(false, x) → false
or(true, x) → true
or(false, x) → x
not(false) → true
not(true) → false
isa_true(true) → true
isa_true(false) → false
isa_false(true) → false
isa_false(false) → true
equal_sort[a0](0, 0) → true
equal_sort[a0](0, s(x0)) → false
equal_sort[a0](s(x0), 0) → false
equal_sort[a0](s(x0), s(x1)) → equal_sort[a0](x0, x1)
equal_sort[a2](cons(x0, x1), cons(x2, x3)) → and(equal_sort[a2](x0, x2), equal_sort[a2](x1, x3))
equal_sort[a2](cons(x0, x1), nil) → false
equal_sort[a2](nil, cons(x0, x1)) → false
equal_sort[a2](nil, nil) → true
equal_sort[a55](witness_sort[a55], witness_sort[a55]) → true

Q is empty.

(60) QTRSRRRProof (EQUIVALENT transformation)

Used ordering:
Combined order from the following AFS and order.
filterhigh'(x1, x2)  =  filterhigh'(x1, x2)
cons(x1, x2)  =  cons(x1, x2)
if2'(x1, x2, x3, x4)  =  if2'(x1, x2, x3, x4)
ge(x1, x2)  =  ge(x1, x2)
true  =  true
false  =  false
nil  =  nil
filterlow(x1, x2)  =  filterlow(x1, x2)
if1(x1, x2, x3, x4)  =  if1(x1, x2, x3, x4)
0  =  0
s(x1)  =  x1
filterhigh(x1, x2)  =  filterhigh(x1, x2)
if2(x1, x2, x3, x4)  =  if2(x1, x2, x3, x4)
equal_bool(x1, x2)  =  equal_bool(x1, x2)
and(x1, x2)  =  and(x1, x2)
or(x1, x2)  =  or(x1, x2)
not(x1)  =  x1
isa_true(x1)  =  isa_true(x1)
isa_false(x1)  =  isa_false(x1)
equal_sort[a0](x1, x2)  =  equal_sort[a0](x1, x2)
equal_sort[a2](x1, x2)  =  equal_sort[a2](x1, x2)
equal_sort[a55](x1, x2)  =  equal_sort[a55](x1, x2)
witness_sort[a55]  =  witness_sort[a55]

Recursive path order with status [RPO].
Quasi-Precedence:
[filterhigh'2, if2'4] > [true, false, 0, equalsort[a0]2, equalsort[a55]2, witnesssort[a55]] > [ge2, filterlow2, if14] > cons2 > and2
[filterhigh2, if24] > nil > [true, false, 0, equalsort[a0]2, equalsort[a55]2, witnesssort[a55]] > [ge2, filterlow2, if14] > cons2 > and2
equalbool2 > [true, false, 0, equalsort[a0]2, equalsort[a55]2, witnesssort[a55]] > [ge2, filterlow2, if14] > cons2 > and2
or2 > [true, false, 0, equalsort[a0]2, equalsort[a55]2, witnesssort[a55]] > [ge2, filterlow2, if14] > cons2 > and2
equalsort[a2]2 > [true, false, 0, equalsort[a0]2, equalsort[a55]2, witnesssort[a55]] > [ge2, filterlow2, if14] > cons2 > and2

Status:
filterhigh'2: [1,2]
cons2: [2,1]
if2'4: [2,4,1,3]
ge2: [1,2]
true: multiset
false: multiset
nil: multiset
filterlow2: [1,2]
if14: [2,4,1,3]
0: multiset
filterhigh2: [1,2]
if24: [2,4,3,1]
equalbool2: multiset
and2: [1,2]
or2: multiset
isatrue1: multiset
isafalse1: multiset
equalsort[a0]2: multiset
equalsort[a2]2: multiset
equalsort[a55]2: [2,1]
witnesssort[a55]: multiset

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

filterhigh'(n58, cons(x67, xs43)) → if2'(ge(x67, n58), n58, x67, xs43)
if2'(true, n67, x77, xs50) → true
if2'(false, n76, x87, xs57) → filterhigh'(n76, xs57)
filterhigh'(n85, nil) → false
filterlow(n, cons(x, xs)) → if1(ge(n, x), n, x, xs)
if1(true, n7, x8, xs5) → filterlow(n7, xs5)
ge(x18, 0) → true
ge(0, s(x28)) → false
if1(false, n40, x48, xs30) → cons(x48, filterlow(n40, xs30))
filterlow(n49, nil) → nil
filterhigh(n58, cons(x67, xs43)) → if2(ge(x67, n58), n58, x67, xs43)
if2(true, n67, x77, xs50) → filterhigh(n67, xs50)
if2(false, n76, x87, xs57) → cons(x87, filterhigh(n76, xs57))
filterhigh(n85, nil) → nil
equal_bool(true, false) → false
equal_bool(false, true) → false
equal_bool(true, true) → true
equal_bool(false, false) → true
and(true, x) → x
and(false, x) → false
or(true, x) → true
or(false, x) → x
isa_true(true) → true
isa_true(false) → false
isa_false(true) → false
isa_false(false) → true
equal_sort[a0](0, 0) → true
equal_sort[a0](0, s(x0)) → false
equal_sort[a0](s(x0), 0) → false
equal_sort[a2](cons(x0, x1), cons(x2, x3)) → and(equal_sort[a2](x0, x2), equal_sort[a2](x1, x3))
equal_sort[a2](cons(x0, x1), nil) → false
equal_sort[a2](nil, cons(x0, x1)) → false
equal_sort[a2](nil, nil) → true
equal_sort[a55](witness_sort[a55], witness_sort[a55]) → true


(61) Obligation:

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

ge(s(x38), s(y2)) → ge(x38, y2)
not(false) → true
not(true) → false
equal_sort[a0](s(x0), s(x1)) → equal_sort[a0](x0, x1)

Q is empty.

(62) QTRSRRRProof (EQUIVALENT transformation)

Used ordering:
Polynomial interpretation [POLO]:

POL(equal_sort[a0](x1, x2)) = x1 + x2   
POL(false) = 1   
POL(ge(x1, x2)) = 2·x1 + x2   
POL(not(x1)) = 2 + 2·x1   
POL(s(x1)) = 1 + 2·x1   
POL(true) = 2   
With this ordering the following rules can be removed by the rule removal processor [LPAR04] because they are oriented strictly:

ge(s(x38), s(y2)) → ge(x38, y2)
not(false) → true
not(true) → false
equal_sort[a0](s(x0), s(x1)) → equal_sort[a0](x0, x1)


(63) Obligation:

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

(64) RisEmptyProof (EQUIVALENT transformation)

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

(65) YES