aboutsummaryrefslogtreecommitdiffhomepage
path: root/std/Math/Rational.bruijn
diff options
context:
space:
mode:
authorMarvin Borner2024-05-02 21:57:58 +0200
committerMarvin Borner2024-05-02 21:57:58 +0200
commita25ed8a75d036de252cfe74b5fa0788215194b41 (patch)
tree65ab549fe20b719535113a4af40bd4c784765cbb /std/Math/Rational.bruijn
parent349e8574c67bf575ed39694c8085eab00473bfaa (diff)
More math
MAATHTHAHHAHA
Diffstat (limited to 'std/Math/Rational.bruijn')
-rw-r--r--std/Math/Rational.bruijn7
1 files changed, 6 insertions, 1 deletions
diff --git a/std/Math/Rational.bruijn b/std/Math/Rational.bruijn
index 54c3a88..f1509b0 100644
--- a/std/Math/Rational.bruijn
+++ b/std/Math/Rational.bruijn
@@ -3,6 +3,7 @@
# (p : q) ⇔ (1 / (q + 1))
+:import std/Logic .
:import std/Combinator .
:import std/Logic .
:import std/Pair .
@@ -91,6 +92,10 @@ div [[1 ⋅ ~0]] ⧗ Rational → Rational → Rational
:test ((+8.0) / (+4.0) =? (+2.0)) (true)
:test ((+18.0) / (+12.0) =? (+1.5)) (true)
+gt? &[[&[[(N.gt? 1 3) ⋀? (N.gt? 0 2)]]]]
+
+lt? &[[&[[(N.lt? 1 3) ⋀? (N.lt? 0 2)]]]]
+
# increments a rational number
inc add (+1.0) ⧗ Rational → Rational
@@ -106,4 +111,4 @@ dec \sub (+1.0) ⧗ Rational → Rational
:import std/List L
# power function: rational^number
-pow-n [L.…!!… (L.iterate (mul 0) (+1.0))] ⧗ Rational → Number → Rational
+pow-n [L.nth-iterate (mul 0) (+1.0)] ⧗ Rational → Number → Rational