(0) Obligation:

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

double(0) → 0
double(s(x)) → s(s(double(x)))
del(x, nil) → nil
del(x, cons(y, xs)) → if(eq(x, y), x, y, xs)
if(true, x, y, xs) → xs
if(false, x, y, xs) → cons(y, del(x, xs))
eq(0, 0) → true
eq(0, s(y)) → false
eq(s(x), 0) → false
eq(s(x), s(y)) → eq(x, y)
first(nil) → 0
first(cons(x, xs)) → x
doublelist(nil) → nil
doublelist(cons(x, xs)) → cons(double(x), doublelist(del(first(cons(x, xs)), cons(x, xs))))

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:

double(0) → 0
double(s(x)) → s(s(double(x)))
del(x, nil) → nil
del(x, cons(y, xs)) → if(eq(x, y), x, y, xs)
if(true, x, y, xs) → xs
if(false, x, y, xs) → cons(y, del(x, xs))
eq(0, 0) → true
eq(0, s(y)) → false
eq(s(x), 0) → false
eq(s(x), s(y)) → eq(x, y)
first(nil) → 0
first(cons(x, xs)) → x
doublelist(nil) → nil
doublelist(cons(x, xs)) → cons(double(x), doublelist(del(first(cons(x, xs)), cons(x, xs))))

The set Q consists of the following terms:

double(0)
double(s(x0))
del(x0, nil)
del(x0, cons(x1, x2))
if(true, x0, x1, x2)
if(false, x0, x1, x2)
eq(0, 0)
eq(0, s(x0))
eq(s(x0), 0)
eq(s(x0), s(x1))
first(nil)
first(cons(x0, x1))
doublelist(nil)
doublelist(cons(x0, x1))

(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:

DOUBLE(s(x)) → DOUBLE(x)
DEL(x, cons(y, xs)) → IF(eq(x, y), x, y, xs)
DEL(x, cons(y, xs)) → EQ(x, y)
IF(false, x, y, xs) → DEL(x, xs)
EQ(s(x), s(y)) → EQ(x, y)
DOUBLELIST(cons(x, xs)) → DOUBLE(x)
DOUBLELIST(cons(x, xs)) → DOUBLELIST(del(first(cons(x, xs)), cons(x, xs)))
DOUBLELIST(cons(x, xs)) → DEL(first(cons(x, xs)), cons(x, xs))
DOUBLELIST(cons(x, xs)) → FIRST(cons(x, xs))

The TRS R consists of the following rules:

double(0) → 0
double(s(x)) → s(s(double(x)))
del(x, nil) → nil
del(x, cons(y, xs)) → if(eq(x, y), x, y, xs)
if(true, x, y, xs) → xs
if(false, x, y, xs) → cons(y, del(x, xs))
eq(0, 0) → true
eq(0, s(y)) → false
eq(s(x), 0) → false
eq(s(x), s(y)) → eq(x, y)
first(nil) → 0
first(cons(x, xs)) → x
doublelist(nil) → nil
doublelist(cons(x, xs)) → cons(double(x), doublelist(del(first(cons(x, xs)), cons(x, xs))))

The set Q consists of the following terms:

double(0)
double(s(x0))
del(x0, nil)
del(x0, cons(x1, x2))
if(true, x0, x1, x2)
if(false, x0, x1, x2)
eq(0, 0)
eq(0, s(x0))
eq(s(x0), 0)
eq(s(x0), s(x1))
first(nil)
first(cons(x0, x1))
doublelist(nil)
doublelist(cons(x0, x1))

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

(5) DependencyGraphProof (EQUIVALENT transformation)

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

(6) Complex Obligation (AND)

(7) Obligation:

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

EQ(s(x), s(y)) → EQ(x, y)

The TRS R consists of the following rules:

double(0) → 0
double(s(x)) → s(s(double(x)))
del(x, nil) → nil
del(x, cons(y, xs)) → if(eq(x, y), x, y, xs)
if(true, x, y, xs) → xs
if(false, x, y, xs) → cons(y, del(x, xs))
eq(0, 0) → true
eq(0, s(y)) → false
eq(s(x), 0) → false
eq(s(x), s(y)) → eq(x, y)
first(nil) → 0
first(cons(x, xs)) → x
doublelist(nil) → nil
doublelist(cons(x, xs)) → cons(double(x), doublelist(del(first(cons(x, xs)), cons(x, xs))))

The set Q consists of the following terms:

double(0)
double(s(x0))
del(x0, nil)
del(x0, cons(x1, x2))
if(true, x0, x1, x2)
if(false, x0, x1, x2)
eq(0, 0)
eq(0, s(x0))
eq(s(x0), 0)
eq(s(x0), s(x1))
first(nil)
first(cons(x0, x1))
doublelist(nil)
doublelist(cons(x0, x1))

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:

EQ(s(x), s(y)) → EQ(x, y)

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

double(0)
double(s(x0))
del(x0, nil)
del(x0, cons(x1, x2))
if(true, x0, x1, x2)
if(false, x0, x1, x2)
eq(0, 0)
eq(0, s(x0))
eq(s(x0), 0)
eq(s(x0), s(x1))
first(nil)
first(cons(x0, x1))
doublelist(nil)
doublelist(cons(x0, x1))

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].

double(0)
double(s(x0))
del(x0, nil)
del(x0, cons(x1, x2))
if(true, x0, x1, x2)
if(false, x0, x1, x2)
eq(0, 0)
eq(0, s(x0))
eq(s(x0), 0)
eq(s(x0), s(x1))
first(nil)
first(cons(x0, x1))
doublelist(nil)
doublelist(cons(x0, x1))

(11) Obligation:

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

EQ(s(x), s(y)) → EQ(x, y)

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:

  • EQ(s(x), s(y)) → EQ(x, y)
    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:

IF(false, x, y, xs) → DEL(x, xs)
DEL(x, cons(y, xs)) → IF(eq(x, y), x, y, xs)

The TRS R consists of the following rules:

double(0) → 0
double(s(x)) → s(s(double(x)))
del(x, nil) → nil
del(x, cons(y, xs)) → if(eq(x, y), x, y, xs)
if(true, x, y, xs) → xs
if(false, x, y, xs) → cons(y, del(x, xs))
eq(0, 0) → true
eq(0, s(y)) → false
eq(s(x), 0) → false
eq(s(x), s(y)) → eq(x, y)
first(nil) → 0
first(cons(x, xs)) → x
doublelist(nil) → nil
doublelist(cons(x, xs)) → cons(double(x), doublelist(del(first(cons(x, xs)), cons(x, xs))))

The set Q consists of the following terms:

double(0)
double(s(x0))
del(x0, nil)
del(x0, cons(x1, x2))
if(true, x0, x1, x2)
if(false, x0, x1, x2)
eq(0, 0)
eq(0, s(x0))
eq(s(x0), 0)
eq(s(x0), s(x1))
first(nil)
first(cons(x0, x1))
doublelist(nil)
doublelist(cons(x0, x1))

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:

