From 5f6211af0a05ae0fb39f3a04a786ffeffb6e4442 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 14 Oct 2023 18:22:17 +0200 Subject: Generic Church and hyperfac --- std/Number/Unary.bruijn | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) (limited to 'std/Number/Unary.bruijn') diff --git a/std/Number/Unary.bruijn b/std/Number/Unary.bruijn index 33127f4..f5de3e2 100644 --- a/std/Number/Unary.bruijn +++ b/std/Number/Unary.bruijn @@ -1,11 +1,22 @@ # MIT License, Copyright (c) 2022 Marvin Borner -# with help from Justine Tunney +# with implicit help from Justine Tunney and John Tromp # classic Church style numerals :import std/Logic . :import std/Combinator . :import std/Pair . +# id for church numerals +# generic base for dec/fib/fac/etc. +uid [[[extract (2 inc init)]]] ⧗ Unary → Unary + extract [0 [0]] + inc [[0 (1 3)]] + init [0 1] + +:test (uid (+0u)) ((+0u)) +:test (uid (+1u)) ((+1u)) +:test (uid (+5u)) ((+5u)) + # returns true if a unary number is zero zero? [0 [(+0u)] true] ⧗ Unary → Boolean @@ -24,7 +35,10 @@ inc [[[1 (2 1 0)]]] ⧗ Unary → Unary :test (++(+42u)) ((+43u)) # subs 1 from a unary number -dec [[[2 [[0 (1 3)]] [1] [0]]]] ⧗ Unary → Unary +dec [[[extract (2 inc const)]]] ⧗ Unary → Unary + extract [0 [0]] + inc [[0 (1 3)]] + const [1] --‣ dec @@ -161,3 +175,8 @@ fib [0 [[[2 0 [2 (1 0)]]]] [[1]] [0]] ⧗ Unary → Unary fac [[1 [[0 (1 [[2 1 (1 0)]])]] [1] [0]]] ⧗ Unary → Unary :test (fac (+3u)) ((+6u)) + +# hyperfactorial function +hyperfac [[1 [[(0 0) (1 [[2 1 (1 0)]])]] [1] [0]]] ⧗ Unary → Unary + +:test (hyperfac (+3u)) ((+108u)) -- cgit v1.2.3