|
|
last edited 1 year ago by test1 |
1 2 3 4 | ||
Editor: Bill Page
Time: 2009/12/08 17:40:47 GMT-8 |
||
Note: spad version |
added:
**On Sun, 01 Apr 2007 22:20:55 -0700 Tim Daly wrote:**
I've attached the ffrac.spad domain. It handles "formal fractions"
which do not evaluate the numerator or the denominator. Thus the
formal fraction is just a data structure except that there are
natural coercions to the algebra and back where they make sense.
This is related to the discussion of symbolic manipulation versus
algebraic manipulation.
In particular, there are two books by Joel Cohen called
"Computer Algebra and Symbolic Computation". I've had a
discussion with Joel about his work (which he has agreed
to allow Axiom to use at will). He defines MPL, a mathematical
programming language, that basically does expression-tree
manipulations.
I'd suggested that we could create a "Cohen Algebra" category and
domain set that would follow his MPL style quite closely. The main
thing would be to choose a common representatin (Record or List)
for all elements of the domain so they compose properly.
The big difference in an axiom implementation would be to have
coercions (or explicit import/export) from the Cohen domains
to algebraic domains and back where they make sense.
This would satisfy the apparent end-user need to manipulate
the expression trees.
This fits in layer 10:
\begin{spad}
)abbrev domain FFRAC FormalFraction
+++ Author: M.G. Richardson, Timothy Daly (spad rewrite)
+++ Date Created: 1996 Jan. 23
+++ Date Last Updated: 30 March 2007
+++ Basic Functions:
+++ Related Constructors: Fraction
+++ Also See:
+++ AMS Classifications:
+++ Keywords:
+++ References:
+++ Description:
+++ This type represents formal fractions - that is, pairs displayed as
+++ fractions with no simplification.
+++
+++ If the elements of the pair have a type X which is an integral
+++ domain, a FFRAC X can be coerced to a FRAC X, provided that this
+++ is a valid type. A FRAC X can always be coerced to a FFRAC X.
+++ If the type of the elements is a Field, a FFRAC X can be coerced
+++ to X.
+++
+++ Formal fractions are used to return results from numerical methods
+++ which determine numerator and denominator separately, to enable
+++ users to inspect these components and recognise, for example,
+++ ratios of very small numbers as potentially indeterminate.
FormalFraction(X : SetCategory) : SetCategory with
_/: (X,X) -> %
++ x / y is the formal fraction of the input arguments
numer : % -> X
++ numer(x) is the numerator of the formal fraction
denom : % -> X
++ denom(x) is the denominator of the formal fraction
if X has IntegralDomain then
coerce : % -> Fraction(X)
++ coerce(x) from here to Fraction(there)
coerce : Fraction(X) -> %
++ coerce(x) from Fraction(there) to here
if X has Field then
coerce : % -> X
++ coerce from here to Field(there)
== add
import Record(num : X, den : X)
Rep := Record(num : X, den : X) -- representation
-- (a::Symbol / b::Symbol)$FFRAC(Symbol)
-- c:Symbol:=d
-- e:Symbol:=f
-- (c/e)$FFRAC(Symbol)
(n:X / d:X):% == [n,d]
-- g:=(c/e)$FFRAC(Symobl)
-- h:=(c/e)$FFRAC(Symbol)
-- (g=h)::Boolean
-- i:=(a::Symbol / b::Symbol)$FFRAC(Symbol)
-- j:=(a::Symbol / b::Symbol)$FFRAC(Symbol)
-- (i=j)::Boolean
_=(x:%, y:%):Boolean == (x.num = y.num) and (x.den = y.den)
-- numer g
-- numer i
numer(r:%):X == r.num
--denom g
--denom i
denom(r:%):X == r.den
coerce(r:%):OutputForm == (r.num :: OutputForm) / (r.den :: OutputForm)
-- COMPLEX(INT) has FIELD
-- COMPLEX(INT) has IntegralDomain
-- p:COMPLEX(INT):=2
-- p::FRAC(COMPLEX(INT))::FFRAC(COMPLEX(INT))
if X has IntegralDomain then
coerce(r : %) : Fraction(X)
== (r.num / r.den) @ Fraction(X)
coerce(x : Fraction(X)) : % == x pretend %
-- FRAC(POLY(INT)) has FIELD
-- m:=(x^2)@FRAC(POLY(INT))
-- m::FFRAC(POLY(INT))
if X has Field then
-- m:=(2/3)$FFRAC(INT)
-- m::COMPLEX(FRAC(INT))
coerce(r : %) : X
== (r.num / r.den) @ X
\end{spad}
This type represents formal fractions - that is, pairs displayed as fractions with no simplification.
If the elements of the pair have a type X which is an integral domain, a FFRAC X can be coerced to a FRAC X, provided that this is a valid type. A FRAC X can always be coerced to a FFRAC X. If the type of the elements is a Field, a FFRAC X can be coerced to X.
Formal fractions are used to return results from numerical methods which determine numerator and denominator separately, to enable users to inspect these components and recognise, for example, ratios of very small numbers as potentially indeterminate.
#include "axiom.as"
FFRAC ==> FormalFraction ;
OF ==> OutputForm ; SC ==> SetCategory ; FRAC ==> Fraction ; ID ==> IntegralDomain ;
FormalFraction(X : SC) : SC with {
-- Could generalise further to allow numerator and denominator to be of -- different types,X and Y, both SCs. "Left as an exercise."
/ : (X,X) -> % ; ++ / forms the formal quotient of two items.
numer : % -> X ; ++ numer returns the numerator of a FormalFraction.
denom : % -> X ; ++ denom returns the denominator of a FormalFraction.
if X has ID then {
coerce : % -> FRAC(X pretend ID) ; ++ coerce x converts a FormalFraction over an IntegralDomain to a ++ Fraction over that IntegralDomain.
coerce : FRAC(X pretend ID) -> % ; ++ coerce converts a Fraction to a FormalFraction.
}
if X has Field then coerce : % -> (X pretend Field) ;
} == add {
import from Record(num : X,den : X) ;
Rep == Record(num : X,den : X) ; -- representation
((x : %) = (y : %)) : Boolean == ((rep(x).num = rep(y).num) and (rep(x).den = rep(y).den)) ;
((n : X)/(d : X)) : % == per(record(n,d)) ;
coerce(r : %) : OF == (rep(r).num :: OF) / (rep(r).den :: OF) ;
numer(r : %) : X == rep(r).num ;
denom(r : %) : X == rep(r).den ;
if X has ID then {
coerce(r : %) : FRAC(X pretend ID) == ((rep(r).num)/(rep(r).den)) @ (FRAC(X pretend ID)) ;
coerce(x : FRAC(X pretend ID)) : % == x pretend % ;
}
if X has Field then coerce(r : %) : (X pretend Field) == ((rep(r).num)/(rep(r).den)) $ (X pretend Field) ;
}
Compiling FriCAS source code from file /var/zope2/var/LatexWiki/846558072561508006-25px001.as using AXIOM-XL compiler and options -O -Fasy -Fao -Flsp -laxiom -Mno-ALDOR_W_WillObsolete -DAxiom -Y $AXIOM/algebra -I $AXIOM/algebra Use the system command )set compiler args to change these options. Compiling Lisp source code from file ./846558072561508006-25px001.lsp Issuing )library command for 846558072561508006-25px001 Reading /var/zope2/var/LatexWiki/846558072561508006-25px001.asy FormalFraction is now explicitly exposed in frame initial FormalFraction will be automatically loaded when needed from /var/zope2/var/LatexWiki/846558072561508006-25px001
f1 : FormalFraction Integer
f1 := 6/3
![]() | (1) |
-- 6 -- - -- 3
f2 := (3.6/2.4)$FormalFraction Float
![]() | (2) |
-- 3.6 -- --- -- 2.4
numer f1
![]() | (3) |
-- 6
denom f2
![]() | (4) |
-- 2.4
f1 :: FRAC INT
![]() | (5) |
-- 2
% :: FormalFraction Integer
![]() | (6) |
-- 2 -- - -- 1
f2 :: Float
![]() | (7) |
On Sun, 01 Apr 2007 22:20:55 -0700 Tim Daly wrote:
I've attached the ffrac.spad domain. It handles "formal fractions" which do not evaluate the numerator or the denominator. Thus the formal fraction is just a data structure except that there are natural coercions to the algebra and back where they make sense.
This is related to the discussion of symbolic manipulation versus algebraic manipulation.
In particular, there are two books by Joel Cohen called "Computer Algebra and Symbolic Computation". I've had a discussion with Joel about his work (which he has agreed to allow Axiom to use at will). He defines MPL, a mathematical programming language, that basically does expression-tree manipulations.
I'd suggested that we could create a "Cohen Algebra" category and domain set that would follow his MPL style quite closely. The main thing would be to choose a common representatin (Record or List) for all elements of the domain so they compose properly.
The big difference in an axiom implementation would be to have coercions (or explicit import/export) from the Cohen domains to algebraic domains and back where they make sense.
This would satisfy the apparent end-user need to manipulate the expression trees.
This fits in layer 10:
)abbrev domain FFRAC FormalFraction
+++ Author: M.G. Richardson,Timothy Daly (spad rewrite) +++ Date Created: 1996 Jan. 23 +++ Date Last Updated: 30 March 2007 +++ Basic Functions: +++ Related Constructors: Fraction +++ Also See: +++ AMS Classifications: +++ Keywords: +++ References: +++ Description: +++ This type represents formal fractions - that is, pairs displayed as +++ fractions with no simplification. +++ +++ If the elements of the pair have a type X which is an integral +++ domain, a FFRAC X can be coerced to a FRAC X, provided that this +++ is a valid type. A FRAC X can always be coerced to a FFRAC X. +++ If the type of the elements is a Field, a FFRAC X can be coerced +++ to X. +++ +++ Formal fractions are used to return results from numerical methods +++ which determine numerator and denominator separately, to enable +++ users to inspect these components and recognise, for example, +++ ratios of very small numbers as potentially indeterminate.
FormalFraction(X : SetCategory) : SetCategory with
_/: (X,X) -> % ++ x / y is the formal fraction of the input arguments
numer : % -> X ++ numer(x) is the numerator of the formal fraction
denom : % -> X ++ denom(x) is the denominator of the formal fraction
if X has IntegralDomain then
coerce : % -> Fraction(X) ++ coerce(x) from here to Fraction(there)
coerce : Fraction(X) -> % ++ coerce(x) from Fraction(there) to here
if X has Field then
coerce : % -> X ++ coerce from here to Field(there)
== add
import Record(num : X,den : X)
Rep := Record(num : X,den : X) -- representation
-- (a::Symbol / b::Symbol)$FFRAC(Symbol) -- c:Symbol:=d -- e:Symbol:=f -- (c/e)$FFRAC(Symbol)
(n:X / d:X):% == [n,d]
-- g:=(c/e)$FFRAC(Symobl) -- h:=(c/e)$FFRAC(Symbol) -- (g=h)::Boolean -- i:=(a::Symbol / b::Symbol)$FFRAC(Symbol) -- j:=(a::Symbol / b::Symbol)$FFRAC(Symbol) -- (i=j)::Boolean
_=(x:%,y:%):Boolean == (x.num = y.num) and (x.den = y.den)
-- numer g -- numer i
numer(r:%):X == r.num
--denom g --denom i
denom(r:%):X == r.den
coerce(r:%):OutputForm == (r.num :: OutputForm) / (r.den :: OutputForm)
-- COMPLEX(INT) has FIELD -- COMPLEX(INT) has IntegralDomain -- p:COMPLEX(INT):=2 -- p::FRAC(COMPLEX(INT))::FFRAC(COMPLEX(INT))
if X has IntegralDomain then
coerce(r : %) : Fraction(X) == (r.num / r.den) @ Fraction(X)
coerce(x : Fraction(X)) : % == x pretend %
-- FRAC(POLY(INT)) has FIELD -- m:=(x^2)@FRAC(POLY(INT)) -- m::FFRAC(POLY(INT))
if X has Field then
-- m:=(2/3)$FFRAC(INT) -- m::COMPLEX(FRAC(INT))
coerce(r : %) : X == (r.num / r.den) @ X
Compiling FriCAS source code from file /var/zope2/var/LatexWiki/6115519419019514820-25px003.spad using old system compiler. FFRAC abbreviates domain FormalFraction ------------------------------------------------------------------------ initializing NRLIB FFRAC for FormalFraction compiling into NRLIB FFRAC importing Record(num: X,den: X) compiling exported / : (X, X) -> $ FFRAC;/;2X$;1 is replaced by CONS Time: 0.05 SEC.
compiling exported = : ($,$) -> Boolean Time: 0.01 SEC.
compiling exported numer : $ -> X FFRAC;numer;$X;3 is replaced by QCAR Time: 0 SEC.
compiling exported denom : $ -> X FFRAC;denom;$X;4 is replaced by QCDR Time: 0 SEC.
compiling exported coerce : $ -> OutputForm Time: 0.01 SEC.
****** Domain: X already in scope augmenting X: (IntegralDomain) augmenting $: (SIGNATURE $ coerce ((Fraction X) $)) augmenting $: (SIGNATURE $ coerce ($ (Fraction X))) compiling exported coerce : $ -> Fraction X Time: 0.05 SEC.
compiling exported coerce : Fraction X -> $ FFRAC;coerce;F$;7 is replaced by x Time: 0 SEC.
****** Domain: X already in scope augmenting X: (Field) augmenting $: (SIGNATURE $ coerce (X $)) compiling exported coerce : $ -> X Time: 0.52 SEC.
****** Domain: X already in scope augmenting X: (Field) augmenting $: (SIGNATURE $ coerce (X $)) ****** Domain: X already in scope augmenting X: (IntegralDomain) augmenting $: (SIGNATURE $ coerce ((Fraction X) $)) augmenting $: (SIGNATURE $ coerce ($ (Fraction X))) (time taken in buildFunctor: 0)
;;; *** |FormalFraction| REDEFINED
;;; *** |FormalFraction| REDEFINED Time: 0.02 SEC.
Cumulative Statistics for Constructor FormalFraction Time: 0.66 seconds
finalizing NRLIB FFRAC Processing FormalFraction for Browser database: --------(/ (% X X))--------- --------(numer (X %))--------- --------(denom (X %))--------- --------(coerce ((Fraction X) %))--------- --------(coerce (% (Fraction X)))--------- --------(coerce (X %))--------- --------constructor--------- ; compiling file "/var/zope2/var/LatexWiki/FFRAC.NRLIB/FFRAC.lsp" (written 17 FEB 2011 10:38:39 AM): ; compiling (/VERSIONCHECK 2) ; compiling (PUT (QUOTE |FFRAC;/;2X$;1|) ...) ; compiling (DEFUN |FFRAC;/;2X$;1| ...) ; compiling (DEFUN |FFRAC;=;2$B;2| ...) ; compiling (PUT (QUOTE |FFRAC;numer;$X;3|) ...) ; compiling (DEFUN |FFRAC;numer;$X;3| ...) ; compiling (PUT (QUOTE |FFRAC;denom;$X;4|) ...) ; compiling (DEFUN |FFRAC;denom;$X;4| ...) ; compiling (DEFUN |FFRAC;coerce;$Of;5| ...) ; compiling (DEFUN |FFRAC;coerce;$F;6| ...) ; compiling (PUT (QUOTE |FFRAC;coerce;F$;7|) ...) ; compiling (DEFUN |FFRAC;coerce;F$;7| ...) ; compiling (DEFUN |FFRAC;coerce;$X;8| ...) ; compiling (DEFUN |FormalFraction| ...) ; compiling (DEFUN |FormalFraction;| ...) ; compiling (MAKEPROP (QUOTE |FormalFraction|) ...)
; /var/zope2/var/LatexWiki/FFRAC.NRLIB/FFRAC.fasl written ; compilation finished in 0:00:00.342 ------------------------------------------------------------------------ FormalFraction is already explicitly exposed in frame initial FormalFraction will be automatically loaded when needed from /var/zope2/var/LatexWiki/FFRAC.NRLIB/FFRAC