Differences between revisions 7 and 16 (spanning 9 versions)
Revision 7 as of 2009-07-22 12:34:04
Size: 2708
Comment:
Revision 16 as of 2009-07-26 08:44:43
Size: 4273
Comment:
Deletions are marked like this. Additions are marked like this.
Line 15: Line 15:
PEOPLE: Franco Saliola PEOPLE: Franco Saliola, CoryBrunson
Line 25: Line 25:
PEOPLE: Franco Saliola PEOPLE: Franco Saliola, Jason Bandlow, Florent Hivert, Peter McNamara
Line 45: Line 45:
NicolasBorie, AnneSchilling, NicolasThiéry NicolasBorie, AnneSchilling, NicolasThiéry, CoryBrunson
Line 57: Line 57:
JasonBandlow  * Patch Symmetrica
 * Make LRcalc spkg
 * Bring all symmetric functions under the SymmetricFunctions umbrella
 * Improve documentation
 
JasonBandlow, CoryBrunson
Line 59: Line 64:
== <Project name goes here> == == Improve Nonsymmetric Macdonald polynomials ==
Line 61: Line 66:
PEOPLE: <list of interested participants>  * Add doctests with examples on specifying q, t, and the basement pi
 * Add input checks for pi. Maybe accept a list as input, and make it into an appropriate permutation
Line 63: Line 69:
  <summary & goals of project> == Setup the framework for MultivariatePolynomials with several bases

{{{

        Let us work over `F=\QQ(q,t)` (will be needed for Macdonald polynomials)::

            sage: F = QQ['q,t']; (q,t) = F.gens(); F.rename('QQ(q,t)')

    We construct an (abstract) ring of multivariate polynomials over F::

        sage: P = AbstractPolynomialRing(F, 'x0,x1,x2'); P
        The abstract ring of multivariate polynomials in x0, x1, x2 over QQ(q,t)

    This ring has several bases, starting with the usual monomial basis::

        sage: m = P.m
        Multivariate Polynomial Ring in x0, x1, x2 over QQ(q,t)

        sage:: m is MultivariatePolynomialRing(F, 'x0,x1,x2')
        True
        
    



        sage: Macdo = P.MacdonaldPolynomials(q, t)
        sage: E = Macdo.E(pi = [3,1,2]); E
        Multivariate Polynomial Ring in x0, x1, x2 over QQ(q,t), in the Macdonald E basis, with basement [3,1,2]
        sage: E[1,0,0]
        E[1,0,0]
        sage: m(E[1,0,0])
        x0
}}}

People: Jeff

== Module for generate integer list up to the action of a permutation group ==

 * Integrate a StabChain from Gap to sage
 * Finalise the module and submit it

NicolasBorie

*-combinat Days Project Idea Page

Implement a generic FactoredElement class

PEOPLE: Burcin Erocal

  • In many combinatorics applications we work with rational functions whose numerator/denominator factor into nice components where the factorization is also known beforehand. The current representation of rational functions in Sage use the expanded form of the numerator and denominator. The goal is to implement a generic wrapper to store elements in a factored representation.
  • sage-devel thread about working with factored denominators

  • another thread

  • code mentined above is here

An example of adding a new basis to an algebra

PEOPLE: Franco Saliola, CoryBrunson

  • This should be a nice exercise in adding a new basis (the seminormal basis) to an algebra (the group algebra of the symmetric group). We don't even have to introduce any new code to construct the basis since it already exists in Sage, thanks to Mike Hansen. On the other hand, I do have a better implementation based on a method that Alain Lascoux explained to me, so we could use that instead.

Try out Nathann Cohen new interface to Mixed Integer Linear Programming software

PEOPLE Nicolas Thiéry

Bug squashing!

PEOPLE: Franco Saliola, Jason Bandlow, Florent Hivert, Peter McNamara

Categories

100% doctest and review for all patches up to sagecombinat 4.1

Functorial constructions: subquotient, cartesian_product

FlorentHivert, FrancoSaliola, AnneSchilling, NicolasThiéry

Categorification of RootSystems and Crystals

And application to parabolic subroot-systems

NicolasBorie, AnneSchilling, NicolasThiéry, CoryBrunson

graph layout using graphviz / dot2tex optional package

Anne Schilling, FrancoSaliola, NicolasThiéry

Quickref card for sage.combinat

JasonBandlow, FrancoSaliola, NicolasThiéry

Refactoring of symmetric functions

  • Patch Symmetrica
  • Make LRcalc spkg
  • Bring all symmetric functions under the SymmetricFunctions umbrella

  • Improve documentation

JasonBandlow, CoryBrunson

Improve Nonsymmetric Macdonald polynomials

  • Add doctests with examples on specifying q, t, and the basement pi
  • Add input checks for pi. Maybe accept a list as input, and make it into an appropriate permutation

== Setup the framework for MultivariatePolynomials with several bases

        Let us work over `F=\QQ(q,t)` (will be needed for Macdonald polynomials)::

            sage: F = QQ['q,t']; (q,t) = F.gens(); F.rename('QQ(q,t)')

    We construct an (abstract) ring of multivariate polynomials over F::

        sage: P = AbstractPolynomialRing(F, 'x0,x1,x2'); P
        The abstract ring of multivariate polynomials in x0, x1, x2 over QQ(q,t)

    This ring has several bases, starting with the usual monomial basis::

        sage: m = P.m
        Multivariate Polynomial Ring in x0, x1, x2 over QQ(q,t)

        sage:: m is MultivariatePolynomialRing(F, 'x0,x1,x2')
        True
        
    



        sage: Macdo = P.MacdonaldPolynomials(q, t)
        sage: E = Macdo.E(pi = [3,1,2]); E
        Multivariate Polynomial Ring in x0, x1, x2 over QQ(q,t), in the Macdonald E basis, with basement [3,1,2]
        sage: E[1,0,0]
        E[1,0,0]
        sage: m(E[1,0,0])
        x0

People: Jeff

Module for generate integer list up to the action of a permutation group

  • Integrate a StabChain from Gap to sage

  • Finalise the module and submit it

NicolasBorie

combinat/FPSAC09/projects (last edited 2011-05-24 18:30:01 by KelvinLi)