We consider the system AotoYamada_05__021. Alphabet: 0 : [] --> a cons : [a * b] --> b double : [b] --> b inc : [b] --> b map : [a -> a * b] --> b nil : [] --> b plus : [a] --> a -> a s : [a] --> a times : [a] --> a -> a Rules: plus(0) x => x plus(s(x)) y => s(plus(x) y) times(0) x => 0 times(s(x)) y => plus(times(x) y) y inc(x) => map(plus(s(0)), x) double(x) => map(times(s(s(0))), x) map(f, nil) => nil map(f, cons(x, y)) => cons(f x, map(f, y)) This AFS is converted to an AFSM simply by replacing all free variables by meta-variables (with arity 0). We use the dependency pair framework as described in [Kop12, Ch. 6/7], with static dependency pairs (see [KusIsoSakBla09] and the adaptation for AFSMs and accessible arguments in [Kop13]). In order to do so, we start by eta-expanding the system, which gives: plus(0, X) => X plus(s(X), Y) => s(plus(X, Y)) times(0, X) => 0 times(s(X), Y) => plus(times(X, Y), Y) inc(X) => map(/\x.plus(s(0), x), X) double(X) => map(/\x.times(s(s(0)), x), X) map(F, nil) => nil map(F, cons(X, Y)) => cons(F X, map(F, Y)) We thus obtain the following dependency pair problem (P_0, R_0, static, formative): Dependency Pairs P_0: 0] plus#(s(X), Y) =#> plus#(X, Y) 1] times#(s(X), Y) =#> plus#(times(X, Y), Y) 2] times#(s(X), Y) =#> times#(X, Y) 3] inc#(X) =#> map#(/\x.plus(s(0), x), X) 4] inc#(X) =#> plus#(s(0), Y) 5] double#(X) =#> map#(/\x.times(s(s(0)), x), X) 6] double#(X) =#> times#(s(s(0)), Y) 7] map#(F, cons(X, Y)) =#> map#(F, Y) Rules R_0: plus(0, X) => X plus(s(X), Y) => s(plus(X, Y)) times(0, X) => 0 times(s(X), Y) => plus(times(X, Y), Y) inc(X) => map(/\x.plus(s(0), x), X) double(X) => map(/\x.times(s(s(0)), x), X) map(F, nil) => nil map(F, cons(X, Y)) => cons(F X, map(F, Y)) Thus, the original system is terminating if (P_0, R_0, static, formative) is finite. We consider the dependency pair problem (P_0, R_0, static, formative). We will use the reduction pair processor [Kop12, Thm. 7.16]. It suffices to find a standard reduction pair [Kop12, Def. 6.69]. Thus, we must orient: plus#(s(X), Y) >? plus#(X, Y) times#(s(X), Y) >? plus#(times(X, Y), Y) times#(s(X), Y) >? times#(X, Y) inc#(X) >? map#(/\x.plus(s(0), x), X) inc#(X) >? plus#(s(0), Y) double#(X) >? map#(/\x.times(s(s(0)), x), X) double#(X) >? times#(s(s(0)), Y) map#(F, cons(X, Y)) >? map#(F, Y) plus(0, X) >= X plus(s(X), Y) >= s(plus(X, Y)) times(0, X) >= 0 times(s(X), Y) >= plus(times(X, Y), Y) inc(X) >= map(/\x.plus(s(0), x), X) double(X) >= map(/\x.times(s(s(0)), x), X) map(F, nil) >= nil map(F, cons(X, Y)) >= cons(F X, map(F, Y)) We apply [Kop12, Thm. 6.75] and use the following argument functions: pi( double(X) ) = #argfun-double#(map(/\x.times(s(s(0)), x), X)) pi( inc(X) ) = #argfun-inc#(map(/\x.plus(s(0), x), X)) We orient these requirements with a polynomial interpretation in the natural numbers. The following interpretation satisfies the requirements: #argfun-double# = \y0.3 + y0 #argfun-inc# = \y0.3 + y0 0 = 0 cons = \y0y1.3 + y0 + y1 double = \y0.0 double# = \y0.3 + 2y0 inc = \y0.0 inc# = \y0.3 + 2y0 map = \G0y1.2 + 2y1 + 3y1G0(y1) map# = \G0y1.0 nil = 0 plus = \y0y1.y1 plus# = \y0y1.0 s = \y0.0 times = \y0y1.2 + y1 times# = \y0y1.0 Using this interpretation, the requirements translate to: [[plus#(s(_x0), _x1)]] = 0 >= 0 = [[plus#(_x0, _x1)]] [[times#(s(_x0), _x1)]] = 0 >= 0 = [[plus#(times(_x0, _x1), _x1)]] [[times#(s(_x0), _x1)]] = 0 >= 0 = [[times#(_x0, _x1)]] [[inc#(_x0)]] = 3 + 2x0 > 0 = [[map#(/\x.plus(s(0), x), _x0)]] [[inc#(_x0)]] = 3 + 2x0 > 0 = [[plus#(s(0), _x1)]] [[double#(_x0)]] = 3 + 2x0 > 0 = [[map#(/\x.times(s(s(0)), x), _x0)]] [[double#(_x0)]] = 3 + 2x0 > 0 = [[times#(s(s(0)), _x1)]] [[map#(_F0, cons(_x1, _x2))]] = 0 >= 0 = [[map#(_F0, _x2)]] [[plus(0, _x0)]] = x0 >= x0 = [[_x0]] [[plus(s(_x0), _x1)]] = x1 >= 0 = [[s(plus(_x0, _x1))]] [[times(0, _x0)]] = 2 + x0 >= 0 = [[0]] [[times(s(_x0), _x1)]] = 2 + x1 >= x1 = [[plus(times(_x0, _x1), _x1)]] [[#argfun-inc#(map(/\x.plus(s(0), x), _x0))]] = 5 + 2x0 + 3x0x0 >= 2 + 2x0 + 3x0x0 = [[map(/\x.plus(s(0), x), _x0)]] [[#argfun-double#(map(/\x.times(s(s(0)), x), _x0))]] = 5 + 3x0x0 + 8x0 >= 2 + 3x0x0 + 8x0 = [[map(/\x.times(s(s(0)), x), _x0)]] [[map(_F0, nil)]] = 2 >= 0 = [[nil]] [[map(_F0, cons(_x1, _x2))]] = 8 + 2x1 + 2x2 + 3x1F0(3 + x1 + x2) + 3x2F0(3 + x1 + x2) + 9F0(3 + x1 + x2) >= 5 + 2x2 + F0(x1) + 3x2F0(x2) = [[cons(_F0 _x1, map(_F0, _x2))]] By the observations in [Kop12, Sec. 6.6], this reduction pair suffices; we may thus replace the dependency pair problem (P_0, R_0, static, formative) by (P_1, R_0, static, formative), where P_1 consists of: plus#(s(X), Y) =#> plus#(X, Y) times#(s(X), Y) =#> plus#(times(X, Y), Y) times#(s(X), Y) =#> times#(X, Y) map#(F, cons(X, Y)) =#> map#(F, Y) Thus, the original system is terminating if (P_1, R_0, static, formative) is finite. We consider the dependency pair problem (P_1, R_0, static, formative). We will use the reduction pair processor [Kop12, Thm. 7.16]. It suffices to find a standard reduction pair [Kop12, Def. 6.69]. Thus, we must orient: plus#(s(X), Y) >? plus#(X, Y) times#(s(X), Y) >? plus#(times(X, Y), Y) times#(s(X), Y) >? times#(X, Y) map#(F, cons(X, Y)) >? map#(F, Y) plus(0, X) >= X plus(s(X), Y) >= s(plus(X, Y)) times(0, X) >= 0 times(s(X), Y) >= plus(times(X, Y), Y) inc(X) >= map(/\x.plus(s(0), x), X) double(X) >= map(/\x.times(s(s(0)), x), X) map(F, nil) >= nil map(F, cons(X, Y)) >= cons(F X, map(F, Y)) We apply [Kop12, Thm. 6.75] and use the following argument functions: pi( double(X) ) = #argfun-double#(map(/\x.times(s(s(0)), x), X)) pi( inc(X) ) = #argfun-inc#(map(/\x.plus(s(0), x), X)) We orient these requirements with a polynomial interpretation in the natural numbers. The following interpretation satisfies the requirements: #argfun-double# = \y0.3 + y0 #argfun-inc# = \y0.3 + y0 0 = 0 cons = \y0y1.3 + y0 + y1 double = \y0.0 inc = \y0.0 map = \G0y1.y1 + 2G0(0) + 3y1G0(y1) map# = \G0y1.0 nil = 0 plus = \y0y1.y1 plus# = \y0y1.0 s = \y0.0 times = \y0y1.y1 times# = \y0y1.3 + 2y1 Using this interpretation, the requirements translate to: [[plus#(s(_x0), _x1)]] = 0 >= 0 = [[plus#(_x0, _x1)]] [[times#(s(_x0), _x1)]] = 3 + 2x1 > 0 = [[plus#(times(_x0, _x1), _x1)]] [[times#(s(_x0), _x1)]] = 3 + 2x1 >= 3 + 2x1 = [[times#(_x0, _x1)]] [[map#(_F0, cons(_x1, _x2))]] = 0 >= 0 = [[map#(_F0, _x2)]] [[plus(0, _x0)]] = x0 >= x0 = [[_x0]] [[plus(s(_x0), _x1)]] = x1 >= 0 = [[s(plus(_x0, _x1))]] [[times(0, _x0)]] = x0 >= 0 = [[0]] [[times(s(_x0), _x1)]] = x1 >= x1 = [[plus(times(_x0, _x1), _x1)]] [[#argfun-inc#(map(/\x.plus(s(0), x), _x0))]] = 3 + x0 + 3x0x0 >= x0 + 3x0x0 = [[map(/\x.plus(s(0), x), _x0)]] [[#argfun-double#(map(/\x.times(s(s(0)), x), _x0))]] = 3 + x0 + 3x0x0 >= x0 + 3x0x0 = [[map(/\x.times(s(s(0)), x), _x0)]] [[map(_F0, nil)]] = 2F0(0) >= 0 = [[nil]] [[map(_F0, cons(_x1, _x2))]] = 3 + x1 + x2 + 2F0(0) + 3x1F0(3 + x1 + x2) + 3x2F0(3 + x1 + x2) + 9F0(3 + x1 + x2) >= 3 + x2 + F0(x1) + 2F0(0) + 3x2F0(x2) = [[cons(_F0 _x1, map(_F0, _x2))]] By the observations in [Kop12, Sec. 6.6], this reduction pair suffices; we may thus replace the dependency pair problem (P_1, R_0, static, formative) by (P_2, R_0, static, formative), where P_2 consists of: plus#(s(X), Y) =#> plus#(X, Y) times#(s(X), Y) =#> times#(X, Y) map#(F, cons(X, Y)) =#> map#(F, Y) Thus, the original system is terminating if (P_2, R_0, static, formative) is finite. We consider the dependency pair problem (P_2, R_0, static, formative). We will use the reduction pair processor [Kop12, Thm. 7.16]. It suffices to find a standard reduction pair [Kop12, Def. 6.69]. Thus, we must orient: plus#(s(X), Y) >? plus#(X, Y) times#(s(X), Y) >? times#(X, Y) map#(F, cons(X, Y)) >? map#(F, Y) plus(0, X) >= X plus(s(X), Y) >= s(plus(X, Y)) times(0, X) >= 0 times(s(X), Y) >= plus(times(X, Y), Y) inc(X) >= map(/\x.plus(s(0), x), X) double(X) >= map(/\x.times(s(s(0)), x), X) map(F, nil) >= nil map(F, cons(X, Y)) >= cons(F X, map(F, Y)) We apply [Kop12, Thm. 6.75] and use the following argument functions: pi( double(X) ) = #argfun-double#(map(/\x.times(s(s(0)), x), X)) pi( inc(X) ) = #argfun-inc#(map(/\x.plus(s(0), x), X)) We orient these requirements with a polynomial interpretation in the natural numbers. The following interpretation satisfies the requirements: #argfun-double# = \y0.3 + y0 #argfun-inc# = \y0.3 + y0 0 = 0 cons = \y0y1.1 + y1 double = \y0.0 inc = \y0.0 map = \G0y1.y1 map# = \G0y1.y1 nil = 0 plus = \y0y1.y1 plus# = \y0y1.0 s = \y0.0 times = \y0y1.y1 times# = \y0y1.0 Using this interpretation, the requirements translate to: [[plus#(s(_x0), _x1)]] = 0 >= 0 = [[plus#(_x0, _x1)]] [[times#(s(_x0), _x1)]] = 0 >= 0 = [[times#(_x0, _x1)]] [[map#(_F0, cons(_x1, _x2))]] = 1 + x2 > x2 = [[map#(_F0, _x2)]] [[plus(0, _x0)]] = x0 >= x0 = [[_x0]] [[plus(s(_x0), _x1)]] = x1 >= 0 = [[s(plus(_x0, _x1))]] [[times(0, _x0)]] = x0 >= 0 = [[0]] [[times(s(_x0), _x1)]] = x1 >= x1 = [[plus(times(_x0, _x1), _x1)]] [[#argfun-inc#(map(/\x.plus(s(0), x), _x0))]] = 3 + x0 >= x0 = [[map(/\x.plus(s(0), x), _x0)]] [[#argfun-double#(map(/\x.times(s(s(0)), x), _x0))]] = 3 + x0 >= x0 = [[map(/\x.times(s(s(0)), x), _x0)]] [[map(_F0, nil)]] = 0 >= 0 = [[nil]] [[map(_F0, cons(_x1, _x2))]] = 1 + x2 >= 1 + x2 = [[cons(_F0 _x1, map(_F0, _x2))]] By the observations in [Kop12, Sec. 6.6], this reduction pair suffices; we may thus replace the dependency pair problem (P_2, R_0, static, formative) by (P_3, R_0, static, formative), where P_3 consists of: plus#(s(X), Y) =#> plus#(X, Y) times#(s(X), Y) =#> times#(X, Y) Thus, the original system is terminating if (P_3, R_0, static, formative) is finite. We consider the dependency pair problem (P_3, R_0, static, formative). We will use the reduction pair processor [Kop12, Thm. 7.16]. It suffices to find a standard reduction pair [Kop12, Def. 6.69]. Thus, we must orient: plus#(s(X), Y) >? plus#(X, Y) times#(s(X), Y) >? times#(X, Y) plus(0, X) >= X plus(s(X), Y) >= s(plus(X, Y)) times(0, X) >= 0 times(s(X), Y) >= plus(times(X, Y), Y) inc(X) >= map(/\x.plus(s(0), x), X) double(X) >= map(/\x.times(s(s(0)), x), X) map(F, nil) >= nil map(F, cons(X, Y)) >= cons(F X, map(F, Y)) We apply [Kop12, Thm. 6.75] and use the following argument functions: pi( double(X) ) = #argfun-double#(map(/\x.times(s(s(0)), x), X)) pi( inc(X) ) = #argfun-inc#(map(/\x.plus(s(0), x), X)) Since this representation is not advantageous for the higher-order recursive path ordering, we present the strict requirements in their unextended form, which is not problematic since for any F, s and substituion gamma: (F s)gamma beta-reduces to F(s)gamma.) We use a recursive path ordering as defined in [Kop12, Chapter 5]. Argument functions: [[#argfun-inc#(x_1)]] = #argfun-inc# [[0]] = _|_ [[cons(x_1, x_2)]] = _|_ [[double(x_1)]] = double [[inc(x_1)]] = inc [[map(x_1, x_2)]] = _|_ [[nil]] = _|_ We choose Lex = {} and Mul = {#argfun-double#, #argfun-inc#, @_{o -> o}, double, inc, plus, plus#, s, times, times#}, and the following precedence: #argfun-double# > #argfun-inc# > @_{o -> o} > double > inc > plus# > times > plus > s > times# Taking the argument function into account, and fixing the greater / greater equal choices, the constraints can be denoted as follows: plus#(s(X), Y) > plus#(X, Y) times#(s(X), Y) >= times#(X, Y) plus(_|_, X) >= X plus(s(X), Y) >= s(plus(X, Y)) times(_|_, X) >= _|_ times(s(X), Y) >= plus(times(X, Y), Y) #argfun-inc# >= _|_ #argfun-double#(_|_) >= _|_ _|_ >= _|_ _|_ >= _|_ With these choices, we have: 1] plus#(s(X), Y) > plus#(X, Y) because [2], by definition 2] plus#*(s(X), Y) >= plus#(X, Y) because plus# in Mul, [3] and [6], by (Stat) 3] s(X) > X because [4], by definition 4] s*(X) >= X because [5], by (Select) 5] X >= X by (Meta) 6] Y >= Y by (Meta) 7] times#(s(X), Y) >= times#(X, Y) because times# in Mul, [8] and [11], by (Fun) 8] s(X) >= X because [9], by (Star) 9] s*(X) >= X because [10], by (Select) 10] X >= X by (Meta) 11] Y >= Y by (Meta) 12] plus(_|_, X) >= X because [13], by (Star) 13] plus*(_|_, X) >= X because [14], by (Select) 14] X >= X by (Meta) 15] plus(s(X), Y) >= s(plus(X, Y)) because [16], by (Star) 16] plus*(s(X), Y) >= s(plus(X, Y)) because plus > s and [17], by (Copy) 17] plus*(s(X), Y) >= plus(X, Y) because plus in Mul, [3] and [6], by (Stat) 18] times(_|_, X) >= _|_ by (Bot) 19] times(s(X), Y) >= plus(times(X, Y), Y) because [20], by (Star) 20] times*(s(X), Y) >= plus(times(X, Y), Y) because times > plus, [21] and [24], by (Copy) 21] times*(s(X), Y) >= times(X, Y) because times in Mul, [22] and [11], by (Stat) 22] s(X) > X because [23], by definition 23] s*(X) >= X because [10], by (Select) 24] times*(s(X), Y) >= Y because [11], by (Select) 25] #argfun-inc# >= _|_ by (Bot) 26] #argfun-double#(_|_) >= _|_ by (Bot) 27] _|_ >= _|_ by (Bot) 28] _|_ >= _|_ by (Bot) By the observations in [Kop12, Sec. 6.6], this reduction pair suffices; we may thus replace the dependency pair problem (P_3, R_0, static, formative) by (P_4, R_0, static, formative), where P_4 consists of: times#(s(X), Y) =#> times#(X, Y) Thus, the original system is terminating if (P_4, R_0, static, formative) is finite. We consider the dependency pair problem (P_4, R_0, static, formative). We will use the reduction pair processor [Kop12, Thm. 7.16]. It suffices to find a standard reduction pair [Kop12, Def. 6.69]. Thus, we must orient: times#(s(X), Y) >? times#(X, Y) plus(0, X) >= X plus(s(X), Y) >= s(plus(X, Y)) times(0, X) >= 0 times(s(X), Y) >= plus(times(X, Y), Y) inc(X) >= map(/\x.plus(s(0), x), X) double(X) >= map(/\x.times(s(s(0)), x), X) map(F, nil) >= nil map(F, cons(X, Y)) >= cons(F X, map(F, Y)) We apply [Kop12, Thm. 6.75] and use the following argument functions: pi( double(X) ) = #argfun-double#(map(/\x.times(s(s(0)), x), X)) pi( inc(X) ) = #argfun-inc#(map(/\x.plus(s(0), x), X)) Since this representation is not advantageous for the higher-order recursive path ordering, we present the strict requirements in their unextended form, which is not problematic since for any F, s and substituion gamma: (F s)gamma beta-reduces to F(s)gamma.) We use a recursive path ordering as defined in [Kop12, Chapter 5]. Argument functions: [[0]] = _|_ [[double(x_1)]] = x_1 [[inc(x_1)]] = x_1 [[nil]] = _|_ [[times#(x_1, x_2)]] = times#(x_1) We choose Lex = {} and Mul = {#argfun-double#, #argfun-inc#, @_{o -> o}, cons, map, plus, s, times, times#}, and the following precedence: #argfun-inc# > #argfun-double# > map > @_{o -> o} > cons > times > plus > s > times# Taking the argument function into account, and fixing the greater / greater equal choices, the constraints can be denoted as follows: times#(s(X)) > times#(X) plus(_|_, X) >= X plus(s(X), Y) >= s(plus(X, Y)) times(_|_, X) >= _|_ times(s(X), Y) >= plus(times(X, Y), Y) #argfun-inc#(map(/\x.plus(s(_|_), x), X)) >= map(/\x.plus(s(_|_), x), X) #argfun-double#(map(/\x.times(s(s(_|_)), x), X)) >= map(/\x.times(s(s(_|_)), x), X) map(F, _|_) >= _|_ map(F, cons(X, Y)) >= cons(@_{o -> o}(F, X), map(F, Y)) With these choices, we have: 1] times#(s(X)) > times#(X) because [2], by definition 2] times#*(s(X)) >= times#(X) because [3], by (Select) 3] s(X) >= times#(X) because [4], by (Star) 4] s*(X) >= times#(X) because s > times# and [5], by (Copy) 5] s*(X) >= X because [6], by (Select) 6] X >= X by (Meta) 7] plus(_|_, X) >= X because [8], by (Star) 8] plus*(_|_, X) >= X because [9], by (Select) 9] X >= X by (Meta) 10] plus(s(X), Y) >= s(plus(X, Y)) because [11], by (Star) 11] plus*(s(X), Y) >= s(plus(X, Y)) because plus > s and [12], by (Copy) 12] plus*(s(X), Y) >= plus(X, Y) because plus in Mul, [13] and [16], by (Stat) 13] s(X) > X because [14], by definition 14] s*(X) >= X because [15], by (Select) 15] X >= X by (Meta) 16] Y >= Y by (Meta) 17] times(_|_, X) >= _|_ by (Bot) 18] times(s(X), Y) >= plus(times(X, Y), Y) because [19], by (Star) 19] times*(s(X), Y) >= plus(times(X, Y), Y) because times > plus, [20] and [23], by (Copy) 20] times*(s(X), Y) >= times(X, Y) because times in Mul, [21] and [22], by (Stat) 21] s(X) > X because [5], by definition 22] Y >= Y by (Meta) 23] times*(s(X), Y) >= Y because [22], by (Select) 24] #argfun-inc#(map(/\x.plus(s(_|_), x), X)) >= map(/\x.plus(s(_|_), x), X) because [25], by (Star) 25] #argfun-inc#*(map(/\x.plus(s(_|_), x), X)) >= map(/\x.plus(s(_|_), x), X) because #argfun-inc# > map, [26] and [32], by (Copy) 26] #argfun-inc#*(map(/\x.plus(s(_|_), x), X)) >= /\x.plus(s(_|_), x) because [27], by (F-Abs) 27] #argfun-inc#*(map(/\x.plus(s(_|_), x), X), y) >= plus(s(_|_), y) because #argfun-inc# > plus, [28] and [30], by (Copy) 28] #argfun-inc#*(map(/\x.plus(s(_|_), x), X), y) >= s(_|_) because #argfun-inc# > s and [29], by (Copy) 29] #argfun-inc#*(map(/\x.plus(s(_|_), x), X), y) >= _|_ by (Bot) 30] #argfun-inc#*(map(/\x.plus(s(_|_), x), X), y) >= y because [31], by (Select) 31] y >= y by (Var) 32] #argfun-inc#*(map(/\x.plus(s(_|_), x), X)) >= X because [33], by (Select) 33] map(/\x.plus(s(_|_), x), X) >= X because [34], by (Star) 34] map*(/\x.plus(s(_|_), x), X) >= X because [35], by (Select) 35] X >= X by (Meta) 36] #argfun-double#(map(/\x.times(s(s(_|_)), x), X)) >= map(/\x.times(s(s(_|_)), x), X) because [37], by (Star) 37] #argfun-double#*(map(/\x.times(s(s(_|_)), x), X)) >= map(/\x.times(s(s(_|_)), x), X) because #argfun-double# > map, [38] and [45], by (Copy) 38] #argfun-double#*(map(/\x.times(s(s(_|_)), x), X)) >= /\x.times(s(s(_|_)), x) because [39], by (F-Abs) 39] #argfun-double#*(map(/\x.times(s(s(_|_)), x), X), y) >= times(s(s(_|_)), y) because #argfun-double# > times, [40] and [43], by (Copy) 40] #argfun-double#*(map(/\x.times(s(s(_|_)), x), X), y) >= s(s(_|_)) because #argfun-double# > s and [41], by (Copy) 41] #argfun-double#*(map(/\x.times(s(s(_|_)), x), X), y) >= s(_|_) because #argfun-double# > s and [42], by (Copy) 42] #argfun-double#*(map(/\x.times(s(s(_|_)), x), X), y) >= _|_ by (Bot) 43] #argfun-double#*(map(/\x.times(s(s(_|_)), x), X), y) >= y because [44], by (Select) 44] y >= y by (Var) 45] #argfun-double#*(map(/\x.times(s(s(_|_)), x), X)) >= X because [46], by (Select) 46] map(/\x.times(s(s(_|_)), x), X) >= X because [47], by (Star) 47] map*(/\x.times(s(s(_|_)), x), X) >= X because [48], by (Select) 48] X >= X by (Meta) 49] map(F, _|_) >= _|_ by (Bot) 50] map(F, cons(X, Y)) >= cons(@_{o -> o}(F, X), map(F, Y)) because [51], by (Star) 51] map*(F, cons(X, Y)) >= cons(@_{o -> o}(F, X), map(F, Y)) because map > cons, [52] and [59], by (Copy) 52] map*(F, cons(X, Y)) >= @_{o -> o}(F, X) because map > @_{o -> o}, [53] and [55], by (Copy) 53] map*(F, cons(X, Y)) >= F because [54], by (Select) 54] F >= F by (Meta) 55] map*(F, cons(X, Y)) >= X because [56], by (Select) 56] cons(X, Y) >= X because [57], by (Star) 57] cons*(X, Y) >= X because [58], by (Select) 58] X >= X by (Meta) 59] map*(F, cons(X, Y)) >= map(F, Y) because map in Mul, [60] and [61], by (Stat) 60] F >= F by (Meta) 61] cons(X, Y) > Y because [62], by definition 62] cons*(X, Y) >= Y because [63], by (Select) 63] Y >= Y by (Meta) By the observations in [Kop12, Sec. 6.6], this reduction pair suffices; we may thus replace a dependency pair problem (P_4, R_0) by ({}, R_0). By the empty set processor [Kop12, Thm. 7.15] this problem may be immediately removed. As all dependency pair problems were succesfully simplified with sound (and complete) processors until nothing remained, we conclude termination. +++ Citations +++ [Kop12] C. Kop. Higher Order Termination. PhD Thesis, 2012. [Kop13] C. Kop. Static Dependency Pairs with Accessibility. Unpublished manuscript, http://cl-informatik.uibk.ac.at/users/kop/static.pdf, 2013. [KusIsoSakBla09] K. Kusakari, Y. Isogai, M. Sakai, and F. Blanqui. Static Dependency Pair Method Based On Strong Computability for Higher-Order Rewrite Systems. In volume 92(10) of IEICE Transactions on Information and Systems. 2007--2015, 2009.