Abstract algebra is the subject area of mathematics that studies algebraic structures such as groups, rings, fields, modules, vector spaces, and algebras. Any math questions on this site should be programming related.
0
votes
0answers
5 views
The context between Abstract Algebra and programming
I'm a computer science student among the things I'm learning Abstract Algebra, especially Group theory.
I'm programming for about 5 years and I've never used such things as I learn in Abstract ...
2
votes
1answer
30 views
Is it good to design object according to mathematical group theory
For example, suppose you are designing a class of object called Car, which support a binary operation denoted by the sign, +, i.e. you can do car1 + car2 where car1 and car2 are instances of Car
As ...
0
votes
0answers
79 views
Implementing bilinear map for cryptography [closed]
I want to implement an encryption algorithm (it is new; I improve an old version).
In this way, I have to use bilinear maps.
e is called a bilinear map if:
e:G1*G1-->G2
G1 and G2 are cyclic ...
0
votes
0answers
62 views
Why is the Trivial Ring not a field? [closed]
The Trivial Ring is a mathematical structure that has a single element, {o}, and two operations + and *, where o + o = o and o * o = o. Clearly these operations are commutative, associative, and ...
7
votes
2answers
376 views
What are structures with “subtraction” but no inverse?
A group extends the idea of a monoid to allow for inverses. This allows for:
gremove :: (Group a) => a -> a -> a
gremove x y = x `mappend` (invert y)
But what about structures like ...
5
votes
2answers
143 views
Commutative monoid from 'algebra' package on Hackage
The documentation for algebra/2.1.1.2/doc/html shows a colossal number of type classes.
How do I declare that a structure in question must be equipped with a commutative associative operation and a ...
11
votes
2answers
505 views
Is there a theory that combines category theory/abstract algebra and computational complexity?
Category theory and abstract algebra deal with the way functions can be combined with other functions. Complexity theory deals with how hard a function is to compute. It's weird to me that I haven't ...
4
votes
1answer
93 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
...
4
votes
4answers
154 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 ...
0
votes
2answers
569 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 ...
8
votes
2answers
545 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 ...
0
votes
0answers
116 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 ...
2
votes
2answers
316 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, ...
15
votes
3answers
379 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 ...
16
votes
4answers
1k 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 ...