IF(false, x, y, xs) → DEL(x, xs)
DEL(x, cons(y, xs)) → IF(eq(x, y), x, y, xs)

The TRS R consists of the following rules:

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

The set Q consists of the following terms:

double(0)
double(s(x0))
del(x0, nil)
del(x0, cons(x1, x2))
if(true, x0, x1, x2)
if(false, x0, x1, x2)
eq(0, 0)
eq(0, s(x0))
eq(s(x0), 0)
eq(s(x0), s(x1))
first(nil)
first(cons(x0, x1))
doublelist(nil)
doublelist(cons(x0, x1))

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].

double(0)
double(s(x0))
del(x0, nil)
del(x0, cons(x1, x2))
if(true, x0, x1, x2)
if(false, x0, x1, x2)
first(nil)
first(cons(x0, x1))
doublelist(nil)
doublelist(cons(x0, x1))

(18) Obligation:

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

IF(false, x, y, xs) → DEL(x, xs)
DEL(x, cons(y, xs)) → IF(eq(x, y), x, y, xs)

The TRS R consists of the following rules:

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

The set Q consists of the following terms:

eq(0, 0)
eq(0, s(x0))
eq(s(x0), 0)
eq(s(x0), s(x1))

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:

  • DEL(x, cons(y, xs)) → IF(eq(x, y), x, y, xs)
    The graph contains the following edges 1 >= 2, 2 > 3, 2 > 4

  • IF(false, x, y, xs) → DEL(x, xs)
    The graph contains the following edges 2 >= 1, 4 >= 2

(20) YES

(21) Obligation:

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

DOUBLE(s(x)) → DOUBLE(x)

The TRS R consists of the following rules:

double(0) → 0
double(s(x)) → s(s(double(x)))
del(x, nil) → nil
del(x, cons(y, xs)) → if(eq(x, y), x, y, xs)
if(true, x, y, xs) → xs
if(false, x, y, xs) → cons(y, del(x, xs))
eq(0, 0) → true
eq(0, s(y)) → false
eq(s(x), 0) → false
eq(s(x), s(y)) → eq(x, y)
first(nil) → 0
first(cons(x, xs)) → x
doublelist(nil) → nil
doublelist(cons(x, xs)) → cons(double(x), doublelist(del(first(cons(x, xs)), cons(x, xs))))

The set Q consists of the following terms:

double(0)
double(s(x0))
del(x0, nil)
del(x0, cons(x1, x2))
if(true, x0, x1, x2)
if(false, x0, x1, x2)
eq(0, 0)
eq(0, s(x0))
eq(s(x0), 0)
eq(s(x0), s(x1))
first(nil)
first(cons(x0, x1))
doublelist(nil)
doublelist(cons(x0, x1))

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:

DOUBLE(s(x)) → DOUBLE(x)

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

double(0)
double(s(x0))
del(x0, nil)
del(x0, cons(x1, x2))
if(true, x0, x1, x2)
if(false, x0, x1, x2)
eq(0, 0)
eq(0, s(x0))
eq(s(x0), 0)
eq(s(x0), s(x1))
first(nil)
first(cons(x0, x1))
doublelist(nil)
doublelist(cons(x0, x1))

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].

double(0)
double(s(x0))
del(x0, nil)
del(x0, cons(x1, x2))
if(true, x0, x1, x2)
if(false, x0, x1, x2)
eq(0, 0)
eq(0, s(x0))
eq(s(x0), 0)
eq(s(x0), s(x1))
first(nil)
first(cons(x0, x1))
doublelist(nil)
doublelist(cons(x0, x1))

(25) Obligation:

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

DOUBLE(s(x)) → DOUBLE(x)

R is empty.
Q is empty.
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:

  • DOUBLE(s(x)) → DOUBLE(x)
    The graph contains the following edges 1 > 1

(27) YES

(28) Obligation:

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

DOUBLELIST(cons(x, xs)) → DOUBLELIST(del(first(cons(x, xs)), cons(x, xs)))

The TRS R consists of the following rules:

double(0) → 0
double(s(x)) → s(s(double(x)))
del(x, nil) → nil
del(x, cons(y, xs)) → if(eq(x, y), x, y, xs)
if(true, x, y, xs) → xs
if(false, x, y, xs) → cons(y, del(x, xs))
eq(0, 0) → true
eq(0, s(y)) → false
eq(s(x), 0) → false
eq(s(x), s(y)) → eq(x, y)
first(nil) → 0
first(cons(x, xs)) → x
doublelist(nil) → nil
doublelist(cons(x, xs)) → cons(double(x), doublelist(del(first(cons(x, xs)), cons(x, xs))))

The set Q consists of the following terms:

double(0)
double(s(x0))
del(x0, nil)
del(x0, cons(x1, x2))
if(true, x0, x1, x2)
if(false, x0, x1, x2)
eq(0, 0)
eq(0, s(x0))
eq(s(x0), 0)
eq(s(x0), s(x1))
first(nil)
first(cons(x0, x1))
doublelist(nil)
doublelist(cons(x0, x1))

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:

DOUBLELIST(cons(x, xs)) → DOUBLELIST(del(first(cons(x, xs)), cons(x, xs)))

The TRS R consists of the following rules:

first(cons(x, xs)) → x
del(x, cons(y, xs)) → if(eq(x, y), x, y, xs)
eq(0, 0) → true
eq(0, s(y)) → false
eq(s(x), 0) → false
eq(s(x), s(y)) → eq(x, y)
if(true, x, y, xs) → xs
if(false, x, y, xs) → cons(y, del(x, xs))
del(x, nil) → nil

The set Q consists of the following terms:

double(0)
double(s(x0))
del(x0, nil)
del(x0, cons(x1, x2))
if(true, x0, x1, x2)
if(false, x0, x1, x2)
eq(0, 0)
eq(0, s(x0))
eq(s(x0), 0)
eq(s(x0), s(x1))
first(nil)
first(cons(x0, x1))
doublelist(nil)
doublelist(cons(x0, x1))

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].

double(0)
double(s(x0))
doublelist(nil)
doublelist(cons(x0, x1))

(32) Obligation:

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

DOUBLELIST(cons(x, xs)) → DOUBLELIST(del(first(cons(x, xs)), cons(x, xs)))

The TRS R consists of the following rules:

first(cons(x, xs)) → x
del(x, cons(y, xs)) → if(eq(x, y), x, y, xs)
eq(0, 0) → true
eq(0, s(y)) → false
eq(s(x), 0) → false
eq(s(x), s(y)) → eq(x, y)
if(true, x, y, xs) → xs
if(false, x, y, xs) → cons(y, del(x, xs))
del(x, nil) → nil

The set Q consists of the following terms:

del(x0, nil)
del(x0, cons(x1, x2))
if(true, x0, x1, x2)
if(false, x0, x1, x2)
eq(0, 0)
eq(0, s(x0))
eq(s(x0), 0)
eq(s(x0), s(x1))
first(nil)
first(cons(x0, x1))

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

(33) Induction-Processor (SOUND transformation)


