YES We show the termination of the relative TRS R/S: R: minus(x,|0|()) -> x minus(s(x),s(y)) -> minus(x,y) quot(|0|(),s(y)) -> |0|() quot(s(x),s(y)) -> s(quot(minus(x,y),s(y))) le(|0|(),y) -> true() le(s(x),|0|()) -> false() le(s(x),s(y)) -> le(x,y) app(nil(),y) -> y app(add(n,x),y) -> add(n,app(x,y)) low(n,nil()) -> nil() low(n,add(m,x)) -> if_low(le(m,n),n,add(m,x)) if_low(true(),n,add(m,x)) -> add(m,low(n,x)) if_low(false(),n,add(m,x)) -> low(n,x) high(n,nil()) -> nil() high(n,add(m,x)) -> if_high(le(m,n),n,add(m,x)) if_high(true(),n,add(m,x)) -> high(n,x) if_high(false(),n,add(m,x)) -> add(m,high(n,x)) quicksort(nil()) -> nil() quicksort(add(n,x)) -> app(quicksort(low(n,x)),add(n,quicksort(high(n,x)))) S: rand(x) -> x rand(x) -> rand(s(x)) -- SCC decomposition. Consider the non-minimal dependency pair problem (P, R), where P consists of p1: minus#(s(x),s(y)) -> minus#(x,y) p2: quot#(s(x),s(y)) -> quot#(minus(x,y),s(y)) p3: quot#(s(x),s(y)) -> minus#(x,y) p4: le#(s(x),s(y)) -> le#(x,y) p5: app#(add(n,x),y) -> app#(x,y) p6: low#(n,add(m,x)) -> if_low#(le(m,n),n,add(m,x)) p7: low#(n,add(m,x)) -> le#(m,n) p8: if_low#(true(),n,add(m,x)) -> low#(n,x) p9: if_low#(false(),n,add(m,x)) -> low#(n,x) p10: high#(n,add(m,x)) -> if_high#(le(m,n),n,add(m,x)) p11: high#(n,add(m,x)) -> le#(m,n) p12: if_high#(true(),n,add(m,x)) -> high#(n,x) p13: if_high#(false(),n,add(m,x)) -> high#(n,x) p14: quicksort#(add(n,x)) -> app#(quicksort(low(n,x)),add(n,quicksort(high(n,x)))) p15: quicksort#(add(n,x)) -> quicksort#(low(n,x)) p16: quicksort#(add(n,x)) -> low#(n,x) p17: quicksort#(add(n,x)) -> quicksort#(high(n,x)) p18: quicksort#(add(n,x)) -> high#(n,x) and R consists of: r1: minus(x,|0|()) -> x r2: minus(s(x),s(y)) -> minus(x,y) r3: quot(|0|(),s(y)) -> |0|() r4: quot(s(x),s(y)) -> s(quot(minus(x,y),s(y))) r5: le(|0|(),y) -> true() r6: le(s(x),|0|()) -> false() r7: le(s(x),s(y)) -> le(x,y) r8: app(nil(),y) -> y r9: app(add(n,x),y) -> add(n,app(x,y)) r10: low(n,nil()) -> nil() r11: low(n,add(m,x)) -> if_low(le(m,n),n,add(m,x)) r12: if_low(true(),n,add(m,x)) -> add(m,low(n,x)) r13: if_low(false(),n,add(m,x)) -> low(n,x) r14: high(n,nil()) -> nil() r15: high(n,add(m,x)) -> if_high(le(m,n),n,add(m,x)) r16: if_high(true(),n,add(m,x)) -> high(n,x) r17: if_high(false(),n,add(m,x)) -> add(m,high(n,x)) r18: quicksort(nil()) -> nil() r19: quicksort(add(n,x)) -> app(quicksort(low(n,x)),add(n,quicksort(high(n,x)))) r20: rand(x) -> x r21: rand(x) -> rand(s(x)) The estimated dependency graph contains the following SCCs: {p2} {p1} {p15, p17} {p10, p12, p13} {p6, p8, p9} {p4} {p5} -- Reduction pair. Consider the non-minimal dependency pair problem (P, R), where P consists of p1: quot#(s(x),s(y)) -> quot#(minus(x,y),s(y)) and R consists of: r1: minus(x,|0|()) -> x r2: minus(s(x),s(y)) -> minus(x,y) r3: quot(|0|(),s(y)) -> |0|() r4: quot(s(x),s(y)) -> s(quot(minus(x,y),s(y))) r5: le(|0|(),y) -> true() r6: le(s(x),|0|()) -> false() r7: le(s(x),s(y)) -> le(x,y) r8: app(nil(),y) -> y r9: app(add(n,x),y) -> add(n,app(x,y)) r10: low(n,nil()) -> nil() r11: low(n,add(m,x)) -> if_low(le(m,n),n,add(m,x)) r12: if_low(true(),n,add(m,x)) -> add(m,low(n,x)) r13: if_low(false(),n,add(m,x)) -> low(n,x) r14: high(n,nil()) -> nil() r15: high(n,add(m,x)) -> if_high(le(m,n),n,add(m,x)) r16: if_high(true(),n,add(m,x)) -> high(n,x) r17: if_high(false(),n,add(m,x)) -> add(m,high(n,x)) r18: quicksort(nil()) -> nil() r19: quicksort(add(n,x)) -> app(quicksort(low(n,x)),add(n,quicksort(high(n,x)))) r20: rand(x) -> x r21: rand(x) -> rand(s(x)) The set of usable rules consists of r1, r2, r3, r4, r5, r6, r7, r8, r9, r10, r11, r12, r13, r14, r15, r16, r17, r18, r19, r20, r21 Take the reduction pair: lexicographic combination of reduction pairs: 1. lexicographic path order with precedence: precedence: s > rand > add > nil > high > low > app > quicksort > if_high > if_low > quot > |0| > le > false > true > minus > quot# argument filter: pi(quot#) = 1 pi(s) = 1 pi(minus) = 1 pi(|0|) = [] pi(quot) = [1] pi(le) = [1] pi(true) = [] pi(false) = [] pi(app) = 2 pi(nil) = [] pi(add) = 2 pi(low) = 2 pi(if_low) = 3 pi(high) = 2 pi(if_high) = 3 pi(quicksort) = [1] pi(rand) = [1] 2. lexicographic path order with precedence: precedence: rand > quicksort > app > add > low > nil > quot > s > if_high > high > if_low > false > true > le > minus > |0| > quot# argument filter: pi(quot#) = 1 pi(s) = [1] pi(minus) = 1 pi(|0|) = [] pi(quot) = 1 pi(le) = 1 pi(true) = [] pi(false) = [] pi(app) = 2 pi(nil) = [] pi(add) = 2 pi(low) = 2 pi(if_low) = 3 pi(high) = 2 pi(if_high) = 3 pi(quicksort) = [] pi(rand) = [] The next rules are strictly ordered: p1 We remove them from the problem. Then no dependency pair remains. -- Reduction pair. Consider the non-minimal dependency pair problem (P, R), where P consists of p1: minus#(s(x),s(y)) -> minus#(x,y) and R consists of: r1: minus(x,|0|()) -> x r2: minus(s(x),s(y)) -> minus(x,y) r3: quot(|0|(),s(y)) -> |0|() r4: quot(s(x),s(y)) -> s(quot(minus(x,y),s(y))) r5: le(|0|(),y) -> true() r6: le(s(x),|0|()) -> false() r7: le(s(x),s(y)) -> le(x,y) r8: app(nil(),y) -> y r9: app(add(n,x),y) -> add(n,app(x,y)) r10: low(n,nil()) -> nil() r11: low(n,add(m,x)) -> if_low(le(m,n),n,add(m,x)) r12: if_low(true(),n,add(m,x)) -> add(m,low(n,x)) r13: if_low(false(),n,add(m,x)) -> low(n,x) r14: high(n,nil()) -> nil() r15: high(n,add(m,x)) -> if_high(le(m,n),n,add(m,x)) r16: if_high(true(),n,add(m,x)) -> high(n,x) r17: if_high(false(),n,add(m,x)) -> add(m,high(n,x)) r18: quicksort(nil()) -> nil() r19: quicksort(add(n,x)) -> app(quicksort(low(n,x)),add(n,quicksort(high(n,x)))) r20: rand(x) -> x r21: rand(x) -> rand(s(x)) The set of usable rules consists of r1, r2, r3, r4, r5, r6, r7, r8, r9, r10, r11, r12, r13, r14, r15, r16, r17, r18, r19, r20, r21 Take the reduction pair: lexicographic combination of reduction pairs: 1. lexicographic path order with precedence: precedence: s > rand > add > nil > high > low > app > quicksort > if_high > if_low > quot > |0| > false > true > le > minus > minus# argument filter: pi(minus#) = 2 pi(s) = 1 pi(minus) = 1 pi(|0|) = [] pi(quot) = [1, 2] pi(le) = [1, 2] pi(true) = [] pi(false) = [] pi(app) = 2 pi(nil) = [] pi(add) = 2 pi(low) = 2 pi(if_low) = 3 pi(high) = 2 pi(if_high) = 3 pi(quicksort) = [1] pi(rand) = [1] 2. lexicographic path order with precedence: precedence: rand > add > nil > low > app > if_high > false > le > quot > s > high > quicksort > if_low > true > |0| > minus > minus# argument filter: pi(minus#) = 2 pi(s) = [1] pi(minus) = [1] pi(|0|) = [] pi(quot) = [1, 2] pi(le) = [1] pi(true) = [] pi(false) = [] pi(app) = 2 pi(nil) = [] pi(add) = 2 pi(low) = 2 pi(if_low) = 3 pi(high) = 2 pi(if_high) = 3 pi(quicksort) = [1] pi(rand) = [] The next rules are strictly ordered: p1 We remove them from the problem. Then no dependency pair remains. -- Reduction pair. Consider the non-minimal dependency pair problem (P, R), where P consists of p1: quicksort#(add(n,x)) -> quicksort#(high(n,x)) p2: quicksort#(add(n,x)) -> quicksort#(low(n,x)) and R consists of: r1: minus(x,|0|()) -> x r2: minus(s(x),s(y)) -> minus(x,y) r3: quot(|0|(),s(y)) -> |0|() r4: quot(s(x),s(y)) -> s(quot(minus(x,y),s(y))) r5: le(|0|(),y) -> true() r6: le(s(x),|0|()) -> false() r7: le(s(x),s(y)) -> le(x,y) r8: app(nil(),y) -> y r9: app(add(n,x),y) -> add(n,app(x,y)) r10: low(n,nil()) -> nil() r11: low(n,add(m,x)) -> if_low(le(m,n),n,add(m,x)) r12: if_low(true(),n,add(m,x)) -> add(m,low(n,x)) r13: if_low(false(),n,add(m,x)) -> low(n,x) r14: high(n,nil()) -> nil() r15: high(n,add(m,x)) -> if_high(le(m,n),n,add(m,x)) r16: if_high(true(),n,add(m,x)) -> high(n,x) r17: if_high(false(),n,add(m,x)) -> add(m,high(n,x)) r18: quicksort(nil()) -> nil() r19: quicksort(add(n,x)) -> app(quicksort(low(n,x)),add(n,quicksort(high(n,x)))) r20: rand(x) -> x r21: rand(x) -> rand(s(x)) The set of usable rules consists of r1, r2, r3, r4, r5, r6, r7, r8, r9, r10, r11, r12, r13, r14, r15, r16, r17, r18, r19, r20, r21 Take the reduction pair: lexicographic combination of reduction pairs: 1. lexicographic path order with precedence: precedence: s > rand > nil > |0| > low > quicksort > app > if_low > add > high > if_high > le > false > true > minus > quot > quicksort# argument filter: pi(quicksort#) = 1 pi(add) = [2] pi(high) = 2 pi(low) = 2 pi(minus) = 1 pi(|0|) = [] pi(s) = 1 pi(quot) = [1] pi(le) = [] pi(true) = [] pi(false) = [] pi(app) = [1, 2] pi(nil) = [] pi(if_low) = 3 pi(if_high) = 3 pi(quicksort) = [1] pi(rand) = 1 2. lexicographic path order with precedence: precedence: s > rand > app > low > if_low > add > quicksort > high > nil > if_high > false > true > le > |0| > minus > quot > quicksort# argument filter: pi(quicksort#) = 1 pi(add) = [2] pi(high) = 2 pi(low) = 2 pi(minus) = 1 pi(|0|) = [] pi(s) = 1 pi(quot) = 1 pi(le) = [] pi(true) = [] pi(false) = [] pi(app) = 1 pi(nil) = [] pi(if_low) = 3 pi(if_high) = 3 pi(quicksort) = [] pi(rand) = [1] The next rules are strictly ordered: p1, p2 We remove them from the problem. Then no dependency pair remains. -- Reduction pair. Consider the non-minimal dependency pair problem (P, R), where P consists of p1: if_high#(false(),n,add(m,x)) -> high#(n,x) p2: high#(n,add(m,x)) -> if_high#(le(m,n),n,add(m,x)) p3: if_high#(true(),n,add(m,x)) -> high#(n,x) and R consists of: r1: minus(x,|0|()) -> x r2: minus(s(x),s(y)) -> minus(x,y) r3: quot(|0|(),s(y)) -> |0|() r4: quot(s(x),s(y)) -> s(quot(minus(x,y),s(y))) r5: le(|0|(),y) -> true() r6: le(s(x),|0|()) -> false() r7: le(s(x),s(y)) -> le(x,y) r8: app(nil(),y) -> y r9: app(add(n,x),y) -> add(n,app(x,y)) r10: low(n,nil()) -> nil() r11: low(n,add(m,x)) -> if_low(le(m,n),n,add(m,x)) r12: if_low(true(),n,add(m,x)) -> add(m,low(n,x)) r13: if_low(false(),n,add(m,x)) -> low(n,x) r14: high(n,nil()) -> nil() r15: high(n,add(m,x)) -> if_high(le(m,n),n,add(m,x)) r16: if_high(true(),n,add(m,x)) -> high(n,x) r17: if_high(false(),n,add(m,x)) -> add(m,high(n,x)) r18: quicksort(nil()) -> nil() r19: quicksort(add(n,x)) -> app(quicksort(low(n,x)),add(n,quicksort(high(n,x)))) r20: rand(x) -> x r21: rand(x) -> rand(s(x)) The set of usable rules consists of r1, r2, r3, r4, r5, r6, r7, r8, r9, r10, r11, r12, r13, r14, r15, r16, r17, r18, r19, r20, r21 Take the reduction pair: lexicographic combination of reduction pairs: 1. lexicographic path order with precedence: precedence: quicksort > s > rand > nil > le > low > app > add > high > if_high > true > if_low > |0| > minus > quot > if_high# > high# > false argument filter: pi(if_high#) = 3 pi(false) = [] pi(add) = [2] pi(high#) = 2 pi(le) = [2] pi(true) = [] pi(minus) = 1 pi(|0|) = [] pi(s) = 1 pi(quot) = [1, 2] pi(app) = [1, 2] pi(nil) = [] pi(low) = 2 pi(if_low) = 3 pi(high) = 2 pi(if_high) = 3 pi(quicksort) = [1] pi(rand) = 1 2. lexicographic path order with precedence: precedence: false > s > rand > nil > high > low > app > quicksort > if_high > if_low > |0| > minus > quot > high# > add > true > le > if_high# argument filter: pi(if_high#) = [3] pi(false) = [] pi(add) = 2 pi(high#) = [2] pi(le) = 2 pi(true) = [] pi(minus) = 1 pi(|0|) = [] pi(s) = 1 pi(quot) = 2 pi(app) = 2 pi(nil) = [] pi(low) = 2 pi(if_low) = 3 pi(high) = 2 pi(if_high) = 3 pi(quicksort) = [1] pi(rand) = [1] The next rules are strictly ordered: p1, p2, p3 We remove them from the problem. Then no dependency pair remains. -- Reduction pair. Consider the non-minimal dependency pair problem (P, R), where P consists of p1: if_low#(false(),n,add(m,x)) -> low#(n,x) p2: low#(n,add(m,x)) -> if_low#(le(m,n),n,add(m,x)) p3: if_low#(true(),n,add(m,x)) -> low#(n,x) and R consists of: r1: minus(x,|0|()) -> x r2: minus(s(x),s(y)) -> minus(x,y) r3: quot(|0|(),s(y)) -> |0|() r4: quot(s(x),s(y)) -> s(quot(minus(x,y),s(y))) r5: le(|0|(),y) -> true() r6: le(s(x),|0|()) -> false() r7: le(s(x),s(y)) -> le(x,y) r8: app(nil(),y) -> y r9: app(add(n,x),y) -> add(n,app(x,y)) r10: low(n,nil()) -> nil() r11: low(n,add(m,x)) -> if_low(le(m,n),n,add(m,x)) r12: if_low(true(),n,add(m,x)) -> add(m,low(n,x)) r13: if_low(false(),n,add(m,x)) -> low(n,x) r14: high(n,nil()) -> nil() r15: high(n,add(m,x)) -> if_high(le(m,n),n,add(m,x)) r16: if_high(true(),n,add(m,x)) -> high(n,x) r17: if_high(false(),n,add(m,x)) -> add(m,high(n,x)) r18: quicksort(nil()) -> nil() r19: quicksort(add(n,x)) -> app(quicksort(low(n,x)),add(n,quicksort(high(n,x)))) r20: rand(x) -> x r21: rand(x) -> rand(s(x)) The set of usable rules consists of r1, r2, r3, r4, r5, r6, r7, r8, r9, r10, r11, r12, r13, r14, r15, r16, r17, r18, r19, r20, r21 Take the reduction pair: lexicographic combination of reduction pairs: 1. lexicographic path order with precedence: precedence: quicksort > s > rand > nil > le > true > app > |0| > add > high > if_high > low > if_low > minus > quot > if_low# > low# > false argument filter: pi(if_low#) = 3 pi(false) = [] pi(add) = [2] pi(low#) = 2 pi(le) = [1, 2] pi(true) = [] pi(minus) = 1 pi(|0|) = [] pi(s) = 1 pi(quot) = [1, 2] pi(app) = [1, 2] pi(nil) = [] pi(low) = 2 pi(if_low) = 3 pi(high) = 2 pi(if_high) = 3 pi(quicksort) = [1] pi(rand) = 1 2. lexicographic path order with precedence: precedence: false > s > rand > nil > high > low > app > quicksort > if_high > if_low > |0| > minus > quot > low# > add > true > le > if_low# argument filter: pi(if_low#) = 3 pi(false) = [] pi(add) = 2 pi(low#) = 2 pi(le) = 1 pi(true) = [] pi(minus) = [1] pi(|0|) = [] pi(s) = 1 pi(quot) = 2 pi(app) = [1] pi(nil) = [] pi(low) = 2 pi(if_low) = 3 pi(high) = 2 pi(if_high) = 3 pi(quicksort) = [1] pi(rand) = 1 The next rules are strictly ordered: p1, p3 We remove them from the problem. -- SCC decomposition. Consider the non-minimal dependency pair problem (P, R), where P consists of p1: low#(n,add(m,x)) -> if_low#(le(m,n),n,add(m,x)) and R consists of: r1: minus(x,|0|()) -> x r2: minus(s(x),s(y)) -> minus(x,y) r3: quot(|0|(),s(y)) -> |0|() r4: quot(s(x),s(y)) -> s(quot(minus(x,y),s(y))) r5: le(|0|(),y) -> true() r6: le(s(x),|0|()) -> false() r7: le(s(x),s(y)) -> le(x,y) r8: app(nil(),y) -> y r9: app(add(n,x),y) -> add(n,app(x,y)) r10: low(n,nil()) -> nil() r11: low(n,add(m,x)) -> if_low(le(m,n),n,add(m,x)) r12: if_low(true(),n,add(m,x)) -> add(m,low(n,x)) r13: if_low(false(),n,add(m,x)) -> low(n,x) r14: high(n,nil()) -> nil() r15: high(n,add(m,x)) -> if_high(le(m,n),n,add(m,x)) r16: if_high(true(),n,add(m,x)) -> high(n,x) r17: if_high(false(),n,add(m,x)) -> add(m,high(n,x)) r18: quicksort(nil()) -> nil() r19: quicksort(add(n,x)) -> app(quicksort(low(n,x)),add(n,quicksort(high(n,x)))) r20: rand(x) -> x r21: rand(x) -> rand(s(x)) The estimated dependency graph contains the following SCCs: (no SCCs) -- Reduction pair. Consider the non-minimal dependency pair problem (P, R), where P consists of p1: le#(s(x),s(y)) -> le#(x,y) and R consists of: r1: minus(x,|0|()) -> x r2: minus(s(x),s(y)) -> minus(x,y) r3: quot(|0|(),s(y)) -> |0|() r4: quot(s(x),s(y)) -> s(quot(minus(x,y),s(y))) r5: le(|0|(),y) -> true() r6: le(s(x),|0|()) -> false() r7: le(s(x),s(y)) -> le(x,y) r8: app(nil(),y) -> y r9: app(add(n,x),y) -> add(n,app(x,y)) r10: low(n,nil()) -> nil() r11: low(n,add(m,x)) -> if_low(le(m,n),n,add(m,x)) r12: if_low(true(),n,add(m,x)) -> add(m,low(n,x)) r13: if_low(false(),n,add(m,x)) -> low(n,x) r14: high(n,nil()) -> nil() r15: high(n,add(m,x)) -> if_high(le(m,n),n,add(m,x)) r16: if_high(true(),n,add(m,x)) -> high(n,x) r17: if_high(false(),n,add(m,x)) -> add(m,high(n,x)) r18: quicksort(nil()) -> nil() r19: quicksort(add(n,x)) -> app(quicksort(low(n,x)),add(n,quicksort(high(n,x)))) r20: rand(x) -> x r21: rand(x) -> rand(s(x)) The set of usable rules consists of r1, r2, r3, r4, r5, r6, r7, r8, r9, r10, r11, r12, r13, r14, r15, r16, r17, r18, r19, r20, r21 Take the reduction pair: lexicographic combination of reduction pairs: 1. lexicographic path order with precedence: precedence: s > rand > add > nil > high > low > app > quicksort > if_high > if_low > quot > |0| > false > true > le > minus > le# argument filter: pi(le#) = 2 pi(s) = 1 pi(minus) = 1 pi(|0|) = [] pi(quot) = [1, 2] pi(le) = [1, 2] pi(true) = [] pi(false) = [] pi(app) = 2 pi(nil) = [] pi(add) = 2 pi(low) = 2 pi(if_low) = 3 pi(high) = 2 pi(if_high) = 3 pi(quicksort) = [1] pi(rand) = [1] 2. lexicographic path order with precedence: precedence: rand > add > nil > low > app > if_high > false > le > quot > s > high > quicksort > if_low > true > |0| > minus > le# argument filter: pi(le#) = 2 pi(s) = [1] pi(minus) = [1] pi(|0|) = [] pi(quot) = [1, 2] pi(le) = [1] pi(true) = [] pi(false) = [] pi(app) = 2 pi(nil) = [] pi(add) = 2 pi(low) = 2 pi(if_low) = 3 pi(high) = 2 pi(if_high) = 3 pi(quicksort) = [1] pi(rand) = [] The next rules are strictly ordered: p1 We remove them from the problem. Then no dependency pair remains. -- Reduction pair. Consider the non-minimal dependency pair problem (P, R), where P consists of p1: app#(add(n,x),y) -> app#(x,y) and R consists of: r1: minus(x,|0|()) -> x r2: minus(s(x),s(y)) -> minus(x,y) r3: quot(|0|(),s(y)) -> |0|() r4: quot(s(x),s(y)) -> s(quot(minus(x,y),s(y))) r5: le(|0|(),y) -> true() r6: le(s(x),|0|()) -> false() r7: le(s(x),s(y)) -> le(x,y) r8: app(nil(),y) -> y r9: app(add(n,x),y) -> add(n,app(x,y)) r10: low(n,nil()) -> nil() r11: low(n,add(m,x)) -> if_low(le(m,n),n,add(m,x)) r12: if_low(true(),n,add(m,x)) -> add(m,low(n,x)) r13: if_low(false(),n,add(m,x)) -> low(n,x) r14: high(n,nil()) -> nil() r15: high(n,add(m,x)) -> if_high(le(m,n),n,add(m,x)) r16: if_high(true(),n,add(m,x)) -> high(n,x) r17: if_high(false(),n,add(m,x)) -> add(m,high(n,x)) r18: quicksort(nil()) -> nil() r19: quicksort(add(n,x)) -> app(quicksort(low(n,x)),add(n,quicksort(high(n,x)))) r20: rand(x) -> x r21: rand(x) -> rand(s(x)) The set of usable rules consists of r1, r2, r3, r4, r5, r6, r7, r8, r9, r10, r11, r12, r13, r14, r15, r16, r17, r18, r19, r20, r21 Take the reduction pair: lexicographic combination of reduction pairs: 1. lexicographic path order with precedence: precedence: s > rand > nil > high > |0| > le > false > true > low > quicksort > app > if_low > add > if_high > minus > quot > app# argument filter: pi(app#) = [1] pi(add) = [1, 2] pi(minus) = 1 pi(|0|) = [] pi(s) = 1 pi(quot) = 1 pi(le) = [] pi(true) = [] pi(false) = [] pi(app) = [1, 2] pi(nil) = [] pi(low) = 2 pi(if_low) = 3 pi(high) = 2 pi(if_high) = 3 pi(quicksort) = [1] pi(rand) = 1 2. lexicographic path order with precedence: precedence: rand > nil > quicksort > if_high > high > quot > s > app > add > low > if_low > true > le > false > |0| > minus > app# argument filter: pi(app#) = 1 pi(add) = [2] pi(minus) = 1 pi(|0|) = [] pi(s) = 1 pi(quot) = 1 pi(le) = [] pi(true) = [] pi(false) = [] pi(app) = 2 pi(nil) = [] pi(low) = 2 pi(if_low) = 3 pi(high) = 2 pi(if_high) = 3 pi(quicksort) = 1 pi(rand) = [1] The next rules are strictly ordered: p1 We remove them from the problem. Then no dependency pair remains.