We consider the system Applicative_first_order_05__#3.16. Alphabet: 0 : [] --> a cons : [c * d] --> d false : [] --> b filter : [c -> b * d] --> d filter2 : [b * c -> b * c * d] --> d map : [c -> c * d] --> d nil : [] --> d plus : [a * a] --> a s : [a] --> a times : [a * a] --> a true : [] --> b Rules: times(x, 0) => 0 times(x, s(y)) => plus(times(x, y), x) plus(x, 0) => x plus(0, x) => x plus(x, s(y)) => s(plus(x, y)) plus(s(x), y) => s(plus(x, y)) map(f, nil) => nil map(f, cons(x, y)) => cons(f x, map(f, y)) filter(f, nil) => nil filter(f, cons(x, y)) => filter2(f x, f, x, y) filter2(true, f, x, y) => cons(x, filter(f, y)) filter2(false, f, x, y) => filter(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]). We thus obtain the following dependency pair problem (P_0, R_0, static, formative): Dependency Pairs P_0: 0] times#(X, s(Y)) =#> plus#(times(X, Y), X) 1] times#(X, s(Y)) =#> times#(X, Y) 2] plus#(X, s(Y)) =#> plus#(X, Y) 3] plus#(s(X), Y) =#> plus#(X, Y) 4] map#(F, cons(X, Y)) =#> map#(F, Y) 5] filter#(F, cons(X, Y)) =#> filter2#(F X, F, X, Y) 6] filter2#(true, F, X, Y) =#> filter#(F, Y) 7] filter2#(false, F, X, Y) =#> filter#(F, Y) Rules R_0: times(X, 0) => 0 times(X, s(Y)) => plus(times(X, Y), X) plus(X, 0) => X plus(0, X) => X plus(X, s(Y)) => s(plus(X, Y)) plus(s(X), Y) => s(plus(X, Y)) map(F, nil) => nil map(F, cons(X, Y)) => cons(F X, map(F, Y)) filter(F, nil) => nil filter(F, cons(X, Y)) => filter2(F X, F, X, Y) filter2(true, F, X, Y) => cons(X, filter(F, Y)) filter2(false, F, X, Y) => filter(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 place the elements of P in a dependency graph approximation G (see e.g. [Kop12, Thm. 7.27, 7.29], as follows: * 0 : 2, 3 * 1 : 0, 1 * 2 : 2, 3 * 3 : 2, 3 * 4 : 4 * 5 : 6, 7 * 6 : 5 * 7 : 5 This graph has the following strongly connected components: P_1: times#(X, s(Y)) =#> times#(X, Y) P_2: plus#(X, s(Y)) =#> plus#(X, Y) plus#(s(X), Y) =#> plus#(X, Y) P_3: map#(F, cons(X, Y)) =#> map#(F, Y) P_4: filter#(F, cons(X, Y)) =#> filter2#(F X, F, X, Y) filter2#(true, F, X, Y) =#> filter#(F, Y) filter2#(false, F, X, Y) =#> filter#(F, Y) By [Kop12, Thm. 7.31], we may replace any dependency pair problem (P_0, R_0, m, f) by (P_1, R_0, m, f), (P_2, R_0, m, f), (P_3, R_0, m, f) and (P_4, R_0, m, f). Thus, the original system is terminating if each of (P_1, R_0, static, formative), (P_2, R_0, static, formative), (P_3, R_0, static, formative) and (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: filter#(F, cons(X, Y)) >? filter2#(F X, F, X, Y) filter2#(true, F, X, Y) >? filter#(F, Y) filter2#(false, F, X, Y) >? filter#(F, Y) times(X, 0) >= 0 times(X, s(Y)) >= plus(times(X, Y), X) plus(X, 0) >= X plus(0, X) >= X plus(X, s(Y)) >= s(plus(X, Y)) plus(s(X), Y) >= s(plus(X, Y)) map(F, nil) >= nil map(F, cons(X, Y)) >= cons(F X, map(F, Y)) filter(F, nil) >= nil filter(F, cons(X, Y)) >= filter2(F X, F, X, Y) filter2(true, F, X, Y) >= cons(X, filter(F, Y)) filter2(false, F, X, Y) >= filter(F, Y) 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]] = _|_ [[filter(x_1, x_2)]] = filter(x_2, x_1) [[filter2(x_1, x_2, x_3, x_4)]] = filter2(x_4, x_2, x_3, x_1) [[filter2#(x_1, x_2, x_3, x_4)]] = filter2#(x_4, x_2, x_3, x_1) [[filter#(x_1, x_2)]] = filter#(x_2, x_1) [[nil]] = _|_ We choose Lex = {filter, filter2, filter2#, filter#} and Mul = {@_{o -> o}, cons, false, map, plus, s, times, true}, and the following precedence: filter2# = filter# > filter = filter2 > map > cons > @_{o -> o} > true > false > times > plus > s Taking the argument function into account, and fixing the greater / greater equal choices, the constraints can be denoted as follows: filter#(F, cons(X, Y)) >= filter2#(@_{o -> o}(F, X), F, X, Y) filter2#(true, F, X, Y) >= filter#(F, Y) filter2#(false, F, X, Y) > filter#(F, Y) times(X, _|_) >= _|_ times(X, s(Y)) >= plus(times(X, Y), X) plus(X, _|_) >= X plus(_|_, X) >= X plus(X, s(Y)) >= s(plus(X, Y)) plus(s(X), Y) >= s(plus(X, Y)) map(F, _|_) >= _|_ map(F, cons(X, Y)) >= cons(@_{o -> o}(F, X), map(F, Y)) filter(F, _|_) >= _|_ filter(F, cons(X, Y)) >= filter2(@_{o -> o}(F, X), F, X, Y) filter2(true, F, X, Y) >= cons(X, filter(F, Y)) filter2(false, F, X, Y) >= filter(F, Y) With these choices, we have: 1] filter#(F, cons(X, Y)) >= filter2#(@_{o -> o}(F, X), F, X, Y) because [2], by (Star) 2] filter#*(F, cons(X, Y)) >= filter2#(@_{o -> o}(F, X), F, X, Y) because filter# = filter2#, [3], [6], [7], [9] and [13], by (Stat) 3] cons(X, Y) > Y because [4], by definition 4] cons*(X, Y) >= Y because [5], by (Select) 5] Y >= Y by (Meta) 6] filter#*(F, cons(X, Y)) >= @_{o -> o}(F, X) because filter# > @_{o -> o}, [7] and [9], by (Copy) 7] filter#*(F, cons(X, Y)) >= F because [8], by (Select) 8] F >= F by (Meta) 9] filter#*(F, cons(X, Y)) >= X because [10], by (Select) 10] cons(X, Y) >= X because [11], by (Star) 11] cons*(X, Y) >= X because [12], by (Select) 12] X >= X by (Meta) 13] filter#*(F, cons(X, Y)) >= Y because [14], by (Select) 14] cons(X, Y) >= Y because [4], by (Star) 15] filter2#(true, F, X, Y) >= filter#(F, Y) because [16], by (Star) 16] filter2#*(true, F, X, Y) >= filter#(F, Y) because filter2# = filter#, [17], [18], [19] and [20], by (Stat) 17] F >= F by (Meta) 18] Y >= Y by (Meta) 19] filter2#*(true, F, X, Y) >= F because [17], by (Select) 20] filter2#*(true, F, X, Y) >= Y because [18], by (Select) 21] filter2#(false, F, X, Y) > filter#(F, Y) because [22], by definition 22] filter2#*(false, F, X, Y) >= filter#(F, Y) because filter2# = filter#, [23], [24], [25] and [26], by (Stat) 23] F >= F by (Meta) 24] Y >= Y by (Meta) 25] filter2#*(false, F, X, Y) >= F because [23], by (Select) 26] filter2#*(false, F, X, Y) >= Y because [24], by (Select) 27] times(X, _|_) >= _|_ by (Bot) 28] times(X, s(Y)) >= plus(times(X, Y), X) because [29], by (Star) 29] times*(X, s(Y)) >= plus(times(X, Y), X) because times > plus, [30] and [35], by (Copy) 30] times*(X, s(Y)) >= times(X, Y) because times in Mul, [31] and [32], by (Stat) 31] X >= X by (Meta) 32] s(Y) > Y because [33], by definition 33] s*(Y) >= Y because [34], by (Select) 34] Y >= Y by (Meta) 35] times*(X, s(Y)) >= X because [31], by (Select) 36] plus(X, _|_) >= X because [37], by (Star) 37] plus*(X, _|_) >= X because [38], by (Select) 38] X >= X by (Meta) 39] plus(_|_, X) >= X because [40], by (Star) 40] plus*(_|_, X) >= X because [41], by (Select) 41] X >= X by (Meta) 42] plus(X, s(Y)) >= s(plus(X, Y)) because [43], by (Star) 43] plus*(X, s(Y)) >= s(plus(X, Y)) because plus > s and [44], by (Copy) 44] plus*(X, s(Y)) >= plus(X, Y) because plus in Mul, [45] and [46], by (Stat) 45] X >= X by (Meta) 46] s(Y) > Y because [47], by definition 47] s*(Y) >= Y because [48], by (Select) 48] Y >= Y by (Meta) 49] plus(s(X), Y) >= s(plus(X, Y)) because [50], by (Star) 50] plus*(s(X), Y) >= s(plus(X, Y)) because plus > s and [51], by (Copy) 51] plus*(s(X), Y) >= plus(X, Y) because plus in Mul, [52] and [55], by (Stat) 52] s(X) > X because [53], by definition 53] s*(X) >= X because [54], by (Select) 54] X >= X by (Meta) 55] Y >= Y by (Meta) 56] map(F, _|_) >= _|_ by (Bot) 57] map(F, cons(X, Y)) >= cons(@_{o -> o}(F, X), map(F, Y)) because [58], by (Star) 58] map*(F, cons(X, Y)) >= cons(@_{o -> o}(F, X), map(F, Y)) because map > cons, [59] and [66], by (Copy) 59] map*(F, cons(X, Y)) >= @_{o -> o}(F, X) because map > @_{o -> o}, [60] and [62], by (Copy) 60] map*(F, cons(X, Y)) >= F because [61], by (Select) 61] F >= F by (Meta) 62] map*(F, cons(X, Y)) >= X because [63], by (Select) 63] cons(X, Y) >= X because [64], by (Star) 64] cons*(X, Y) >= X because [65], by (Select) 65] X >= X by (Meta) 66] map*(F, cons(X, Y)) >= map(F, Y) because map in Mul, [67] and [68], by (Stat) 67] F >= F by (Meta) 68] cons(X, Y) > Y because [69], by definition 69] cons*(X, Y) >= Y because [70], by (Select) 70] Y >= Y by (Meta) 71] filter(F, _|_) >= _|_ by (Bot) 72] filter(F, cons(X, Y)) >= filter2(@_{o -> o}(F, X), F, X, Y) because [73], by (Star) 73] filter*(F, cons(X, Y)) >= filter2(@_{o -> o}(F, X), F, X, Y) because filter = filter2, [3], [74], [75], [76] and [77], by (Stat) 74] filter*(F, cons(X, Y)) >= @_{o -> o}(F, X) because filter > @_{o -> o}, [75] and [76], by (Copy) 75] filter*(F, cons(X, Y)) >= F because [8], by (Select) 76] filter*(F, cons(X, Y)) >= X because [10], by (Select) 77] filter*(F, cons(X, Y)) >= Y because [14], by (Select) 78] filter2(true, F, X, Y) >= cons(X, filter(F, Y)) because [79], by (Star) 79] filter2*(true, F, X, Y) >= cons(X, filter(F, Y)) because filter2 > cons, [80] and [82], by (Copy) 80] filter2*(true, F, X, Y) >= X because [81], by (Select) 81] X >= X by (Meta) 82] filter2*(true, F, X, Y) >= filter(F, Y) because filter2 = filter, [17], [18], [83] and [84], by (Stat) 83] filter2*(true, F, X, Y) >= F because [17], by (Select) 84] filter2*(true, F, X, Y) >= Y because [18], by (Select) 85] filter2(false, F, X, Y) >= filter(F, Y) because [86], by (Star) 86] filter2*(false, F, X, Y) >= filter(F, Y) because filter2 = filter, [23], [24], [87] and [88], by (Stat) 87] filter2*(false, F, X, Y) >= F because [23], by (Select) 88] filter2*(false, F, X, Y) >= Y because [24], by (Select) By the observations in [Kop12, Sec. 6.6], this reduction pair suffices; we may thus replace the dependency pair problem (P_4, R_0, static, formative) by (P_5, R_0, static, formative), where P_5 consists of: filter#(F, cons(X, Y)) =#> filter2#(F X, F, X, Y) filter2#(true, F, X, Y) =#> filter#(F, Y) Thus, the original system is terminating if each of (P_1, R_0, static, formative), (P_2, R_0, static, formative), (P_3, R_0, static, formative) and (P_5, R_0, static, formative) is finite. We consider the dependency pair problem (P_5, 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: filter#(F, cons(X, Y)) >? filter2#(F X, F, X, Y) filter2#(true, F, X, Y) >? filter#(F, Y) times(X, 0) >= 0 times(X, s(Y)) >= plus(times(X, Y), X) plus(X, 0) >= X plus(0, X) >= X plus(X, s(Y)) >= s(plus(X, Y)) plus(s(X), Y) >= s(plus(X, Y)) map(F, nil) >= nil map(F, cons(X, Y)) >= cons(F X, map(F, Y)) filter(F, nil) >= nil filter(F, cons(X, Y)) >= filter2(F X, F, X, Y) filter2(true, F, X, Y) >= cons(X, filter(F, Y)) filter2(false, F, X, Y) >= filter(F, Y) 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]] = _|_ [[@_{o -> o}(x_1, x_2)]] = @_{o -> o}(x_2, x_1) [[filter(x_1, x_2)]] = filter(x_2, x_1) [[filter2(x_1, x_2, x_3, x_4)]] = filter2(x_4, x_2, x_3, x_1) [[filter2#(x_1, x_2, x_3, x_4)]] = filter2#(x_3, x_4) [[filter#(x_1, x_2)]] = x_2 [[nil]] = _|_ We choose Lex = {@_{o -> o}, filter, filter2} and Mul = {cons, false, filter2#, map, plus, s, times, true}, and the following precedence: map > false > @_{o -> o} = filter = filter2 > cons > times > plus > filter2# > s > true Taking the argument function into account, and fixing the greater / greater equal choices, the constraints can be denoted as follows: cons(X, Y) >= filter2#(X, Y) filter2#(X, Y) > Y times(X, _|_) >= _|_ times(X, s(Y)) >= plus(times(X, Y), X) plus(X, _|_) >= X plus(_|_, X) >= X plus(X, s(Y)) >= s(plus(X, Y)) plus(s(X), Y) >= s(plus(X, Y)) map(F, _|_) >= _|_ map(F, cons(X, Y)) >= cons(@_{o -> o}(F, X), map(F, Y)) filter(F, _|_) >= _|_ filter(F, cons(X, Y)) >= filter2(@_{o -> o}(F, X), F, X, Y) filter2(true, F, X, Y) >= cons(X, filter(F, Y)) filter2(false, F, X, Y) >= filter(F, Y) With these choices, we have: 1] cons(X, Y) >= filter2#(X, Y) because [2], by (Star) 2] cons*(X, Y) >= filter2#(X, Y) because cons > filter2#, [3] and [5], by (Copy) 3] cons*(X, Y) >= X because [4], by (Select) 4] X >= X by (Meta) 5] cons*(X, Y) >= Y because [6], by (Select) 6] Y >= Y by (Meta) 7] filter2#(X, Y) > Y because [8], by definition 8] filter2#*(X, Y) >= Y because [9], by (Select) 9] Y >= Y by (Meta) 10] times(X, _|_) >= _|_ by (Bot) 11] times(X, s(Y)) >= plus(times(X, Y), X) because [12], by (Star) 12] times*(X, s(Y)) >= plus(times(X, Y), X) because times > plus, [13] and [18], by (Copy) 13] times*(X, s(Y)) >= times(X, Y) because times in Mul, [14] and [15], by (Stat) 14] X >= X by (Meta) 15] s(Y) > Y because [16], by definition 16] s*(Y) >= Y because [17], by (Select) 17] Y >= Y by (Meta) 18] times*(X, s(Y)) >= X because [14], by (Select) 19] plus(X, _|_) >= X because [20], by (Star) 20] plus*(X, _|_) >= X because [21], by (Select) 21] X >= X by (Meta) 22] plus(_|_, X) >= X because [23], by (Star) 23] plus*(_|_, X) >= X because [24], by (Select) 24] X >= X by (Meta) 25] plus(X, s(Y)) >= s(plus(X, Y)) because [26], by (Star) 26] plus*(X, s(Y)) >= s(plus(X, Y)) because plus > s and [27], by (Copy) 27] plus*(X, s(Y)) >= plus(X, Y) because plus in Mul, [28] and [29], by (Stat) 28] X >= X by (Meta) 29] s(Y) > Y because [30], by definition 30] s*(Y) >= Y because [31], by (Select) 31] Y >= Y by (Meta) 32] plus(s(X), Y) >= s(plus(X, Y)) because [33], by (Star) 33] plus*(s(X), Y) >= s(plus(X, Y)) because plus > s and [34], by (Copy) 34] plus*(s(X), Y) >= plus(X, Y) because plus in Mul, [35] and [38], by (Stat) 35] s(X) > X because [36], by definition 36] s*(X) >= X because [37], by (Select) 37] X >= X by (Meta) 38] Y >= Y by (Meta) 39] map(F, _|_) >= _|_ by (Bot) 40] map(F, cons(X, Y)) >= cons(@_{o -> o}(F, X), map(F, Y)) because [41], by (Star) 41] map*(F, cons(X, Y)) >= cons(@_{o -> o}(F, X), map(F, Y)) because map > cons, [42] and [49], by (Copy) 42] map*(F, cons(X, Y)) >= @_{o -> o}(F, X) because map > @_{o -> o}, [43] and [45], by (Copy) 43] map*(F, cons(X, Y)) >= F because [44], by (Select) 44] F >= F by (Meta) 45] map*(F, cons(X, Y)) >= X because [46], by (Select) 46] cons(X, Y) >= X because [47], by (Star) 47] cons*(X, Y) >= X because [48], by (Select) 48] X >= X by (Meta) 49] map*(F, cons(X, Y)) >= map(F, Y) because map in Mul, [50] and [51], by (Stat) 50] F >= F by (Meta) 51] cons(X, Y) > Y because [52], by definition 52] cons*(X, Y) >= Y because [53], by (Select) 53] Y >= Y by (Meta) 54] filter(F, _|_) >= _|_ by (Bot) 55] filter(F, cons(X, Y)) >= filter2(@_{o -> o}(F, X), F, X, Y) because [56], by (Star) 56] filter*(F, cons(X, Y)) >= filter2(@_{o -> o}(F, X), F, X, Y) because filter = filter2, [57], [58], [61], [63] and [65], by (Stat) 57] cons(X, Y) > Y because [5], by definition 58] filter*(F, cons(X, Y)) >= @_{o -> o}(F, X) because filter = @_{o -> o}, [59], [61] and [63], by (Stat) 59] cons(X, Y) > X because [60], by definition 60] cons*(X, Y) >= X because [4], by (Select) 61] filter*(F, cons(X, Y)) >= F because [62], by (Select) 62] F >= F by (Meta) 63] filter*(F, cons(X, Y)) >= X because [64], by (Select) 64] cons(X, Y) >= X because [60], by (Star) 65] filter*(F, cons(X, Y)) >= Y because [66], by (Select) 66] cons(X, Y) >= Y because [5], by (Star) 67] filter2(true, F, X, Y) >= cons(X, filter(F, Y)) because [68], by (Star) 68] filter2*(true, F, X, Y) >= cons(X, filter(F, Y)) because filter2 > cons, [69] and [71], by (Copy) 69] filter2*(true, F, X, Y) >= X because [70], by (Select) 70] X >= X by (Meta) 71] filter2*(true, F, X, Y) >= filter(F, Y) because filter2 = filter, [72], [73], [74] and [75], by (Stat) 72] F >= F by (Meta) 73] Y >= Y by (Meta) 74] filter2*(true, F, X, Y) >= F because [72], by (Select) 75] filter2*(true, F, X, Y) >= Y because [73], by (Select) 76] filter2(false, F, X, Y) >= filter(F, Y) because [77], by (Star) 77] filter2*(false, F, X, Y) >= filter(F, Y) because filter2 = filter, [78], [79], [80] and [81], by (Stat) 78] F >= F by (Meta) 79] Y >= Y by (Meta) 80] filter2*(false, F, X, Y) >= F because [78], by (Select) 81] filter2*(false, F, X, Y) >= Y because [79], by (Select) By the observations in [Kop12, Sec. 6.6], this reduction pair suffices; we may thus replace the dependency pair problem (P_5, R_0, static, formative) by (P_6, R_0, static, formative), where P_6 consists of: filter#(F, cons(X, Y)) =#> filter2#(F X, F, X, Y) Thus, the original system is terminating if each of (P_1, R_0, static, formative), (P_2, R_0, static, formative), (P_3, R_0, static, formative) and (P_6, R_0, static, formative) is finite. We consider the dependency pair problem (P_6, R_0, static, formative). We place the elements of P in a dependency graph approximation G (see e.g. [Kop12, Thm. 7.27, 7.29], as follows: * 0 : This graph has no strongly connected components. By [Kop12, Thm. 7.31], this implies finiteness of the dependency pair problem. Thus, the original system is terminating if each of (P_1, R_0, static, formative), (P_2, R_0, static, formative) and (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: map#(F, cons(X, Y)) >? map#(F, Y) times(X, 0) >= 0 times(X, s(Y)) >= plus(times(X, Y), X) plus(X, 0) >= X plus(0, X) >= X plus(X, s(Y)) >= s(plus(X, Y)) plus(s(X), Y) >= s(plus(X, Y)) map(F, nil) >= nil map(F, cons(X, Y)) >= cons(F X, map(F, Y)) filter(F, nil) >= nil filter(F, cons(X, Y)) >= filter2(F X, F, X, Y) filter2(true, F, X, Y) >= cons(X, filter(F, Y)) filter2(false, F, X, Y) >= filter(F, Y) 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]] = _|_ [[@_{o -> o}(x_1, x_2)]] = @_{o -> o}(x_2, x_1) [[filter(x_1, x_2)]] = filter(x_2, x_1) [[filter2(x_1, x_2, x_3, x_4)]] = filter2(x_4, x_2, x_3, x_1) [[nil]] = _|_ We choose Lex = {@_{o -> o}, filter, filter2} and Mul = {cons, false, map, map#, plus, s, times, true}, and the following precedence: false > map# > map > times > plus > @_{o -> o} = filter = filter2 > cons > s > true Taking the argument function into account, and fixing the greater / greater equal choices, the constraints can be denoted as follows: map#(F, cons(X, Y)) > map#(F, Y) times(X, _|_) >= _|_ times(X, s(Y)) >= plus(times(X, Y), X) plus(X, _|_) >= X plus(_|_, X) >= X plus(X, s(Y)) >= s(plus(X, Y)) plus(s(X), Y) >= s(plus(X, Y)) map(F, _|_) >= _|_ map(F, cons(X, Y)) >= cons(@_{o -> o}(F, X), map(F, Y)) filter(F, _|_) >= _|_ filter(F, cons(X, Y)) >= filter2(@_{o -> o}(F, X), F, X, Y) filter2(true, F, X, Y) >= cons(X, filter(F, Y)) filter2(false, F, X, Y) >= filter(F, Y) With these choices, we have: 1] map#(F, cons(X, Y)) > map#(F, Y) because [2], by definition 2] map#*(F, cons(X, Y)) >= map#(F, Y) because map# in Mul, [3] and [4], by (Stat) 3] F >= F by (Meta) 4] cons(X, Y) > Y because [5], by definition 5] cons*(X, Y) >= Y because [6], by (Select) 6] Y >= Y by (Meta) 7] times(X, _|_) >= _|_ by (Bot) 8] times(X, s(Y)) >= plus(times(X, Y), X) because [9], by (Star) 9] times*(X, s(Y)) >= plus(times(X, Y), X) because times > plus, [10] and [15], by (Copy) 10] times*(X, s(Y)) >= times(X, Y) because times in Mul, [11] and [12], by (Stat) 11] X >= X by (Meta) 12] s(Y) > Y because [13], by definition 13] s*(Y) >= Y because [14], by (Select) 14] Y >= Y by (Meta) 15] times*(X, s(Y)) >= X because [11], by (Select) 16] plus(X, _|_) >= X because [17], by (Star) 17] plus*(X, _|_) >= X because [18], by (Select) 18] X >= X by (Meta) 19] plus(_|_, X) >= X because [20], by (Star) 20] plus*(_|_, X) >= X because [21], by (Select) 21] X >= X by (Meta) 22] plus(X, s(Y)) >= s(plus(X, Y)) because [23], by (Star) 23] plus*(X, s(Y)) >= s(plus(X, Y)) because plus > s and [24], by (Copy) 24] plus*(X, s(Y)) >= plus(X, Y) because plus in Mul, [25] and [26], by (Stat) 25] X >= X by (Meta) 26] s(Y) > Y because [27], by definition 27] s*(Y) >= Y because [28], by (Select) 28] Y >= Y by (Meta) 29] plus(s(X), Y) >= s(plus(X, Y)) because [30], by (Star) 30] plus*(s(X), Y) >= s(plus(X, Y)) because plus > s and [31], by (Copy) 31] plus*(s(X), Y) >= plus(X, Y) because plus in Mul, [32] and [35], by (Stat) 32] s(X) > X because [33], by definition 33] s*(X) >= X because [34], by (Select) 34] X >= X by (Meta) 35] Y >= Y by (Meta) 36] map(F, _|_) >= _|_ by (Bot) 37] map(F, cons(X, Y)) >= cons(@_{o -> o}(F, X), map(F, Y)) because [38], by (Star) 38] map*(F, cons(X, Y)) >= cons(@_{o -> o}(F, X), map(F, Y)) because map > cons, [39] and [45], by (Copy) 39] map*(F, cons(X, Y)) >= @_{o -> o}(F, X) because map > @_{o -> o}, [40] and [41], by (Copy) 40] map*(F, cons(X, Y)) >= F because [3], by (Select) 41] map*(F, cons(X, Y)) >= X because [42], by (Select) 42] cons(X, Y) >= X because [43], by (Star) 43] cons*(X, Y) >= X because [44], by (Select) 44] X >= X by (Meta) 45] map*(F, cons(X, Y)) >= map(F, Y) because map in Mul, [3] and [4], by (Stat) 46] filter(F, _|_) >= _|_ by (Bot) 47] filter(F, cons(X, Y)) >= filter2(@_{o -> o}(F, X), F, X, Y) because [48], by (Star) 48] filter*(F, cons(X, Y)) >= filter2(@_{o -> o}(F, X), F, X, Y) because filter = filter2, [49], [52], [56], [58] and [60], by (Stat) 49] cons(X, Y) > Y because [50], by definition 50] cons*(X, Y) >= Y because [51], by (Select) 51] Y >= Y by (Meta) 52] filter*(F, cons(X, Y)) >= @_{o -> o}(F, X) because filter = @_{o -> o}, [53], [56] and [58], by (Stat) 53] cons(X, Y) > X because [54], by definition 54] cons*(X, Y) >= X because [55], by (Select) 55] X >= X by (Meta) 56] filter*(F, cons(X, Y)) >= F because [57], by (Select) 57] F >= F by (Meta) 58] filter*(F, cons(X, Y)) >= X because [59], by (Select) 59] cons(X, Y) >= X because [54], by (Star) 60] filter*(F, cons(X, Y)) >= Y because [61], by (Select) 61] cons(X, Y) >= Y because [50], by (Star) 62] filter2(true, F, X, Y) >= cons(X, filter(F, Y)) because [63], by (Star) 63] filter2*(true, F, X, Y) >= cons(X, filter(F, Y)) because filter2 > cons, [64] and [66], by (Copy) 64] filter2*(true, F, X, Y) >= X because [65], by (Select) 65] X >= X by (Meta) 66] filter2*(true, F, X, Y) >= filter(F, Y) because filter2 = filter, [67], [68], [69] and [70], by (Stat) 67] F >= F by (Meta) 68] Y >= Y by (Meta) 69] filter2*(true, F, X, Y) >= F because [67], by (Select) 70] filter2*(true, F, X, Y) >= Y because [68], by (Select) 71] filter2(false, F, X, Y) >= filter(F, Y) because [72], by (Star) 72] filter2*(false, F, X, Y) >= filter(F, Y) because filter2 = filter, [73], [74], [75] and [76], by (Stat) 73] F >= F by (Meta) 74] Y >= Y by (Meta) 75] filter2*(false, F, X, Y) >= F because [73], by (Select) 76] filter2*(false, F, X, Y) >= Y because [74], by (Select) By the observations in [Kop12, Sec. 6.6], this reduction pair suffices; we may thus replace a dependency pair problem (P_3, R_0) by ({}, R_0). By the empty set processor [Kop12, Thm. 7.15] this problem may be immediately removed. Thus, the original system is terminating if each of (P_1, R_0, static, formative) and (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#(X, s(Y)) >? plus#(X, Y) plus#(s(X), Y) >? plus#(X, Y) times(X, 0) >= 0 times(X, s(Y)) >= plus(times(X, Y), X) plus(X, 0) >= X plus(0, X) >= X plus(X, s(Y)) >= s(plus(X, Y)) plus(s(X), Y) >= s(plus(X, Y)) map(F, nil) >= nil map(F, cons(X, Y)) >= cons(F X, map(F, Y)) filter(F, nil) >= nil filter(F, cons(X, Y)) >= filter2(F X, F, X, Y) filter2(true, F, X, Y) >= cons(X, filter(F, Y)) filter2(false, F, X, Y) >= filter(F, Y) 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]] = _|_ [[cons(x_1, x_2)]] = x_2 [[filter2(x_1, x_2, x_3, x_4)]] = filter2(x_2, x_4) [[nil]] = _|_ [[plus#(x_1, x_2)]] = plus#(x_2, x_1) We choose Lex = {plus#} and Mul = {@_{o -> o}, false, filter, filter2, map, plus, s, times, true}, and the following precedence: false > filter = filter2 > @_{o -> o} > map > plus# > times > plus > s > true Taking the argument function into account, and fixing the greater / greater equal choices, the constraints can be denoted as follows: plus#(X, s(Y)) >= plus#(X, Y) plus#(s(X), Y) > plus#(X, Y) times(X, _|_) >= _|_ times(X, s(Y)) >= plus(times(X, Y), X) plus(X, _|_) >= X plus(_|_, X) >= X plus(X, s(Y)) >= s(plus(X, Y)) plus(s(X), Y) >= s(plus(X, Y)) map(F, _|_) >= _|_ map(F, X) >= map(F, X) filter(F, _|_) >= _|_ filter(F, X) >= filter2(F, X) filter2(F, X) >= filter(F, X) filter2(F, X) >= filter(F, X) With these choices, we have: 1] plus#(X, s(Y)) >= plus#(X, Y) because [2] and [3], by (Fun) 2] X >= X by (Meta) 3] s(Y) >= Y because [4], by (Star) 4] s*(Y) >= Y because [5], by (Select) 5] Y >= Y by (Meta) 6] plus#(s(X), Y) > plus#(X, Y) because [7], by definition 7] plus#*(s(X), Y) >= plus#(X, Y) because [8], [11], [12] and [14], by (Stat) 8] s(X) > X because [9], by definition 9] s*(X) >= X because [10], by (Select) 10] X >= X by (Meta) 11] Y >= Y by (Meta) 12] plus#*(s(X), Y) >= X because [13], by (Select) 13] s(X) >= X because [9], by (Star) 14] plus#*(s(X), Y) >= Y because [11], by (Select) 15] times(X, _|_) >= _|_ by (Bot) 16] times(X, s(Y)) >= plus(times(X, Y), X) because [17], by (Star) 17] times*(X, s(Y)) >= plus(times(X, Y), X) because times > plus, [18] and [23], by (Copy) 18] times*(X, s(Y)) >= times(X, Y) because times in Mul, [19] and [20], by (Stat) 19] X >= X by (Meta) 20] s(Y) > Y because [21], by definition 21] s*(Y) >= Y because [22], by (Select) 22] Y >= Y by (Meta) 23] times*(X, s(Y)) >= X because [19], by (Select) 24] plus(X, _|_) >= X because [25], by (Star) 25] plus*(X, _|_) >= X because [26], by (Select) 26] X >= X by (Meta) 27] plus(_|_, X) >= X because [28], by (Star) 28] plus*(_|_, X) >= X because [29], by (Select) 29] X >= X by (Meta) 30] plus(X, s(Y)) >= s(plus(X, Y)) because [31], by (Star) 31] plus*(X, s(Y)) >= s(plus(X, Y)) because plus > s and [32], by (Copy) 32] plus*(X, s(Y)) >= plus(X, Y) because plus in Mul, [2] and [33], by (Stat) 33] s(Y) > Y because [34], by definition 34] s*(Y) >= Y because [5], by (Select) 35] plus(s(X), Y) >= s(plus(X, Y)) because [36], by (Star) 36] plus*(s(X), Y) >= s(plus(X, Y)) because plus > s and [37], by (Copy) 37] plus*(s(X), Y) >= plus(X, Y) because plus in Mul, [8] and [11], by (Stat) 38] map(F, _|_) >= _|_ by (Bot) 39] map(F, X) >= map(F, X) because map in Mul, [40] and [41], by (Fun) 40] F >= F by (Meta) 41] X >= X by (Meta) 42] filter(F, _|_) >= _|_ by (Bot) 43] filter(F, X) >= filter2(F, X) because filter = filter2, filter in Mul, [44] and [45], by (Fun) 44] F >= F by (Meta) 45] X >= X by (Meta) 46] filter2(F, X) >= filter(F, X) because filter2 = filter, filter2 in Mul, [47] and [48], by (Fun) 47] F >= F by (Meta) 48] X >= X by (Meta) 49] filter2(F, X) >= filter(F, X) because filter2 = filter, filter2 in Mul, [50] and [51], by (Fun) 50] F >= F by (Meta) 51] X >= X by (Meta) 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_7, R_0, static, formative), where P_7 consists of: plus#(X, s(Y)) =#> plus#(X, Y) Thus, the original system is terminating if each of (P_1, R_0, static, formative) and (P_7, R_0, static, formative) is finite. We consider the dependency pair problem (P_7, 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#(X, s(Y)) >? plus#(X, Y) times(X, 0) >= 0 times(X, s(Y)) >= plus(times(X, Y), X) plus(X, 0) >= X plus(0, X) >= X plus(X, s(Y)) >= s(plus(X, Y)) plus(s(X), Y) >= s(plus(X, Y)) map(F, nil) >= nil map(F, cons(X, Y)) >= cons(F X, map(F, Y)) filter(F, nil) >= nil filter(F, cons(X, Y)) >= filter2(F X, F, X, Y) filter2(true, F, X, Y) >= cons(X, filter(F, Y)) filter2(false, F, X, Y) >= filter(F, Y) 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]] = _|_ [[filter2(x_1, x_2, x_3, x_4)]] = filter2(x_2, x_3, x_4) [[nil]] = _|_ We choose Lex = {} and Mul = {@_{o -> o}, cons, false, filter, filter2, map, plus, plus#, s, times, true}, and the following precedence: false > filter = filter2 > map > @_{o -> o} > cons > plus# > times > plus > s > true Taking the argument function into account, and fixing the greater / greater equal choices, the constraints can be denoted as follows: plus#(X, s(Y)) > plus#(X, Y) times(X, _|_) >= _|_ times(X, s(Y)) >= plus(times(X, Y), X) plus(X, _|_) >= X plus(_|_, X) >= X plus(X, s(Y)) >= s(plus(X, Y)) plus(s(X), Y) >= s(plus(X, Y)) map(F, _|_) >= _|_ map(F, cons(X, Y)) >= cons(@_{o -> o}(F, X), map(F, Y)) filter(F, _|_) >= _|_ filter(F, cons(X, Y)) >= filter2(F, X, Y) filter2(F, X, Y) >= cons(X, filter(F, Y)) filter2(F, X, Y) >= filter(F, Y) With these choices, we have: 1] plus#(X, s(Y)) > plus#(X, Y) because [2], by definition 2] plus#*(X, s(Y)) >= plus#(X, Y) because plus# in Mul, [3] and [4], by (Stat) 3] X >= X by (Meta) 4] s(Y) > Y because [5], by definition 5] s*(Y) >= Y because [6], by (Select) 6] Y >= Y by (Meta) 7] times(X, _|_) >= _|_ by (Bot) 8] times(X, s(Y)) >= plus(times(X, Y), X) because [9], by (Star) 9] times*(X, s(Y)) >= plus(times(X, Y), X) because times > plus, [10] and [15], by (Copy) 10] times*(X, s(Y)) >= times(X, Y) because times in Mul, [11] and [12], by (Stat) 11] X >= X by (Meta) 12] s(Y) > Y because [13], by definition 13] s*(Y) >= Y because [14], by (Select) 14] Y >= Y by (Meta) 15] times*(X, s(Y)) >= X because [11], by (Select) 16] plus(X, _|_) >= X because [17], by (Star) 17] plus*(X, _|_) >= X because [18], by (Select) 18] X >= X by (Meta) 19] plus(_|_, X) >= X because [20], by (Star) 20] plus*(_|_, X) >= X because [21], by (Select) 21] X >= X by (Meta) 22] plus(X, s(Y)) >= s(plus(X, Y)) because [23], by (Star) 23] plus*(X, s(Y)) >= s(plus(X, Y)) because plus > s and [24], by (Copy) 24] plus*(X, s(Y)) >= plus(X, Y) because plus in Mul, [3] and [4], by (Stat) 25] plus(s(X), Y) >= s(plus(X, Y)) because [26], by (Star) 26] plus*(s(X), Y) >= s(plus(X, Y)) because plus > s and [27], by (Copy) 27] plus*(s(X), Y) >= plus(X, Y) because plus in Mul, [28] and [31], by (Stat) 28] s(X) > X because [29], by definition 29] s*(X) >= X because [30], by (Select) 30] X >= X by (Meta) 31] Y >= Y by (Meta) 32] map(F, _|_) >= _|_ by (Bot) 33] map(F, cons(X, Y)) >= cons(@_{o -> o}(F, X), map(F, Y)) because [34], by (Star) 34] map*(F, cons(X, Y)) >= cons(@_{o -> o}(F, X), map(F, Y)) because map > cons, [35] and [42], by (Copy) 35] map*(F, cons(X, Y)) >= @_{o -> o}(F, X) because map > @_{o -> o}, [36] and [38], by (Copy) 36] map*(F, cons(X, Y)) >= F because [37], by (Select) 37] F >= F by (Meta) 38] map*(F, cons(X, Y)) >= X because [39], by (Select) 39] cons(X, Y) >= X because [40], by (Star) 40] cons*(X, Y) >= X because [41], by (Select) 41] X >= X by (Meta) 42] map*(F, cons(X, Y)) >= map(F, Y) because map in Mul, [43] and [44], by (Stat) 43] F >= F by (Meta) 44] cons(X, Y) > Y because [45], by definition 45] cons*(X, Y) >= Y because [46], by (Select) 46] Y >= Y by (Meta) 47] filter(F, _|_) >= _|_ by (Bot) 48] filter(F, cons(X, Y)) >= filter2(F, X, Y) because [49], by (Star) 49] filter*(F, cons(X, Y)) >= filter2(F, X, Y) because filter = filter2, filter in Mul, [50], [51] and [54], by (Stat) 50] F >= F by (Meta) 51] cons(X, Y) > X because [52], by definition 52] cons*(X, Y) >= X because [53], by (Select) 53] X >= X by (Meta) 54] cons(X, Y) > Y because [55], by definition 55] cons*(X, Y) >= Y because [56], by (Select) 56] Y >= Y by (Meta) 57] filter2(F, X, Y) >= cons(X, filter(F, Y)) because [58], by (Star) 58] filter2*(F, X, Y) >= cons(X, filter(F, Y)) because filter2 > cons, [59] and [61], by (Copy) 59] filter2*(F, X, Y) >= X because [60], by (Select) 60] X >= X by (Meta) 61] filter2*(F, X, Y) >= filter(F, Y) because filter2 = filter, filter2 in Mul, [62] and [63], by (Stat) 62] F >= F by (Meta) 63] Y >= Y by (Meta) 64] filter2(F, X, Y) >= filter(F, Y) because [65], by (Star) 65] filter2*(F, X, Y) >= filter(F, Y) because filter2 = filter, filter2 in Mul, [66] and [67], by (Stat) 66] F >= F by (Meta) 67] 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_7, R_0) by ({}, R_0). By the empty set processor [Kop12, Thm. 7.15] this problem may be immediately removed. 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: times#(X, s(Y)) >? times#(X, Y) times(X, 0) >= 0 times(X, s(Y)) >= plus(times(X, Y), X) plus(X, 0) >= X plus(0, X) >= X plus(X, s(Y)) >= s(plus(X, Y)) plus(s(X), Y) >= s(plus(X, Y)) map(F, nil) >= nil map(F, cons(X, Y)) >= cons(F X, map(F, Y)) filter(F, nil) >= nil filter(F, cons(X, Y)) >= filter2(F X, F, X, Y) filter2(true, F, X, Y) >= cons(X, filter(F, Y)) filter2(false, F, X, Y) >= filter(F, Y) 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]] = _|_ [[cons(x_1, x_2)]] = cons(x_2) [[filter(x_1, x_2)]] = x_2 [[filter2(x_1, x_2, x_3, x_4)]] = filter2(x_4) [[nil]] = _|_ [[times#(x_1, x_2)]] = times#(x_2, x_1) We choose Lex = {times#} and Mul = {@_{o -> o}, cons, false, filter2, map, plus, s, times, true}, and the following precedence: @_{o -> o} > false > map > cons = filter2 > times > plus > s > times# > true Taking the argument function into account, and fixing the greater / greater equal choices, the constraints can be denoted as follows: times#(X, s(Y)) > times#(X, Y) times(X, _|_) >= _|_ times(X, s(Y)) >= plus(times(X, Y), X) plus(X, _|_) >= X plus(_|_, X) >= X plus(X, s(Y)) >= s(plus(X, Y)) plus(s(X), Y) >= s(plus(X, Y)) map(F, _|_) >= _|_ map(F, cons(X)) >= cons(map(F, X)) _|_ >= _|_ cons(X) >= filter2(X) filter2(X) >= cons(X) filter2(X) >= X With these choices, we have: 1] times#(X, s(Y)) > times#(X, Y) because [2], by definition 2] times#*(X, s(Y)) >= times#(X, Y) because [3], [6] and [8], by (Stat) 3] s(Y) > Y because [4], by definition 4] s*(Y) >= Y because [5], by (Select) 5] Y >= Y by (Meta) 6] times#*(X, s(Y)) >= X because [7], by (Select) 7] X >= X by (Meta) 8] times#*(X, s(Y)) >= Y because [9], by (Select) 9] s(Y) >= Y because [4], by (Star) 10] times(X, _|_) >= _|_ by (Bot) 11] times(X, s(Y)) >= plus(times(X, Y), X) because [12], by (Star) 12] times*(X, s(Y)) >= plus(times(X, Y), X) because times > plus, [13] and [15], by (Copy) 13] times*(X, s(Y)) >= times(X, Y) because times in Mul, [14] and [3], by (Stat) 14] X >= X by (Meta) 15] times*(X, s(Y)) >= X because [14], by (Select) 16] plus(X, _|_) >= X because [17], by (Star) 17] plus*(X, _|_) >= X because [18], by (Select) 18] X >= X by (Meta) 19] plus(_|_, X) >= X because [20], by (Star) 20] plus*(_|_, X) >= X because [21], by (Select) 21] X >= X by (Meta) 22] plus(X, s(Y)) >= s(plus(X, Y)) because [23], by (Star) 23] plus*(X, s(Y)) >= s(plus(X, Y)) because plus > s and [24], by (Copy) 24] plus*(X, s(Y)) >= plus(X, Y) because plus in Mul, [25] and [26], by (Stat) 25] X >= X by (Meta) 26] s(Y) > Y because [27], by definition 27] s*(Y) >= Y because [28], by (Select) 28] Y >= Y by (Meta) 29] plus(s(X), Y) >= s(plus(X, Y)) because [30], by (Star) 30] plus*(s(X), Y) >= s(plus(X, Y)) because plus > s and [31], by (Copy) 31] plus*(s(X), Y) >= plus(X, Y) because plus in Mul, [32] and [35], by (Stat) 32] s(X) > X because [33], by definition 33] s*(X) >= X because [34], by (Select) 34] X >= X by (Meta) 35] Y >= Y by (Meta) 36] map(F, _|_) >= _|_ by (Bot) 37] map(F, cons(X)) >= cons(map(F, X)) because [38], by (Star) 38] map*(F, cons(X)) >= cons(map(F, X)) because map > cons and [39], by (Copy) 39] map*(F, cons(X)) >= map(F, X) because map in Mul, [40] and [41], by (Stat) 40] F >= F by (Meta) 41] cons(X) > X because [42], by definition 42] cons*(X) >= X because [43], by (Select) 43] X >= X by (Meta) 44] _|_ >= _|_ by (Bot) 45] cons(X) >= filter2(X) because cons = filter2, cons in Mul and [46], by (Fun) 46] X >= X by (Meta) 47] filter2(X) >= cons(X) because filter2 = cons, filter2 in Mul and [48], by (Fun) 48] X >= X by (Meta) 49] filter2(X) >= X because [50], by (Star) 50] filter2*(X) >= X because [51], by (Select) 51] X >= X by (Meta) By the observations in [Kop12, Sec. 6.6], this reduction pair suffices; we may thus replace a dependency pair problem (P_1, 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.