This DP could be deleted by the Induction-Processor:
DOUBLELIST(cons(x, xs)) → DOUBLELIST(del(first(cons(x, xs)), cons(x, xs)))


This order was computed:
Polynomial interpretation [POLO]:

POL(0) = 0   
POL(DOUBLELIST(x1)) = x1   
POL(cons(x1, x2)) = 1 + x1 + x2   
POL(del(x1, x2)) = x2   
POL(eq(x1, x2)) = x2   
POL(false) = 0   
POL(first(x1)) = x1   
POL(if(x1, x2, x3, x4)) = 1 + x3 + x4   
POL(nil) = 1   
POL(s(x1)) = 1 + x1   
POL(true) = 0   

At least one of these decreasing rules is always used after the deleted DP:
if(true, x444, y314, xs244) → xs244


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


The transformed set:
del'(x6, cons(y3, xs3)) → if'(eq(x6, y3), x6, y3, xs3)
if'(true, x44, y31, xs24) → true
if'(false, x52, y37, xs29) → del'(x52, xs29)
del'(x60, nil) → false
first(cons(x, xs)) → x
del(x6, cons(y3, xs3)) → if(eq(x6, y3), x6, y3, xs3)
eq(0, 0) → true
eq(0, s(y14)) → false
eq(s(x28), 0) → false
eq(s(x36), s(y25)) → eq(x36, y25)
if(true, x44, y31, xs24) → xs24
if(false, x52, y37, xs29) → cons(y37, del(x52, xs29))
del(x60, nil) → nil
first(nil) → 0
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[a1](cons(x0, x1), cons(x2, x3)) → and(equal_sort[a1](x0, x2), equal_sort[a1](x1, x3))
equal_sort[a1](cons(x0, x1), nil) → false
equal_sort[a1](nil, cons(x0, x1)) → false
equal_sort[a1](nil, nil) → true
equal_sort[a39](witness_sort[a39], witness_sort[a39]) → 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[a39] (x)
  (or
    (and
      (consp
        x
      )
      (eq
        'trs_witness_sort[a39]
        (car
          x
        )
      )
      (eq
        (cdr
          x
        )
        'nil
      )
    )
  )
)
(defun trs_issort[a1] (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[a1]
        (car
          (cdr
            (cdr
              x
            )
          )
        )
      )
      (eq
        (cdr
          (cdr
            (cdr
              x
            )
          )
        )
        'nil
      )
    )
    (and
      (consp
        x
      )
      (eq
        'trs_nil
        (car
          x
        )
      )
      (eq
        (cdr
          x
        )
        'nil
      )
    )
  )
)
(defun trs_first (x0)
  (if
    (and
      (trs_issort[a1]
        x0
      )
    )
    (if
      (and
        (eq
          (car
            x0
          )
          'trs_cons
        )
      )
      (car
        (cdr
          x0
        )
      )
      (if
        (and
        )
        (list 'trs_0
        )
        (list 'trs_0
        )
      )
    )
    (list 'trs_0
    )
  )
)
(defun trs_eq (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_eq
              (car
                (cdr
                  x0
                )
              )
              (car
                (cdr
                  x1
                )
              )
            )
            (list 'trs_true
            )
          )
        )
      )
    )
    (list 'trs_true
    )
  )
)
(defun trs_equal_sort[a39] (x0 x1)
  (if
    (and
      (trs_issort[a39]
        x0
      )
      (trs_issort[a39]
        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_if (x0 x1 x2 x3)
  (if
    (and
      (trs_isbool
        x0
      )
      (trs_issort[a0]
        x1
      )
      (trs_issort[a0]
        x2
      )
      (trs_issort[a1]
        x3
      )
    )
    (if
      (and
        (eq
          (car
            x0
          )
          'trs_true
        )
      )
      x3
      (if
        (and
          (eq
            (car
              x0
            )
            'trs_false
          )
          (eq
            (car
              x3
            )
            'trs_cons
          )
        )
        (list 'trs_cons
          x2
          (trs_if
            (trs_eq
              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_ifprime (x0 x1 x2 x3)
  (if
    (and
      (trs_isbool
        x0
      )
      (trs_issort[a0]
        x1
      )
      (trs_issort[a0]
        x2
      )
      (trs_issort[a1]
        x3
      )
    )
    (if
      (and
        (eq
          (car
            x0
          )
          'trs_true
        )
      )
      (list 'trs_true
      )
      (if
        (and
          (eq
            (car
              x0
            )
            'trs_false
          )
          (eq
            (car
              x3
            )
            'trs_cons
          )
        )
        (trs_ifprime
          (trs_eq
            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_del (x0 x1)
  (if
    (and
      (trs_issort[a0]
        x0
      )
      (trs_issort[a1]
        x1
      )
    )
    (if
      (and
        (eq
          (car
            x1
          )
          'trs_nil
        )
      )
      (list 'trs_nil
      )
      (if
        (and
          (eq
            (car
              x1
            )
            'trs_cons
          )
          (eq
            (trs_equal_bool
              (trs_eq
                x0
                (car
                  (cdr
                    x1
                  )
                )
              )
              (list 'trs_true
              )
            )
            (list 'trs_true
            )
          )
        )
        (car
          (cdr
            (cdr
              x1
            )
          )
        )
        (if
          (and
            (eq
              (trs_equal_bool
                (trs_eq
                  x0
                  (car
                    (cdr
                      x1
                    )
                  )
                )
                (list 'trs_true
                )
              )
              (list 'trs_false
              )
            )
          )
          (list 'trs_cons
            (car
              (cdr
                x1
              )
            )
            (trs_del
              x0
              (car
                (cdr
                  (cdr
                    x1
                  )
                )
              )
            )
          )
          (list 'trs_nil
          )
        )
      )
    )
    (list 'trs_nil
    )
  )
)
(defun trs_delprime (x0 x1)
  (if
    (and
      (trs_issort[a0]
        x0
      )
      (trs_issort[a1]
        x1
      )
    )
    (if
      (and
        (eq
          (car
            x1
          )
          'trs_nil
        )
      )
      (list 'trs_false
      )
      (if
        (and
          (eq
            (car
              x1
            )
            'trs_cons
          )
          (eq
            (trs_equal_bool
              (trs_eq
                x0
                (car
                  (cdr
                    x1
                  )
                )
              )
              (list 'trs_true
              )
            )
            (list 'trs_true
            )
          )
        )
        (list 'trs_true
        )
        (if
          (and
            (eq
              (trs_equal_bool
                (trs_eq
                  x0
                  (car
                    (cdr
                      x1
                    )
                  )
                )
                (list 'trs_true
                )
              )
              (list 'trs_false
              )
            )
          )
          (trs_delprime
            x0
            (car
              (cdr
                (cdr
                  x1
                )
              )
            )
          )
          (list 'trs_true
          )
        )
      )
    )
    (list 'trs_true
    )
  )
)
(defun trs_equal_sort[a1] (x0 x1)
  (if
    (and
      (trs_issort[a1]
        x0
      )
      (trs_issort[a1]
        x1
      )
    )
    (if
      (and
        (eq
          (car
            x0
          )
          'trs_cons
        )
        (eq
          (car
            x1
          )
          'trs_cons
        )
      )
      (trs_and
        (trs_equal_sort[a1]
          (car
            (cdr
              x0
            )
          )
          (car
            (cdr
              x1
            )
          )
        )
        (trs_equal_sort[a1]
          (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[a1] trs_xs)
      )
      (eq
        (trs_delprime
          (trs_first
            (list 'trs_cons
              trs_x
              trs_xs
            )
          )
          (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.01, print: 0.00, other: 0.00)
 TRS_ISSORT[A0]
ACL2 !>
Since TRS_ISSORT[A39] is non-recursive, its admission is trivial. 
We observe that the type of TRS_ISSORT[A39] is described by the theorem
(OR (EQUAL (TRS_ISSORT[A39] X) T) (EQUAL (TRS_ISSORT[A39] X) NIL)).
We used primitive type reasoning.

Summary
Form:  ( DEFUN TRS_ISSORT[A39] ...)
Rules: ((:FAKE-RUNE-FOR-TYPE-SET NIL))
Warnings:  None
Time:  0.01 seconds (prove: 0.00, print: 0.00, other: 0.01)
 TRS_ISSORT[A39]
ACL2 !>
For the admission of TRS_ISSORT[A1] 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[A1].
Thus, we admit this function under the principle of definition.  We
observe that the type of TRS_ISSORT[A1] is described by the theorem
(OR (EQUAL (TRS_ISSORT[A1] X) T) (EQUAL (TRS_ISSORT[A1] 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[A1] ...)
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[A1]
ACL2 !>
Since TRS_FIRST is non-recursive, its admission is trivial.  We could
deduce no constraints on the type of TRS_FIRST.

Summary
Form:  ( DEFUN TRS_FIRST ...)
Rules: NIL
Warnings:  None
Time:  0.00 seconds (prove: 0.00, print: 0.00, other: 0.00)
 TRS_FIRST
ACL2 !>
For the admission of TRS_EQ 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_EQ.  Thus,
we admit this function under the principle of definition.  We observe
that the type of TRS_EQ is described by the theorem 
(AND (CONSP (TRS_EQ X0 X1)) (TRUE-LISTP (TRS_EQ X0 X1))).  We used
the :executable-counterpart of EQUAL and primitive type reasoning.

Summary
Form:  ( DEFUN TRS_EQ ...)
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.01, print: 0.00, other: 0.00)
 TRS_EQ
ACL2 !>
Since TRS_EQUAL_SORT[A39] is non-recursive, its admission is trivial.
We observe that the type of TRS_EQUAL_SORT[A39] is described by the
theorem 
(AND (CONSP (TRS_EQUAL_SORT[A39] X0 X1))
     (TRUE-LISTP (TRS_EQUAL_SORT[A39] X0 X1))).

Summary
Form:  ( DEFUN TRS_EQUAL_SORT[A39] ...)
Rules: NIL
Warnings:  None
Time:  0.00 seconds (prove: 0.00, print: 0.00, other: 0.00)
 TRS_EQUAL_SORT[A39]
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.01, other: 0.00)
 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.01 seconds (prove: 0.00, print: 0.00, other: 0.01)
 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.00 seconds (prove: 0.00, print: 0.00, other: 0.00)
 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.01 seconds (prove: 0.00, print: 0.00, other: 0.01)
 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.00 seconds (prove: 0.00, print: 0.00, 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_IF 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[A1] 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[A1] 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[A1], 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[A1] (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[A1] (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_IF.  Thus,
we admit this function under the principle of definition.  We observe
that the type of TRS_IF is described by the theorem 
(OR (AND (CONSP (TRS_IF X0 X1 X2 X3))
         (TRUE-LISTP (TRS_IF X0 X1 X2 X3)))
    (EQUAL (TRS_IF X0 X1 X2 X3) X3)).
We used primitive type reasoning.

Summary
Form:  ( DEFUN TRS_IF ...)
Rules: ((:DEFINITION ACL2-COUNT)
        (:DEFINITION EQ)
        (:DEFINITION FIX)
        (:DEFINITION NOT)
        (:DEFINITION O-FINP)
        (:DEFINITION O<)
        (:DEFINITION TRS_ISBOOL)
        (:DEFINITION TRS_ISSORT[A1])
        (: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_IF
ACL2 !>
For the admission of TRS_IFPRIME 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[A1] 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[A1] 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[A1], 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[A1] (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[A1] (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_IFPRIME.  Thus,
we admit this function under the principle of definition.  We observe
that the type of TRS_IFPRIME is described by the theorem 
(AND (CONSP (TRS_IFPRIME X0 X1 X2 X3))
     (TRUE-LISTP (TRS_IFPRIME X0 X1 X2 X3))).

Summary
Form:  ( DEFUN TRS_IFPRIME ...)
Rules: ((:DEFINITION ACL2-COUNT)
        (:DEFINITION EQ)
        (:DEFINITION FIX)
        (:DEFINITION NOT)
        (:DEFINITION O-FINP)
        (:DEFINITION O<)
        (:DEFINITION TRS_ISBOOL)
        (:DEFINITION TRS_ISSORT[A1])
        (: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.01, other: 0.01)
 TRS_IFPRIME
ACL2 !>
For the admission of TRS_DEL 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[A1] X1))
              (NOT (EQ (CAR X1) 'TRS_NIL))
              (NOT (AND (EQ (CAR X1) 'TRS_CONS)
                        (EQ (TRS_EQUAL_BOOL (TRS_EQ X0 (CADR X1))
                                            '(TRS_TRUE))
                            '(TRS_TRUE))))
              (EQ (TRS_EQUAL_BOOL (TRS_EQ 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[A1] X1)
              (NOT (EQUAL (CAR X1) 'TRS_NIL))
              (NOT (AND (EQUAL (CAR X1) 'TRS_CONS)
                        (EQUAL (TRS_EQUAL_BOOL (TRS_EQ X0 (CADR X1))
                                               '(TRS_TRUE))
                               '(TRS_TRUE))))
              (EQUAL (TRS_EQUAL_BOOL (TRS_EQ 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[A1], 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_EQ, 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[A1] (CADDR X1))
              (NOT (CDDDR X1))
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_EQ X0 (CADR X1))))
              (NOT (CDR (TRS_EQ 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_DEL.  Thus,
we admit this function under the principle of definition.  We could
deduce no constraints on the type of TRS_DEL.

Summary
Form:  ( DEFUN TRS_DEL ...)
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[A1])
        (: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_EQ))
Warnings:  None
Time:  0.01 seconds (prove: 0.00, print: 0.00, other: 0.01)
 TRS_DEL
ACL2 !>
For the admission of TRS_DELPRIME 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[A1] X1))
              (NOT (EQ (CAR X1) 'TRS_NIL))
              (NOT (AND (EQ (CAR X1) 'TRS_CONS)
                        (EQ (TRS_EQUAL_BOOL (TRS_EQ X0 (CADR X1))
                                            '(TRS_TRUE))
                            '(TRS_TRUE))))
              (EQ (TRS_EQUAL_BOOL (TRS_EQ 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[A1] X1)
              (NOT (EQUAL (CAR X1) 'TRS_NIL))
              (NOT (AND (EQUAL (CAR X1) 'TRS_CONS)
                        (EQUAL (TRS_EQUAL_BOOL (TRS_EQ X0 (CADR X1))
                                               '(TRS_TRUE))
                               '(TRS_TRUE))))
              (EQUAL (TRS_EQUAL_BOOL (TRS_EQ 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[A1], 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_EQ, 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[A1] (CADDR X1))
              (NOT (CDDDR X1))
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_EQ X0 (CADR X1))))
              (NOT (CDR (TRS_EQ 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_DELPRIME. 
Thus, we admit this function under the principle of definition.  We
observe that the type of TRS_DELPRIME is described by the theorem 
(AND (CONSP (TRS_DELPRIME X0 X1)) (TRUE-LISTP (TRS_DELPRIME X0 X1))).

Summary
Form:  ( DEFUN TRS_DELPRIME ...)
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[A1])
        (: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_EQ))
Warnings:  None
Time:  0.01 seconds (prove: 0.00, print: 0.00, other: 0.01)
 TRS_DELPRIME
ACL2 !>
For the admission of TRS_EQUAL_SORT[A1] 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[A1] X0)
                        (TRS_ISSORT[A1] 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[A1] X0)
                        (TRS_ISSORT[A1] 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[A1] X0)
              (TRS_ISSORT[A1] 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[A1], 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[A1] (CADDR X0))
              (NOT (CDDDR X0))
              (TRS_ISSORT[A1] 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[A1] (CADDR X0))
              (NOT (CDDDR X0))
              (TRS_ISSORT[A1] 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[A1] X0)
              (TRS_ISSORT[A1] 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[A1] X0)
              (TRS_ISSORT[A1] 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[A1] X0)
              (TRS_ISSORT[A1] 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[A1] (CONS X2 X3))
              (TRS_ISSORT[A1] 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[A1] (CONS X2 X3))
              (TRS_ISSORT[A1] 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[A1],
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[A1] (LIST* X2 X4 X5))
              (TRS_ISSORT[A1] 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[A1] (LIST* X2 X4 X5))
              (TRS_ISSORT[A1] 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[A1],
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[A1] (CAR X5))
              (NOT (CDR X5))
              (TRS_ISSORT[A1] 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[A1].
Thus, we admit this function under the principle of definition.  We
observe that the type of TRS_EQUAL_SORT[A1] is described by the theorem
(AND (CONSP (TRS_EQUAL_SORT[A1] X0 X1))
     (TRUE-LISTP (TRS_EQUAL_SORT[A1] 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[A1] ...)
Rules: ((:DEFINITION ACL2-COUNT)
        (:DEFINITION EQ)
        (:DEFINITION FIX)
        (:DEFINITION NOT)
        (:DEFINITION O-FINP)
        (:DEFINITION O<)
        (:DEFINITION TRS_ISSORT[A1])
        (: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.01, print: 0.00, other: 0.01)
 TRS_EQUAL_SORT[A1]
ACL2 !>
ACL2 Warning [Non-rec] in ( DEFTHM TEST ...):  A :REWRITE rule generated
from TEST will be triggered only by terms containing the non-recursive
function symbol TRS_FIRST.  Unless this function is disabled, this
rule is unlikely ever to be used.


[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[A1] TRS_XS))
         (EQUAL (TRS_DELPRIME (TRS_FIRST (LIST 'TRS_CONS TRS_X TRS_XS))
                              (LIST 'TRS_CONS TRS_X TRS_XS))
                '(TRS_TRUE))).

This simplifies, using the :definitions TRS_DELPRIME, TRS_EQUAL_BOOL,
TRS_FIRST, TRS_ISBOOL and TRS_ISSORT[A1], 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_EQ,
TRS_ISSORT[A0] and TRS_ISSORT[A1], to

Goal''
(IMPLIES (AND (TRS_ISSORT[A0] TRS_X)
              (TRS_ISSORT[A1] TRS_XS)
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_EQ TRS_X TRS_X)))
              (NOT (CDR (TRS_EQ TRS_X TRS_X))))
         (EQUAL (TRS_DELPRIME 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_DELPRIME TRS_X TRS_XS).  This suggestion was produced using the
:induction rules TRS_DELPRIME and TRS_ISSORT[A1].  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[A1] TRS_XS)))
              (:P TRS_X TRS_XS))
     (IMPLIES (AND (AND (TRS_ISSORT[A0] TRS_X)
                        (TRS_ISSORT[A1] TRS_XS))
                   (NOT (EQ (CAR TRS_XS) 'TRS_NIL))
                   (NOT (AND (EQ (CAR TRS_XS) 'TRS_CONS)
                             (EQ (TRS_EQUAL_BOOL (TRS_EQ TRS_X (CADR TRS_XS))
                                                 '(TRS_TRUE))
                                 '(TRS_TRUE))))
                   (NOT (EQ (TRS_EQUAL_BOOL (TRS_EQ TRS_X (CADR TRS_XS))
                                            '(TRS_TRUE))
                            '(TRS_FALSE))))
              (:P TRS_X TRS_XS))
     (IMPLIES (AND (AND (TRS_ISSORT[A0] TRS_X)
                        (TRS_ISSORT[A1] TRS_XS))
                   (NOT (EQ (CAR TRS_XS) 'TRS_NIL))
                   (NOT (AND (EQ (CAR TRS_XS) 'TRS_CONS)
                             (EQ (TRS_EQUAL_BOOL (TRS_EQ TRS_X (CADR TRS_XS))
                                                 '(TRS_TRUE))
                                 '(TRS_TRUE))))
                   (EQ (TRS_EQUAL_BOOL (TRS_EQ 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[A1] TRS_XS))
                   (NOT (EQ (CAR TRS_XS) 'TRS_NIL))
                   (AND (EQ (CAR TRS_XS) 'TRS_CONS)
                        (EQ (TRS_EQUAL_BOOL (TRS_EQ TRS_X (CADR TRS_XS))
                                            '(TRS_TRUE))
                            '(TRS_TRUE))))
              (:P TRS_X TRS_XS))
     (IMPLIES (AND (AND (TRS_ISSORT[A0] TRS_X)
                        (TRS_ISSORT[A1] 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_DELPRIME.
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[A1] TRS_XS))
              (NOT (EQ (CAR TRS_XS) 'TRS_NIL))
              (NOT (AND (EQ (CAR TRS_XS) 'TRS_CONS)
                        (EQ (TRS_EQUAL_BOOL (TRS_EQ TRS_X (CADR TRS_XS))
                                            '(TRS_TRUE))
                            '(TRS_TRUE))))
              (NOT (EQ (TRS_EQUAL_BOOL (TRS_EQ TRS_X (CADR TRS_XS))
                                       '(TRS_TRUE))
                       '(TRS_FALSE)))
              (TRS_ISSORT[A0] TRS_X)
              (TRS_ISSORT[A1] TRS_XS)
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_EQ TRS_X TRS_X)))
              (NOT (CDR (TRS_EQ TRS_X TRS_X))))
         (EQUAL (TRS_DELPRIME 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[A1] TRS_XS)
              (NOT (EQUAL (CAR TRS_XS) 'TRS_NIL))
              (NOT (AND (EQUAL (CAR TRS_XS) 'TRS_CONS)
                        (EQUAL (TRS_EQUAL_BOOL (TRS_EQ TRS_X (CADR TRS_XS))
                                               '(TRS_TRUE))
                               '(TRS_TRUE))))
              (NOT (EQUAL (TRS_EQUAL_BOOL (TRS_EQ TRS_X (CADR TRS_XS))
                                          '(TRS_TRUE))
                          '(TRS_FALSE)))
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_EQ TRS_X TRS_X)))
              (NOT (CDR (TRS_EQ TRS_X TRS_X))))
         (EQUAL (TRS_DELPRIME TRS_X TRS_XS)
                '(TRS_TRUE))).

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

Subgoal *1/4
(IMPLIES (AND (AND (TRS_ISSORT[A0] TRS_X)
                   (TRS_ISSORT[A1] TRS_XS))
              (NOT (EQ (CAR TRS_XS) 'TRS_NIL))
              (NOT (AND (EQ (CAR TRS_XS) 'TRS_CONS)
                        (EQ (TRS_EQUAL_BOOL (TRS_EQ TRS_X (CADR TRS_XS))
                                            '(TRS_TRUE))
                            '(TRS_TRUE))))
              (EQ (TRS_EQUAL_BOOL (TRS_EQ TRS_X (CADR TRS_XS))
                                  '(TRS_TRUE))
                  '(TRS_FALSE))
              (EQUAL (TRS_DELPRIME TRS_X (CADDR TRS_XS))
                     '(TRS_TRUE))
              (TRS_ISSORT[A0] TRS_X)
              (TRS_ISSORT[A1] TRS_XS)
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_EQ TRS_X TRS_X)))
              (NOT (CDR (TRS_EQ TRS_X TRS_X))))
         (EQUAL (TRS_DELPRIME 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[A1] TRS_XS)
              (NOT (EQUAL (CAR TRS_XS) 'TRS_NIL))
              (NOT (AND (EQUAL (CAR TRS_XS) 'TRS_CONS)
                        (EQUAL (TRS_EQUAL_BOOL (TRS_EQ TRS_X (CADR TRS_XS))
                                               '(TRS_TRUE))
                               '(TRS_TRUE))))
              (EQUAL (TRS_EQUAL_BOOL (TRS_EQ TRS_X (CADR TRS_XS))
                                     '(TRS_TRUE))
                     '(TRS_FALSE))
              (EQUAL (TRS_DELPRIME TRS_X (CADDR TRS_XS))
                     '(TRS_TRUE))
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_EQ TRS_X TRS_X)))
              (NOT (CDR (TRS_EQ TRS_X TRS_X))))
         (EQUAL (TRS_DELPRIME TRS_X TRS_XS)
                '(TRS_TRUE))).

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

Subgoal *1/3
(IMPLIES (AND (AND (TRS_ISSORT[A0] TRS_X)
                   (TRS_ISSORT[A1] TRS_XS))
              (NOT (EQ (CAR TRS_XS) 'TRS_NIL))
              (NOT (AND (EQ (CAR TRS_XS) 'TRS_CONS)
                        (EQ (TRS_EQUAL_BOOL (TRS_EQ TRS_X (CADR TRS_XS))
                                            '(TRS_TRUE))
                            '(TRS_TRUE))))
              (EQ (TRS_EQUAL_BOOL (TRS_EQ TRS_X (CADR TRS_XS))
                                  '(TRS_TRUE))
                  '(TRS_FALSE))
              (NOT (TRS_ISSORT[A1] (CADDR TRS_XS)))
              (TRS_ISSORT[A0] TRS_X)
              (TRS_ISSORT[A1] TRS_XS)
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_EQ TRS_X TRS_X)))
              (NOT (CDR (TRS_EQ TRS_X TRS_X))))
         (EQUAL (TRS_DELPRIME 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[A1] TRS_XS)
              (NOT (EQUAL (CAR TRS_XS) 'TRS_NIL))
              (NOT (AND (EQUAL (CAR TRS_XS) 'TRS_CONS)
                        (EQUAL (TRS_EQUAL_BOOL (TRS_EQ TRS_X (CADR TRS_XS))
                                               '(TRS_TRUE))
                               '(TRS_TRUE))))
              (EQUAL (TRS_EQUAL_BOOL (TRS_EQ TRS_X (CADR TRS_XS))
                                     '(TRS_TRUE))
                     '(TRS_FALSE))
              (NOT (TRS_ISSORT[A1] (CADDR TRS_XS)))
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_EQ TRS_X TRS_X)))
              (NOT (CDR (TRS_EQ TRS_X TRS_X))))
         (EQUAL (TRS_DELPRIME TRS_X TRS_XS)
                '(TRS_TRUE))).

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

Subgoal *1/2
(IMPLIES (AND (AND (TRS_ISSORT[A0] TRS_X)
                   (TRS_ISSORT[A1] TRS_XS))
              (NOT (EQ (CAR TRS_XS) 'TRS_NIL))
              (AND (EQ (CAR TRS_XS) 'TRS_CONS)
                   (EQ (TRS_EQUAL_BOOL (TRS_EQ TRS_X (CADR TRS_XS))
                                       '(TRS_TRUE))
                       '(TRS_TRUE)))
              (TRS_ISSORT[A0] TRS_X)
              (TRS_ISSORT[A1] TRS_XS)
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_EQ TRS_X TRS_X)))
              (NOT (CDR (TRS_EQ TRS_X TRS_X))))
         (EQUAL (TRS_DELPRIME 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[A1] TRS_XS)
              (NOT (EQUAL (CAR TRS_XS) 'TRS_NIL))
              (EQUAL (CAR TRS_XS) 'TRS_CONS)
              (EQUAL (TRS_EQUAL_BOOL (TRS_EQ TRS_X (CADR TRS_XS))
                                     '(TRS_TRUE))
                     '(TRS_TRUE))
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_EQ TRS_X TRS_X)))
              (NOT (CDR (TRS_EQ TRS_X TRS_X))))
         (EQUAL (TRS_DELPRIME TRS_X TRS_XS)
                '(TRS_TRUE))).

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

Subgoal *1/1
(IMPLIES (AND (AND (TRS_ISSORT[A0] TRS_X)
                   (TRS_ISSORT[A1] TRS_XS))
              (EQ (CAR TRS_XS) 'TRS_NIL)
              (TRS_ISSORT[A0] TRS_X)
              (TRS_ISSORT[A1] TRS_XS)
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_EQ TRS_X TRS_X)))
              (NOT (CDR (TRS_EQ TRS_X TRS_X))))
         (EQUAL (TRS_DELPRIME 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[A1] TRS_XS)
              (EQUAL (CAR TRS_XS) 'TRS_NIL)
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_EQ TRS_X TRS_X)))
              (NOT (CDR (TRS_EQ TRS_X TRS_X))))
         (EQUAL (TRS_DELPRIME TRS_X TRS_XS)
                '(TRS_TRUE))).

This simplifies, using the :definitions TRS_DELPRIME and TRS_ISSORT[A1],
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_EQ TRS_X TRS_X))))
         (CDR (TRS_EQ 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_EQ TRS_X TRS_X))))
         (CDR (TRS_EQ 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_EQ TRS_X TRS_X))))
         (CDR (TRS_EQ 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_EQ TRS_X TRS_X))))
         (CDR (TRS_EQ 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_EQ TRS_X TRS_X))))
         (CDR (TRS_EQ 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_EQ TRS_X TRS_X).
This suggestion was produced using the :induction rules TRS_EQ 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 (AND (EQ (CAR TRS_X) 'TRS_0)
                             (EQ (CAR TRS_X) 'TRS_0)))
                   (NOT (AND (EQ (CAR TRS_X) 'TRS_0)
                             (EQ (CAR TRS_X) 'TRS_S)))
                   (NOT (AND (EQ (CAR TRS_X) 'TRS_S)
                             (EQ (CAR TRS_X) 'TRS_0)))
                   T (:P (CADR TRS_X)))
              (:P TRS_X))
     (IMPLIES (AND (AND (TRS_ISSORT[A0] TRS_X)
                        (TRS_ISSORT[A0] TRS_X))
                   (NOT (AND (EQ (CAR TRS_X) 'TRS_0)
                             (EQ (CAR TRS_X) 'TRS_0)))
                   (NOT (AND (EQ (CAR TRS_X) 'TRS_0)
                             (EQ (CAR TRS_X) 'TRS_S)))
                   (AND (EQ (CAR TRS_X) 'TRS_S)
                        (EQ (CAR TRS_X) 'TRS_0)))
              (:P TRS_X))
     (IMPLIES (AND (AND (TRS_ISSORT[A0] TRS_X)
                        (TRS_ISSORT[A0] TRS_X))
                   (NOT (AND (EQ (CAR TRS_X) 'TRS_0)
                             (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))
                   (AND (EQ (CAR TRS_X) 'TRS_0)
                        (EQ (CAR TRS_X) 'TRS_0)))
              (:P TRS_X))).
This induction is justified by the same argument used to admit TRS_EQ.
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 (AND (EQ (CAR TRS_X) 'TRS_0)
                        (EQ (CAR TRS_X) 'TRS_0)))
              (NOT (AND (EQ (CAR TRS_X) 'TRS_0)
                        (EQ (CAR TRS_X) 'TRS_S)))
              (NOT (AND (EQ (CAR TRS_X) 'TRS_S)
                        (EQ (CAR TRS_X) 'TRS_0)))
              T
              (CDR (TRS_EQ (CADR TRS_X) (CADR TRS_X)))
              (TRS_ISSORT[A0] TRS_X)
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_EQ TRS_X TRS_X))))
         (CDR (TRS_EQ 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 (AND (EQUAL (CAR TRS_X) 'TRS_0)
                        (EQUAL (CAR TRS_X) 'TRS_0)))
              (NOT (AND (EQUAL (CAR TRS_X) 'TRS_0)
                        (EQUAL (CAR TRS_X) 'TRS_S)))
              (NOT (AND (EQUAL (CAR TRS_X) 'TRS_S)
                        (EQUAL (CAR TRS_X) 'TRS_0)))
              (CDR (TRS_EQ (CADR TRS_X) (CADR TRS_X)))
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_EQ TRS_X TRS_X))))
         (CDR (TRS_EQ TRS_X TRS_X))).

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

Subgoal *1.1/3
(IMPLIES (AND (AND (TRS_ISSORT[A0] TRS_X)
                   (TRS_ISSORT[A0] TRS_X))
              (NOT (AND (EQ (CAR TRS_X) 'TRS_0)
                        (EQ (CAR TRS_X) 'TRS_0)))
              (NOT (AND (EQ (CAR TRS_X) 'TRS_0)
                        (EQ (CAR TRS_X) 'TRS_S)))
              (NOT (AND (EQ (CAR TRS_X) 'TRS_S)
                        (EQ (CAR TRS_X) 'TRS_0)))
              T
              (NOT (EQUAL 'TRS_FALSE
                          (CAR (TRS_EQ (CADR TRS_X) (CADR TRS_X)))))
              (TRS_ISSORT[A0] TRS_X)
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_EQ TRS_X TRS_X))))
         (CDR (TRS_EQ 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 (AND (EQUAL (CAR TRS_X) 'TRS_0)
                        (EQUAL (CAR TRS_X) 'TRS_0)))
              (NOT (AND (EQUAL (CAR TRS_X) 'TRS_0)
                        (EQUAL (CAR TRS_X) 'TRS_S)))
              (NOT (AND (EQUAL (CAR TRS_X) 'TRS_S)
                        (EQUAL (CAR TRS_X) 'TRS_0)))
              (NOT (EQUAL 'TRS_FALSE
                          (CAR (TRS_EQ (CADR TRS_X) (CADR TRS_X)))))
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_EQ TRS_X TRS_X))))
         (CDR (TRS_EQ TRS_X TRS_X))).

But simplification reduces this to T, using the :definitions TRS_EQ
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 (AND (EQ (CAR TRS_X) 'TRS_0)
                        (EQ (CAR TRS_X) 'TRS_0)))
              (NOT (AND (EQ (CAR TRS_X) 'TRS_0)
                        (EQ (CAR TRS_X) 'TRS_S)))
              (NOT (AND (EQ (CAR TRS_X) 'TRS_S)
                        (EQ (CAR TRS_X) 'TRS_0)))
              T (NOT (TRS_ISSORT[A0] (CADR TRS_X)))
              (TRS_ISSORT[A0] TRS_X)
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_EQ TRS_X TRS_X))))
         (CDR (TRS_EQ 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 (AND (EQUAL (CAR TRS_X) 'TRS_0)
                        (EQUAL (CAR TRS_X) 'TRS_0)))
              (NOT (AND (EQUAL (CAR TRS_X) 'TRS_0)
                        (EQUAL (CAR TRS_X) 'TRS_S)))
              (NOT (AND (EQUAL (CAR TRS_X) 'TRS_S)
                        (EQUAL (CAR TRS_X) 'TRS_0)))
              (NOT (TRS_ISSORT[A0] (CADR TRS_X)))
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_EQ TRS_X TRS_X))))
         (CDR (TRS_EQ TRS_X TRS_X))).

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

Subgoal *1.1/1
(IMPLIES (AND (AND (TRS_ISSORT[A0] TRS_X)
                   (TRS_ISSORT[A0] TRS_X))
              (AND (EQ (CAR TRS_X) 'TRS_0)
                   (EQ (CAR TRS_X) 'TRS_0))
              (TRS_ISSORT[A0] TRS_X)
              (EQUAL 'TRS_FALSE
                     (CAR (TRS_EQ TRS_X TRS_X))))
         (CDR (TRS_EQ 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_EQ TRS_X TRS_X))))
         (CDR (TRS_EQ TRS_X TRS_X))).

But simplification reduces this to T, using the :definitions TRS_EQ
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_DELPRIME)
        (:DEFINITION TRS_EQ)
        (:DEFINITION TRS_EQUAL_BOOL)
        (:DEFINITION TRS_FIRST)
        (:DEFINITION TRS_ISBOOL)
        (:DEFINITION TRS_ISSORT[A0])
        (:DEFINITION TRS_ISSORT[A1])
        (: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_DELPRIME)
        (:INDUCTION TRS_EQ)
        (:INDUCTION TRS_ISSORT[A0])
        (:INDUCTION TRS_ISSORT[A1])
        (:REWRITE CAR-CONS)
        (:REWRITE CDR-CONS)
        (:TYPE-PRESCRIPTION TRS_EQ)
        (:TYPE-PRESCRIPTION TRS_ISSORT[A0])
        (:TYPE-PRESCRIPTION TRS_ISSORT[A1]))
Warnings:  Non-rec
Time:  0.06 seconds (prove: 0.05, print: 0.01, other: 0.00)
 TEST
ACL2 !>Bye.

(34) Complex Obligation (AND)

(35) Obligation:

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

first(cons(x, xs)) → x
del(x, cons(y, xs)) → if(eq(x, y), x, y, xs)
eq(0, 0) → true
eq(0, s(y)) → false
eq(s(x), 0) → false
eq(s(x), s(y)) → eq(x, y)
if(true, x, y, xs) → xs
if(false, x, y, xs) → cons(y, del(x, xs))
del(x, nil) → nil

The set Q consists of the following terms:

del(x0, nil)
del(x0, cons(x1, x2))
if(true, x0, x1, x2)
if(false, x0, x1, x2)
eq(0, 0)
eq(0, s(x0))
eq(s(x0), 0)
eq(s(x0), s(x1))
first(nil)
first(cons(x0, x1))

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

(36) PisEmptyProof (EQUIVALENT transformation)

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

(37) YES

(38) Obligation:

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

del'(x6, cons(y3, xs3)) → if'(eq(x6, y3), x6, y3, xs3)
if'(true, x44, y31, xs24) → true
if'(false, x52, y37, xs29) → del'(x52, xs29)
del'(x60, nil) → false
first(cons(x, xs)) → x
del(x6, cons(y3, xs3)) → if(eq(x6, y3), x6, y3, xs3)
eq(0, 0) → true
eq(0, s(y14)) → false
eq(s(x28), 0) → false
eq(s(x36), s(y25)) → eq(x36, y25)
if(true, x44, y31, xs24) → xs24
if(false, x52, y37, xs29) → cons(y37, del(x52, xs29))
del(x60, nil) → nil
first(nil) → 0
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[a1](cons(x0, x1), cons(x2, x3)) → and(equal_sort[a1](x0, x2), equal_sort[a1](x1, x3))
equal_sort[a1](cons(x0, x1), nil) → false
equal_sort[a1](nil, cons(x0, x1)) → false
equal_sort[a1](nil, nil) → true
equal_sort[a39](witness_sort[a39], witness_sort[a39]) → true

Q is empty.

(39) QTRSRRRProof (EQUIVALENT transformation)

Used ordering:
Combined order from the following AFS and order.
del'(x1, x2)  =  del'(x1, x2)
cons(x1, x2)  =  cons(x1, x2)
if'(x1, x2, x3, x4)  =  if'(x1, x2, x3, x4)
eq(x1, x2)  =  eq(x1, x2)
true  =  true
false  =  false
nil  =  nil
first(x1)  =  x1
del(x1, x2)  =  del(x1, x2)
if(x1, x2, x3, x4)  =  if(x1, x2, x3, x4)
0  =  0
s(x1)  =  s(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[a1](x1, x2)  =  equal_sort[a1](x1, x2)
equal_sort[a39](x1, x2)  =  equal_sort[a39](x1, x2)
witness_sort[a39]  =  witness_sort[a39]

Recursive path order with status [RPO].
Quasi-Precedence:
[false, nil, 0, not1, isatrue1, isafalse1] > [true, equalsort[a39]2]
[false, nil, 0, not1, isatrue1, isafalse1] > [del2, if4] > [del'2, cons2, if'4] > eq2
[false, nil, 0, not1, isatrue1, isafalse1] > [del2, if4] > [del'2, cons2, if'4] > equalsort[a1]2 > and2
s1 > eq2
s1 > equalsort[a0]2
equalbool2 > [true, equalsort[a39]2]
or2 > [true, equalsort[a39]2]

Status:
del'2: [2,1]
cons2: multiset
if'4: [4,2,1,3]
eq2: multiset
true: multiset
false: multiset
nil: multiset
del2: [2,1]
if4: [4,2,1,3]
0: multiset
s1: multiset
equalbool2: [2,1]
and2: [2,1]
or2: [1,2]
not1: multiset
isatrue1: multiset
isafalse1: multiset
equalsort[a0]2: [1,2]
equalsort[a1]2: [1,2]
equalsort[a39]2: multiset
witnesssort[a39]: multiset

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

del'(x6, cons(y3, xs3)) → if'(eq(x6, y3), x6, y3, xs3)
if'(true, x44, y31, xs24) → true
if'(false, x52, y37, xs29) → del'(x52, xs29)
del'(x60, nil) → false
first(cons(x, xs)) → x
del(x6, cons(y3, xs3)) → if(eq(x6, y3), x6, y3, xs3)
eq(0, 0) → true
eq(0, s(y14)) → false
eq(s(x28), 0) → false
eq(s(x36), s(y25)) → eq(x36, y25)
if(true, x44, y31, xs24) → xs24
if(false, x52, y37, xs29) → cons(y37, del(x52, xs29))
del(x60, 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[a1](cons(x0, x1), cons(x2, x3)) → and(equal_sort[a1](x0, x2), equal_sort[a1](x1, x3))
equal_sort[a1](cons(x0, x1), nil) → false
equal_sort[a1](nil, cons(x0, x1)) → false
equal_sort[a1](nil, nil) → true
equal_sort[a39](witness_sort[a39], witness_sort[a39]) → true


(40) Obligation:

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

first(nil) → 0

Q is empty.

(41) QTRSRRRProof (EQUIVALENT transformation)

Used ordering:
Polynomial interpretation [POLO]:

POL(0) = 2   
POL(first(x1)) = 2·x1   
POL(nil) = 2   
With this ordering the following rules can be removed by the rule removal processor [LPAR04] because they are oriented strictly:

first(nil) → 0


(42) Obligation:

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

(43) RisEmptyProof (EQUIVALENT transformation)

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

(44) YES