=pod =encoding utf8 =head1 NAME Muldis::D::Ext::Rational - Muldis D extension for rational data types and operators =head1 VERSION This document is Muldis::D::Ext::Rational version 0.99.0. =head1 PREFACE This document is part of the Muldis D language specification, whose root document is L; you should read that root document before you read this one, which provides subservient details. =head1 DESCRIPTION Muldis D has a mandatory core set of system-defined (eternally available) entities, which is referred to as the I or the I; they are the minimal entities that all Muldis D implementations need to provide; they are mutually self-describing and are used to bootstrap the language; any entities outside the core, called I, are non-mandatory and are defined in terms of the core or each other, but the reverse isn't true. This current C document describes the system-defined I, which consists of rational data types and operators, essentially all the generic ones that a typical programming language should have, but for the bare minimum needed for bootstrapping Muldis D, which are defined in the language core instead. This current document does not describe the polymorphic operators that all types, or some types including core types, have defined over them; said operators are defined once for all types in L. I =head1 TYPE SUMMARY Following are all the data types described in this document, arranged in a type graph according to their proper sub|supertype relationships (but that a few of them just reappear from the core set to provide a similar context, and aren't re-described here): sys.std.Core.Type.Universal sys.std.Core.Type.Empty sys.std.Core.Type.Scalar sys.std.Core.Type.DHScalar sys.std.Core.Type.Cat.OVLScalar # The following are all regular ordered scalar types. sys.std.Core.Type.Rat sys.std.Rational.Type.BRat sys.std.Rational.Type.DRat sys.std.Core.Type.Int sys.std.Core.Type.NNInt sys.std.Core.Type.PInt # These are all finite integer types. sys.std.Rational.Type.PInt2_36 I =head1 SYSTEM-DEFINED RATIONAL-CONCERNING DATA TYPES =head2 sys.std.Rational.Type.PInt2_36 This is an enumeration data type. C is a proper subtype of C where all member values are between 2 and 36. (The significance of the number 36 is 10 digits plus 26 letters.) Its default and minimum value is 2. Its maximum value is 36. The cardinality of this type is 35. =head2 sys.std.Rational.Type.BRat This is an enumeration data type. C (binary rational) is a proper subtype of C where the C is 2; it is the best option to exactly represent rational numbers that are conceptually binary or octal or hexadecimal, such as most IEEE-754 floating point numbers. =head2 sys.std.Rational.Type.DRat This is an enumeration data type. C (decimal rational) is a proper subtype of C where the C is 10 (or if it could be without the C possrep normalization constraint); it is the best option to exactly represent rational numbers that are conceptually the decimal numbers that humans typically work with. =head1 FUNCTIONS FOR RATIONAL MATH These functions implement commonly used rational numeric operations. =head2 sys.std.Rational.abs C<< function sys.std.Rational.abs (NNRat <-- $topic : Rat) >> This function results in the absolute value of its argument. Note that this operation is also known as C. =head2 sys.std.Rational.sum C<< function sys.std.Rational.sum (Rat <-- $topic? : bag_of.Rat) >> This function results in the sum of the N element values of its argument; it is a reduction operator that recursively takes each pair of input values and adds (which is both commutative and associative) them together until just one is left, which is the result. If C has zero values, then C results in the rational zero, which is the identity value for addition. Note that this operation is also known as I or I or C. =head2 sys.std.Rational.diff C<< function sys.std.Rational.diff (Rat <-- $minuend : Rat, $subtrahend : Rat) >> This function results in the difference when its C argument is subtracted from its C argument. Note that this operation is also known as I or I or C. =head2 sys.std.Rational.abs_diff C<< function sys.std.Rational.abs_diff (Rat <-- $topic : Rat, $other : Rat) >> This symmetric function results in the absolute difference between its 2 arguments. Note that this operation is also known as C. =head2 sys.std.Rational.product C<< function sys.std.Rational.product (Rat <-- $topic? : bag_of.Rat) >> This function results in the product of the N element values of its argument; it is a reduction operator that recursively takes each pair of input values and multiplies (which is both commutative and associative) them together until just one is left, which is the result. If C has zero values, then C results in the rational 1, which is the identity value for multiplication. Note that this operation is also known as I or I or C. =head2 sys.std.Rational.quotient C<< function sys.std.Rational.quotient (Rat <-- $dividend : Rat, $divisor : Rat) >> This function results in the quotient when its C argument is divided by its C argument using rational division. This function will fail if C is zero. Note that this operation is also known as I or C. =head2 sys.std.Rational.maybe_quotient C<< function sys.std.Rational.maybe_quotient (maybe_of.Rat <-- $dividend : Rat, $divisor : Rat) >> This function is exactly the same as C except that it results in a C of what is otherwise the result, and that result has zero elements if C is zero. =head2 sys.std.Rational.range C<< function sys.std.Rational.range (Rat <-- $topic : set_of.Rat) >> This function results in the difference between the lowest and highest element values of its argument. If C has zero values, then C results in the rational zero. =head2 sys.std.Rational.mean C<< function sys.std.Rational.mean (Rat <-- $topic : bag_of.Rat) >> This function results in the mean or arithmetic average of the N element values of its argument. It is equivalent to first taking the sum of the input values, and dividing that sum by the count of the input values. If C has zero values, then this function will fail. =head2 sys.std.Rational.maybe_mean C<< function sys.std.Rational.maybe_mean (maybe_of.Rat <-- $topic : bag_of.Rat) >> This function is exactly the same as C except that it results in a C of what is otherwise the result, and that result has zero elements if C has zero values. =head2 sys.std.Rational.median C<< function sys.std.Rational.median (set_of.Rat <-- $topic : bag_of.Rat) >> This function results in the 1 or 2 median values of the N element values of its argument; they are returned as a set. It is equivalent to first arranging the input values from least to greatest, and then taking the single middle value, if the count of input values is odd, or taking the 2 middle values, if the count of input values is even (but if the 2 middle values are the same value, the output has one element). If C has zero values, then the result set is empty. =head2 sys.std.Rational.mean_of_median C<< function sys.std.Rational.mean_of_median (Rat <-- $topic : bag_of.Rat) >> This function is a wrapper over C that will result in the mean of its result elements; it will fail if there are zero elements. =head2 sys.std.Rational.mode C<< function sys.std.Rational.mode (set_of.Rat <-- $topic : bag_of.Rat) >> This function results in the mode of the N element values of its argument; it is the set of values that appear the most often as input elements, and all have the same count of occurrances. As a trivial case, if all input elements have the same count of occurrances, then they will all be in the output. If C has zero values, then the result set is empty. =head2 sys.std.Rational.round C<< function sys.std.Rational.round (Rat <-- $topic : Rat, $round_rule : RatRoundRule) >> This function results in the rational that is equal to or otherwise nearest to its C argument, where the nearest is determined by the rational rounding rule specified by the C argument. =head2 sys.std.Rational.power C<< function sys.std.Rational.power (PRat <-- $radix : PRat, $exponent : Rat, $round_rule : RatRoundRule) >> This function results in its (positive rational) C argument taken to the power of its C argument. Since the result would be an irrational number in the general case, the C argument specifies how to coerce the conceptual result into a rational number that is the actual result. Note that, while this function might conceptually have multiple real number results for some fractional C, it will always only result in the one that is positive. Note that this operation is also known as I or C. =head2 sys.std.Rational.log C<< function sys.std.Rational.log (Rat <-- $topic : PRat, $radix : PRat, $round_rule : RatRoundRule) >> This function results in the logarithm of its C argument to the base given in its (positive rational) C argument. The C parameter is as per C. =head2 sys.std.Rational.natural_power C<< function sys.std.Rational.natural_power (PRat <-- $exponent : Rat, $round_rule : RatRoundRule) >> This function results in the special mathematical constant I (which is the base of the natural logarithm) taken to the power of its C argument. The C parameter is as per C. Note that this operation is also known as C. =head2 sys.std.Rational.natural_log C<< function sys.std.Rational.natural_log (Rat <-- $topic : PRat, $round_rule : RatRoundRule) >> This function results in the natural logarithm of its C argument. The C parameter is as per C. Note that this operation is also known as C. =head1 FUNCTIONS FOR RATIONAL CONVERSION WITH TEXT These functions convert between C values and canonically formatted representations of rationals as character strings. =head2 sys.std.Rational.Rat_from_Text C<< function sys.std.Rational.Rat_from_Text (Rat <-- $text : Text, $radix : PInt2_36) >> This selector function results in the C value that its (not-empty) C argument maps to when the whole character string is evaluated as a base-C rational. Extending the typical formats of [base-2, base-8, base-10, base-16], this function supports base-2 through base-36; to get the latter, the characters 0-9 and A-Z represent values in 0-35. This function will fail if C can't be mapped as specified. =head2 sys.std.Rational.Text_from_Rat C<< function sys.std.Rational.Text_from_Rat (Text <-- $rat : Rat, $radix : PInt2_36) >> This selector function results in the (not-empty) C value where its C argument is formatted as a base-C rational. =head1 FUNCTIONS FOR RATIONAL CONVERSION WITH INTEGER These functions convert between C values and equal or nearly equal C values. =head2 sys.std.Rational.Rat_from_Int C<< function sys.std.Rational.Rat_from_Int (Rat <-- $int : Int) >> This selector function results in the C value that is conceptually equal to its C argument. =head2 sys.std.Rational.Int_from_Rat C<< function sys.std.Rational.Int_from_Rat (Int <-- $rat : Rat, $round_meth : RatRoundMeth) >> This selector function results in the C value that is conceptually equal to or otherwise nearest to its C argument, where the nearest is determined by the rounding method specified by the C argument. =head1 SYSTEM SERVICES FOR RANDOM NUMBER GENERATORS These system service routines provide ways to get random numbers from the system. Where the results are in the range between truly random and pseudo-random is, for the moment, an implementation detail, but the details of these functions is subject to become more formalized later. =head2 sys.std.Rational.fetch_random C This system service routine will update the variable supplied as its C argument so that it holds a randomly generated rational value that is included within the interval defined by its C argument. The denominator attribute of the generated value will be a non-negative power of C that is not larger than C. This function will fail if C represents an empty interval. =head1 SEE ALSO Go to L for the majority of distribution-internal references, and L for the majority of distribution-external references. =head1 AUTHOR Darren Duncan (C) =head1 LICENSE AND COPYRIGHT This file is part of the formal specification of the Muldis D language. Muldis D is Copyright © 2002-2009, Muldis Data Systems, Inc. See the LICENSE AND COPYRIGHT of L for details. =head1 TRADEMARK POLICY The TRADEMARK POLICY in L applies to this file too. =head1 ACKNOWLEDGEMENTS The ACKNOWLEDGEMENTS in L apply to this file too. =cut