Giter Site home page Giter Site logo

Exponentiation? about alga HOT 2 CLOSED

chadbrewbaker avatar chadbrewbaker commented on September 24, 2024
Exponentiation?

from alga.

Comments (2)

snowleopard avatar snowleopard commented on September 24, 2024

Hey @chadbrewbaker! Sorry, just noticed the issue -- I didn't expect so much interest to this repo, so I wasn't even watching it :)

One simple way to define exponentiation is via the connect that is similar to multiplication:

(^) :: Graph g => g -> Int -> g
g^0 = empty
g^n = g^(n-1) `connect` g

Although this seems natural, the result is a bit boring:

g^0 = empty
g^1 = g
g^2 = g `connect` g -- This is a clique on vertices in g
g^3 = g `connect` g `connect` g = g^2 -- via the decomposition axiom
...
g^n = g^2

So, we only have three different values g^0, g^1 and g^2 = g^3 = g^4 ....

At this point I don't know of any other definition of the exponent that makes sense algebraically.

from alga.

snowleopard avatar snowleopard commented on September 24, 2024

By the way, (^) from Prelude almost works as desired. The only problem with it is that it returns 1 for g^0 which is not what we want, we want it to return the multiplicative identity, which is empty in our case.

P.S.: Interestingly, the foundation library does this right! So, if you use it, (^) will work as I described above out of the box.

from alga.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.