We consider universal computability of the LCTRS with only rule scheme Calc: Signature: f :: Int -> A (private) g :: Int -> A Rules: f(x) -> g(x - 1) g(x) -> f(x) | x > 0 The system is accessible function passing by a sort ordering that equates all sorts. We start by computing the initial DP problem D1 = (P1, R UNION R_?, f, c), where: P1. (1) f#(x) => g#(x - 1) (private) (2) g#(x) => f#(x) | x > 0 ***** We apply the Theory Arguments Processor on D1 = (P1, R UNION R_?, f, c). We use the following theory arguments function, which fixes all public dependency pairs: f# : [1] g# : [1] Processor output: { D2 = (P2, R UNION R_?, f, c) }, where: P2. (1) f#(x) => g#(x - 1) { x } (private) (2) g#(x) => f#(x) | x > 0 ***** We apply the Integer Function Processor on D2 = (P2, R UNION R_?, f, c). We use the following integer mapping: J(f#) = arg_1 - 1 J(g#) = arg_1 We thus have: (1) true |= x - 1 >= x - 1 (2) x > 0 |= x > x - 1 (and x >= 0) We may remove the strictly oriented DPs, which yields: Processor output: { D3 = (P3, R UNION R_?, f, c) }, where: P3. (1) f#(x) => g#(x - 1) { x } ***** We apply the Graph Processor on D3 = (P3, R UNION R_?, f, c). We compute a graph approximation with the following edges: 1: As there are no SCCs, this DP problem is removed. Processor output: { }.