The abstract-algebra tag has no wiki summary.
14
votes
3answers
266 views
Is there any algebraic structures used in functional programming other then monoid?
I recently getting to know about functional programming (in Haskell and Scala). It's capabilities and elegance is quite charming.
But when I met Monads, which makes use of an algebraic structure ...
11
votes
2answers
584 views
Examples of monoids/semigroups in programming
It is well-known that monoids are stunningly ubiquitous in programing. They are so ubiquitous and so useful that I, as a 'hobby project', am working on a system that is completely based on their ...
8
votes
2answers
298 views
Polynomial factorization in Haskell
With hammar's help I have made a template Haskell bit which compiles
$(zModP 5)
to
newtype Z5 = Z5 Int
instance Additive.C Z5 where
(Z5 x) + (Z5 y) = Z5 $ (x + y) `mod` 5
...
I'm now facing ...
4
votes
3answers
108 views
Randomly generating associative operations
In abstract algebra, the notion of a group is fairly fundamental. To get a group, we need a set of objects, and an binary operation with 3 properties (4 if you count closure). If we want to randomly ...
2
votes
2answers
223 views
Permutations distinct under given symmetry (Mathematica 8 group theory)
Given a list of integers like {2,1,1,0} I'd like to list all permutations of that list that are not equivalent under given group. For instance, using symmetry of the square, the result would be {{2, ...
0
votes
0answers
7 views
Using GAP to Identify a Group
How do you use GAP to identify the name of a group from its multiplication table? I know that you can define a group from a set of generators, and then look for the group in the set of internal tables
...
0
votes
0answers
19 views
SINGULAR (commutative algebra), how to add in the exponent: x^(2+3) doesn't work
does anyone know how to add numbers in the exponent of a variable in the computer algebra system SINGULAR?
int n=3;
ring R=0,(x,y,z,w),dp;
ideal I=x^(n+1)-yz^(n-1)w,xy^(n-1)-z^n,x^nz-y^nw;
...
0
votes
2answers
123 views
Operator overloading and class definition in R: Use a different base field/corpus
(I'm using the word "field" in the mathematical sense; base fields/corpora which R already uses include the real and complex numbers.)
I'm interested in allowing some other base fields/corpora (like ...
0
votes
0answers
66 views
Sort vs Type in Sorted Algebra [closed]
What is the difference between 'sort' and 'type' in sorted algebra?
Can a sort have subtypes?
e.g. If I have to model a periodic table, do I have to create a sort for each element or a sort for ...