From 0c3b464d3c73fcd1a6fde3f2f5882eddd5c79685 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Tue, 6 Aug 2024 01:53:19 +0200 Subject: Complex updates --- std/Math/Rational.bruijn | 50 ++++++++++++++++++++++++++++++++++++++---------- 1 file changed, 40 insertions(+), 10 deletions(-) (limited to 'std/Math/Rational.bruijn') diff --git a/std/Math/Rational.bruijn b/std/Math/Rational.bruijn index e72b6a9..3b7f461 100644 --- a/std/Math/Rational.bruijn +++ b/std/Math/Rational.bruijn @@ -1,11 +1,10 @@ # ideas by u/DaVinci103 # MIT License, Copyright (c) 2024 Marvin Borner -# (p : q) ⇔ (1 / (q + 1)) +# (p : q) ⇔ (p / (q + 1)) :import std/Logic . :import std/Combinator . -:import std/Logic . :import std/Pair . :import std/Math N @@ -24,6 +23,36 @@ eq? &[[&[[N.eq? (N.mul 3 N.++0) (N.mul N.++2 1)]]]] ⧗ Rational → Rational :test ((+42.0) =? (+42.0)) (true) :test ((+0.4) =? (+0.5)) (false) +# returns true if a rational number is greater than another +gt? &[[&[[N.gt? (N.mul 3 N.++0) (N.mul N.++2 1)]]]] ⧗ Rational → Rational → Boolean + +…>?… gt? + +# returns true if a rational number is less than another +lt? &[[&[[N.lt? (N.mul 3 N.++0) (N.mul N.++2 1)]]]] ⧗ Rational → Rational → Boolean + +…?‣ positive? + +# returns true if a real number is negative +negative? \lt? (+0.0) ⧗ Rational → Boolean + +