Differences between revisions 7 and 57 (spanning 50 versions)
Revision 7 as of 2015-02-08 15:11:51
Size: 1386
Editor: vdelecroix
Comment:
Revision 57 as of 2015-03-16 16:00:50
Size: 21449
Editor: was
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
= Project ideas for GSoC 2015 for Sage =
= GSoC 2015 =

== Introduction ==
Google Summer of Code is a ''highly'' enjoyable and rewarding way to spend a summer.

Sage is a GPL open-source mathematical software system. It is designed to be not just a computer algebra system, but more like a complete environment for doing mathematics and related calculations. It is based on a vast collection of existing open-source software tools and libraries and ties them together via Python. Python is also the primary interface language for the user and its object-oriented way of expressing concepts is used to express calculations - of course, there are also many “normal” functions :-) Behind the scenes, the Sage library executes the commands and calculations by its own algorithms or by accessing appropriate routines from the included software packages. On top of that, there are various ways how users can interact with Sage, most notably a dynamic web-site called “Notebook”.

All projects will start with an introduction phase to learn about Sage’s internal organization and to get used to its established development process. This is documented in the documentation for developers and all students will be instructed by the mentors on how to get their hands dirty. We use Git for revision control and trac for organizing development and code review. Our license is GPLv2+. Feel free to contact Mentors before you send us project proposals.

Feel free to introduce yourself and your project idea in our [[https://groups.google.com/forum/#!forum/sage-gsoc|mailing list]].

To get a better feeling how Sage works, please check out the [[http://sagemath.org/doc/developer/index.html|developer guide]].

There is also a comprehensive list of future feature wishes [[http://trac.sagemath.org/query?status=needs_info&status=needs_work&status=new&milestone=sage-wishlist&or&milestone=sage-feature&col=id&col=summary&col=status&col=type&col=priority&col=component&order=priority|in our trac issue tracker]].
They might contain the perfect project idea for you we didn't even think about!

Shoot Simon Spicer ([email protected]) an email if you want more details from a recent GSoC student on the actual logistics of doing a GSoC project.

<<TableOfContents()>>

== Application Template ==

Please use this application template, in particular answer the questions thoroughly enough to convince us to pick you!

Personal:
 * Name
 * Contact Information (email, instant messaging, …)
 * Location/Timezone
 * University
Background:
 * What are your technical skills, education, experience, etc. Especially make sure to explain with what level of mathematics you are comfortable with and on what level you would like to program.
 * Who are you? What makes you the best person to work on this particular project? Special motivation?
 * What platform and operating-system are you using on your computer? (Sage development is done best on Linux and OSX)
 * Are you or have you been engaged in other open-source projects?
 * Do you code on your own pet projects?
 * Are you a Sage user, how long do you know Sage?
Project:
 * Title, Project Synopsis: a short description and summary of its aim and scope.
 * What is your personal involvement or relationship with your proposed project?
 * Details: describe all the details and explain modules or parts of your whole project. Break down the whole project into individual tasks - as good as possible - and describe deliverable and quantifiable results for each of them. It also helps if you have already discussed this with a possible mentor.
 * Schedule: A timetable, including special circumstances like exams or holidays, for the individual tasks.
 * Risk Management: Try to anticipate potential problems and explain, how to mitigate them. Propose alternative scenarios, if a particular milestone isn't reached, to still successfully complete the project.

= Project Ideas =

== SymPy ==

!SymPy didn't make it into this year's GSoC.
Since it is part of Sage, there is likely interest to [[https://github.com/sympy/sympy/wiki/GSoC-2015-Ideas|make some of their projects a reality]].

== Make Sage use CSymPy as the symbolic engine ==

|| Mentor || Ondřej Čertík ||
|| Difficulty || Medium ||
|| Skills || Good knowledge of Python, Sage, and familiarity with C++ ||

One big *longterm* goal is to make it possible for Sage to use [[https://github.com/sympy/csympy|CSymPy]] as the main symbolic engine instead
of Pynac. CSymPy is a fast C++ library for symbolic manipulation with optional Python wrappers. Another goal is to reduce the reliance of Sage on Maxima, with a longterm goal to remove that reliance (simplification, Taylor series, symbolic integration, etc.)

At the end of the summer we don't expect Sage to be switched, but there could be a clear path forward, and it should be possible to use it as an optional package in Sage, side by
side, with good interoperability.

See this sage-gsoc [[https://groups.google.com/d/topic/sage-gsoc/WbmAJAaGlhs/discussion|thread]] for more information.

Steps:

 * Write Sage wrappers (the !SymPy wrappers are already done and we can have arbitrary sympy expression as an object in the C++ expression tree), so most of this work is done --- then anybody in Sage can easily try it out

 * Figure out what needs to be done to hook it up just like Pynac is (this might be quite a bit of work, hopefully it's manageable)

 * Identify what features in CSymPy are still missing (and start implementing those)

== Generic Dispatcher ==

|| Mentor || Vincent Delecroix ||
|| Difficulty || Medium to very Hard ||
|| Skills || good knowledge of Python and notions of Cython and C ||

In Sage there are many places where we can choose between several algorithms or underlying softwares to solve a problem. This is often related to the presence of the keyword ''algorithm'' or ''method'' in functions. The aim of this task is to build a generic dispatcher that would choose depending on the parameters the fastest solution available. The solution must be very light and not affect performance. The dispatch threshold must be static and computed through a dedicated command (like ''sage -recompute-thresholds''). We could also have default threshold that depend on architectures. This generic dispatcher could also be used to check coherency between the various implementations.

Note that it is different from what is called multimethods where the dispatch depends only on the input type. Here we consider a dispatcher that might also depend on the input values.

Steps:

  1. identify some Sage functions/methods that could benefit from the dispatcher
  2. write a simple prototype of generic dispatcher adapted to 1 and intensively test it
  3. release a first candidate for the dispatcher
  4. more Sage functions coverage (this can be hard since some threshold might be extremly complicated to determine. In order to do that you are advised to ask for help on the mailing-list)

== Android App ==

== iOS App ==

== Computation of q-expansions of modular forms attached to elliptic curves at all cusps. ==

|| Mentor || William Stein ||
|| Difficulty || Extreme ||
|| Skills || Good knowledge of Python, Sage, and research-level knowledge of number theory ||

There is a well-known and easy to implement algorithm to compute the $q$-expansions at all cusps of $X_0(N)$ of the newform attached to an elliptic curve, when N is square-free,
but no such algorithm is known explicitly in general.
Being able to compute these $q$-expansions at all
cusps in general has many very interesting applications,
including determining the ramification of
modular parametrizations of elliptic curves at
cusps, and numerical computation of constants in
the functional equation of the twists of a newform.
A graduate student, Hao Chen (of University of Washington),
has new ideas to carry out these computations. The project
is to fully implement his algorithm, get it included
in Sage, and also implement some of the interesting
applications of the algorithm.

== Hermite Normal Forms for modules over the ring of integers of number fields. ==

|| Mentor || William Stein ||
|| Difficulty || Extreme ||
|| Skills || Good knowledge of Python, Sage, and graduate-level knowledge of abstract algebra and algebraic number theory ||

A Hermite Normal Form (HNF) algorithm for modules over general Dedekind domains was introduced in
Cohen's book 'Advanced topics in computational number theory'. The algorithm is currently not implemented directly in Sage,
 except in the special case when the ring is a principal ideal domain.
Much research in computational number
theory would benefit from an efficient implementation
of this (very tricky and subtle) algorithm. For
example, this algorithm is needed to get anywhere with
quaternion algebras and associated Brandt modules over totally real fields. As a GSoC project, it would be
reasonable to at least expose this HNF algorithm (from PARI) over the ring of integers of number fields, then
use it to implement basic functionality for working with finitely generated modules over Dedekind domains.

Pari has much new interesting functionality, e.g., for computing Hermite normal forms among other things.
This project would involve making that functionality usable in Sage, with one application being to computation
with modules over the ring of integers of a number field.

NOTE: Whether to use the PARI functionality or write something new will depend on the student, the quality of what
is in PARI, etc. We did some tests of this functionality from PARI last summer at the Quaternion Algebras sage days
and the results were mixed. Magma has this functionality, and speed/quality comparisons with its implementation
would be critical to keep in mind.

REFERENCE: Section 4.8 of Cohen's "A Course in Computational Algebraic Number Theory" is a good place to start.
http://www.amazon.com/Course-Computational-Algebraic-Graduate-Mathematics/dp/3540556400
The real problem is to fully implement module theory over rings of integers of arbitrary number fields...


== Multivariate Asymptotic Expressions ==

|| Mentor || Daniel Krenn; co-mentor: Clemens Heuberger ||
|| Difficulty || Hard ||
|| Skills || good knowledge of Python and Sage; graduate-level knowledge of mathematics is useful ||

An asymptotic expression typically contains exact terms and O-terms ([[https://en.wikipedia.org/wiki/Big_O_notation|wikipedia: Big O notation]] ), for example, n^3^ + 2*n^2^ + O(n). In the multivariate setting this notion is extended to several variables, e.g., n^2^*t + n*t^2^ + O(n) + O(t). The basic framework for this asymptotic ring is currently under development (see trac meta ticket [[http://trac.sagemath.org/ticket/17601|#17601]]). The main aim of this summer of code project is to extend its functionality to fully support the multivariate case. This includes the following parts:
    
 1. '''Advanced operations with asymptotic expressions:''' As a first step in this project operations like exponentiation, taking powers and logarithms should be implemented. This happens on a high level using the existing addition and multiplication, and thereby, get to know the existing framework.
 2. '''Implement multivariate growth groups:''' This would explore the full potential of the existing framework, which is already prepared for partially ordered growth groups. The conrete growth groups, in the case of lexicographic orders (e.g., terms with n*log(n)) as well as in the case of dependent variables (such as |t| <= n^(1/2)^), have to be written.
 3. '''Interplay with existing Sage-Objects ("User-Interface"):''' In order to comfortably create asymptotic expressions, a conversion from, for example (but not limited to), Sage's symbolic ring to the asymptotic ring should be established.


== SageMathCloud ==

Create a personal GPL-licensed version of !SageMathCloud (https://cloud.sagemath.com) that is included with every copy of Sage. The current source code of !SageMathCloud is here: https://github.com/sagemath/cloud
!SageMathCloud (SMC) consists of:

 * BROWSER: a single page application that runs in the web browser, which implements sage worksheets, code editing, latex editing, todo lists, markdown editing, a terminal, etc.
   
 * HTML/PROXY/SSL: a static html server (nginx), a proxy server (haproxy), and ssl encryption (stunnel)

 * DATABASE: a big distributed Cassandra database

 * COMPUTE: compute virtual machines that run user code (Sage worksheets, IPthon notebooks, terminal sessions)

 * HUB: a node.js process the does authentication, talks with the database, and generally coordinates traffic between web browsers and compute virtual machines.

The point of this project would be to make a single-project version of SMC for personal use that involves only the BROWSER and COMPUTE components listed above. The compute component would also serve html and have a small sqlite database to store images and other configuration information. The filesystem and files would just be the user's current account. In particular, this would involve completely cutting the HUB/PROXY/SSL and CASSANDRA components out of the picture. The benefit is that the sagews version of worksheets would be easily editable offline by anybody (not true now) and there would be a new offline latex editing tool.

|| Mentor || William Stein (and Harald Schilly) ||
|| Difficulty || Medium-Hard ||
|| Skills || !CoffeeScript, Node.js, Python, SQLite; little mathematical knowledge is needed ||


=== Other ===

There are many issues at https://github.com/sagemath/cloud/issues and other possible SMC projects. Let use know ([email protected]) if you're interested in something else involving SMC. I like the above for a Sage GSoC project, since it would result in a code being included in Sage.

For example, a good project could be a '''dynamic formula editor''' to manipulate symbolic expressions -- very likely based on http://mathquill.com/ (as it is used at desmos.com)

Another project idea is to create a '''UI front-end''' for entering and editing '''structured tabular data''' with real-time synchronization.

== Extending Game Theory in Sage ==

|| Mentor || Vincent Knight (additional help Karl-Dieter Crisman) ||
|| Difficulty || Medium ||
|| Skills || Good knowledge of Python, Sage, and some knowledge of Game Theory would be advantageous ||

Recent contributions to Sage have developed Game Theoretic tools. The main aim of this summer of code project is to extend this functionality. This includes the following potential directions:

 1. '''Further integration with gambit:''' One implementation of the solution of normal form games is done through the gambit python api. This currently implements a single two player algorithm, work would be undertaken to expand this to the various algorithms available in gambit (multiple players etc...).
 2. '''Tests for degeneracy of normal form games:''' A degenerate game is a game where the Nash equilibria does not correspond to an isolated point of the strategy space. This work would involve researching, designing annd implementing algorithms to tests for degeneracy of normal form games.
 3. '''Designing of educational materials making use of SageMathCloud:''' Having Sage and solution concepts for games readily available to all in SageMathCloud make this an excellent teaching tool. A variety of teaching materials could be designed making use of screencasts, interacts and other web technologies. Furthermore, this could also involve the enhancement of the game theoretic library in Sage to include example games.

== Add support for systems of rational inequalities ==

Enable Sage users to solve systems of rational inequalities like

{{{
abs(2*x-3)/(3*x)>(x+1)/(x-2) and (4*x+5)^2/(x-3)<x+3.
}}}

For this, the way to go seems [[http://trac.sagemath.org/ticket/10224|to package]] [[https://www.usna.edu/CS/qepcadweb/B/QEPCAD.html|QEPCAD]] in such a quality that it can become an "optional package". One could then use:
{{{
sage: maxima_calculus("domain: real") #14229
sage: dnf1 = solve(abs(2*x-3)/(3*x)>(x+1)/(x-2),x)
sage: qf1 = apply(qepcad_formula.or_, map(qepcad_formula.and_, dnf1))
sage: dnf2 = solve((4*x+5)^2/(x-3)<x+3,x)
sage: qf2 = apply(qepcad_formula.or_, map(qepcad_formula.and_, dnf2))
sage: qepcad(qepcad_formula.and_(qf1, qf2), vars='(x)')
}}}
to get the solution `"0 < x < 2"`.

A further topic would be to introduce shorter syntax (infix boolean operators, inequality chains) for the above, to do something like the following:
{{{
sage: dnf1 _and_ dnf2
0 < x < 2
}}}
Note that `0 < x < 2` would not be a string here, but a Sage object. Also, `dnf1` and `dnf2` should be in the new syntax, instead of the current "list of lists" DNF.

Finally, also the something like the following should work:
{{{
sage: solve(0 < x < 2 _or_ x > 1, x)
x > 0
}}}

Motivation: Univariate rational inequalities are a topic of the author's institute's 1st year classes, and Mathematica is currently used there.

Note: There is a similar, but more general proposal [[http://www.cs.ox.ac.uk/teaching/studentprojects/357.html|Computing with semi-algebraic sets]] by Dmitrii Pasechnik:

 Semi-algebraic sets are subsets of R^n specified by polynomial inequalities. The project will extend capabilities of Sage to deal with them, such as CADs computations or sums of squares based (i.e. semi-definite programming based) methods.


|| Mentor || please ask Dmitrii Pasechnik ||
|| Difficulty || ... ||
|| Skills || C programming, some Python knowledge, appropriate maths background ||

== Extending Matroid Theory functionality ==

|| Mentor || Stefan van Zwam; co-mentor: Michael Welsh ||
|| Difficulty || Medium ||
|| Skills || Good knowledge of Python, Sage, and some knowledge of Matroid Theory would be advantageous ||

The basic code for dealing with matroids in Sage is fairly mature, but many enhancements are still desirable. Among those:

 1. '''Connectivity algorithms:''' Implement efficient tests for the connectivity of a matroid. In particular the $(r(M))^2 |E|$ algorithm for 3-connectivity by Bixby and Cunningham (1979), and generic algorithms based on either Tutte's Linking Theorem or Matroid Intersection.
 2. '''An improved catalog:''' This could be a warm-up task for the first two weeks. Enhance the matroid catalog with some options, such as adding options to prescribe the field of a representation.
 3. '''Automorphisms and certificates:''' Many matroid test methods are currently True/False. In many cases, it makes sense to return a certificate of the claim, such as an isomorphism in case two matroids are determined to be isomorphic.
 4. '''Representability tests:''' Test if a given abstract matroid is binary, ternary, quaternary, regular, ...
 5. '''Framework for classes of representable matroids:''' This can take two directions. First, a parent-like class such as BinaryMatroids, which symbolically represents all binary matroids, and has methods for extending, membership tests, etc. Second, a finite collection of matroids (such as all binary matroids without a P7-minor up to 9 elements), where each matroid stores information about its allowed extensions and coextensions for faster generation and membership testing.

= Projects with no mentor =

If you are a candidate '''extremly''' motivated by one of the topic below, send an e-mail to [[https://groups.google.com/forum/#!forum/sage-gsoc|mailing list]].
Line 10: Line 267:
note: this is note completely Sage oriented... (see with IPython people) Note: This is not completely Sage oriented... (see with IPython people)

|| Mentor || ... ||
|| Difficulty || ... ||
|| Skills || ... ||

William Stein: I don't get the point of this as a real project. Who proposed this? For example, regarding "one needs to save the Python state after each cell", I don't think that is even possible. Another relevant remark is that right now IPython records the order in which cells are evaluated with numbers.

Vincent Delecroix: This is my proposition. It pops out during pari days that a notebook that acts like console should be available. I will not be so sure that it is not feasible. You can basically deepcopy globals() after each cell. Such top to bottom mode is what is implemented in coqide (for the theorem prover coq).
Line 14: Line 279:
Adapt [[https://code.google.com/p/spyderlib/|Spyder]] to work with Sage. Adapt [[https://github.com/spyder-ide/spyder|Spyder]] to work with Sage.
Line 18: Line 283:
== generic dispatcher ==

In Sage there are various places where we have several possibilities to execute a task (e.g. calling pari or gap or a native sage function). It would be interesting to have a way of choosing the default parameters by performing benchmarkings at build time. That would also allow to check coherency between various implementations.

== Android App ==

== iOS App ==

== SageMathCloud ==

T.B.A.
|| Mentor || ... ||
|| Difficulty || ... ||
|| Skills || ... ||

GSoC 2015

Introduction

Google Summer of Code is a highly enjoyable and rewarding way to spend a summer.

Sage is a GPL open-source mathematical software system. It is designed to be not just a computer algebra system, but more like a complete environment for doing mathematics and related calculations. It is based on a vast collection of existing open-source software tools and libraries and ties them together via Python. Python is also the primary interface language for the user and its object-oriented way of expressing concepts is used to express calculations - of course, there are also many “normal” functions :-) Behind the scenes, the Sage library executes the commands and calculations by its own algorithms or by accessing appropriate routines from the included software packages. On top of that, there are various ways how users can interact with Sage, most notably a dynamic web-site called “Notebook”.

All projects will start with an introduction phase to learn about Sage’s internal organization and to get used to its established development process. This is documented in the documentation for developers and all students will be instructed by the mentors on how to get their hands dirty. We use Git for revision control and trac for organizing development and code review. Our license is GPLv2+. Feel free to contact Mentors before you send us project proposals.

Feel free to introduce yourself and your project idea in our mailing list.

To get a better feeling how Sage works, please check out the developer guide.

There is also a comprehensive list of future feature wishes in our trac issue tracker. They might contain the perfect project idea for you we didn't even think about!

Shoot Simon Spicer ([email protected]) an email if you want more details from a recent GSoC student on the actual logistics of doing a GSoC project.

Application Template

Please use this application template, in particular answer the questions thoroughly enough to convince us to pick you!

Personal:

  • Name
  • Contact Information (email, instant messaging, …)
  • Location/Timezone
  • University

Background:

  • What are your technical skills, education, experience, etc. Especially make sure to explain with what level of mathematics you are comfortable with and on what level you would like to program.
  • Who are you? What makes you the best person to work on this particular project? Special motivation?
  • What platform and operating-system are you using on your computer? (Sage development is done best on Linux and OSX)
  • Are you or have you been engaged in other open-source projects?
  • Do you code on your own pet projects?
  • Are you a Sage user, how long do you know Sage?

Project:

  • Title, Project Synopsis: a short description and summary of its aim and scope.
  • What is your personal involvement or relationship with your proposed project?
  • Details: describe all the details and explain modules or parts of your whole project. Break down the whole project into individual tasks - as good as possible - and describe deliverable and quantifiable results for each of them. It also helps if you have already discussed this with a possible mentor.
  • Schedule: A timetable, including special circumstances like exams or holidays, for the individual tasks.
  • Risk Management: Try to anticipate potential problems and explain, how to mitigate them. Propose alternative scenarios, if a particular milestone isn't reached, to still successfully complete the project.

Project Ideas

SymPy

SymPy didn't make it into this year's GSoC. Since it is part of Sage, there is likely interest to make some of their projects a reality.

Make Sage use CSymPy as the symbolic engine

Mentor

Ondřej Čertík

Difficulty

Medium

Skills

Good knowledge of Python, Sage, and familiarity with C++

One big *longterm* goal is to make it possible for Sage to use CSymPy as the main symbolic engine instead of Pynac. CSymPy is a fast C++ library for symbolic manipulation with optional Python wrappers. Another goal is to reduce the reliance of Sage on Maxima, with a longterm goal to remove that reliance (simplification, Taylor series, symbolic integration, etc.)

At the end of the summer we don't expect Sage to be switched, but there could be a clear path forward, and it should be possible to use it as an optional package in Sage, side by side, with good interoperability.

See this sage-gsoc thread for more information.

Steps:

  • Write Sage wrappers (the SymPy wrappers are already done and we can have arbitrary sympy expression as an object in the C++ expression tree), so most of this work is done --- then anybody in Sage can easily try it out

  • Figure out what needs to be done to hook it up just like Pynac is (this might be quite a bit of work, hopefully it's manageable)
  • Identify what features in CSymPy are still missing (and start implementing those)

Generic Dispatcher

Mentor

Vincent Delecroix

Difficulty

Medium to very Hard

Skills

good knowledge of Python and notions of Cython and C

In Sage there are many places where we can choose between several algorithms or underlying softwares to solve a problem. This is often related to the presence of the keyword algorithm or method in functions. The aim of this task is to build a generic dispatcher that would choose depending on the parameters the fastest solution available. The solution must be very light and not affect performance. The dispatch threshold must be static and computed through a dedicated command (like sage -recompute-thresholds). We could also have default threshold that depend on architectures. This generic dispatcher could also be used to check coherency between the various implementations.

Note that it is different from what is called multimethods where the dispatch depends only on the input type. Here we consider a dispatcher that might also depend on the input values.

Steps:

  1. identify some Sage functions/methods that could benefit from the dispatcher
  2. write a simple prototype of generic dispatcher adapted to 1 and intensively test it
  3. release a first candidate for the dispatcher
  4. more Sage functions coverage (this can be hard since some threshold might be extremly complicated to determine. In order to do that you are advised to ask for help on the mailing-list)

Android App

iOS App

Computation of q-expansions of modular forms attached to elliptic curves at all cusps.

Mentor

William Stein

Difficulty

Extreme

Skills

Good knowledge of Python, Sage, and research-level knowledge of number theory

There is a well-known and easy to implement algorithm to compute the q-expansions at all cusps of X_0(N) of the newform attached to an elliptic curve, when N is square-free, but no such algorithm is known explicitly in general. Being able to compute these q-expansions at all cusps in general has many very interesting applications, including determining the ramification of modular parametrizations of elliptic curves at cusps, and numerical computation of constants in the functional equation of the twists of a newform. A graduate student, Hao Chen (of University of Washington), has new ideas to carry out these computations. The project is to fully implement his algorithm, get it included in Sage, and also implement some of the interesting applications of the algorithm.

Hermite Normal Forms for modules over the ring of integers of number fields.

Mentor

William Stein

Difficulty

Extreme

Skills

Good knowledge of Python, Sage, and graduate-level knowledge of abstract algebra and algebraic number theory

A Hermite Normal Form (HNF) algorithm for modules over general Dedekind domains was introduced in Cohen's book 'Advanced topics in computational number theory'. The algorithm is currently not implemented directly in Sage,

  • except in the special case when the ring is a principal ideal domain.

Much research in computational number theory would benefit from an efficient implementation of this (very tricky and subtle) algorithm. For example, this algorithm is needed to get anywhere with quaternion algebras and associated Brandt modules over totally real fields. As a GSoC project, it would be reasonable to at least expose this HNF algorithm (from PARI) over the ring of integers of number fields, then use it to implement basic functionality for working with finitely generated modules over Dedekind domains.

Pari has much new interesting functionality, e.g., for computing Hermite normal forms among other things. This project would involve making that functionality usable in Sage, with one application being to computation with modules over the ring of integers of a number field.

NOTE: Whether to use the PARI functionality or write something new will depend on the student, the quality of what is in PARI, etc. We did some tests of this functionality from PARI last summer at the Quaternion Algebras sage days and the results were mixed. Magma has this functionality, and speed/quality comparisons with its implementation would be critical to keep in mind.

REFERENCE: Section 4.8 of Cohen's "A Course in Computational Algebraic Number Theory" is a good place to start. http://www.amazon.com/Course-Computational-Algebraic-Graduate-Mathematics/dp/3540556400 The real problem is to fully implement module theory over rings of integers of arbitrary number fields...

Multivariate Asymptotic Expressions

Mentor

Daniel Krenn; co-mentor: Clemens Heuberger

Difficulty

Hard

Skills

good knowledge of Python and Sage; graduate-level knowledge of mathematics is useful

An asymptotic expression typically contains exact terms and O-terms (wikipedia: Big O notation ), for example, n3 + 2*n2 + O(n). In the multivariate setting this notion is extended to several variables, e.g., n2*t + n*t2 + O(n) + O(t). The basic framework for this asymptotic ring is currently under development (see trac meta ticket #17601). The main aim of this summer of code project is to extend its functionality to fully support the multivariate case. This includes the following parts:

  1. Advanced operations with asymptotic expressions: As a first step in this project operations like exponentiation, taking powers and logarithms should be implemented. This happens on a high level using the existing addition and multiplication, and thereby, get to know the existing framework.

  2. Implement multivariate growth groups: This would explore the full potential of the existing framework, which is already prepared for partially ordered growth groups. The conrete growth groups, in the case of lexicographic orders (e.g., terms with n*log(n)) as well as in the case of dependent variables (such as |t| <= n(1/2)), have to be written.

  3. Interplay with existing Sage-Objects ("User-Interface"): In order to comfortably create asymptotic expressions, a conversion from, for example (but not limited to), Sage's symbolic ring to the asymptotic ring should be established.

SageMathCloud

Create a personal GPL-licensed version of SageMathCloud (https://cloud.sagemath.com) that is included with every copy of Sage. The current source code of SageMathCloud is here: https://github.com/sagemath/cloud SageMathCloud (SMC) consists of:

  • BROWSER: a single page application that runs in the web browser, which implements sage worksheets, code editing, latex editing, todo lists, markdown editing, a terminal, etc.
  • HTML/PROXY/SSL: a static html server (nginx), a proxy server (haproxy), and ssl encryption (stunnel)
  • DATABASE: a big distributed Cassandra database
  • COMPUTE: compute virtual machines that run user code (Sage worksheets, IPthon notebooks, terminal sessions)
  • HUB: a node.js process the does authentication, talks with the database, and generally coordinates traffic between web browsers and compute virtual machines.

The point of this project would be to make a single-project version of SMC for personal use that involves only the BROWSER and COMPUTE components listed above. The compute component would also serve html and have a small sqlite database to store images and other configuration information. The filesystem and files would just be the user's current account. In particular, this would involve completely cutting the HUB/PROXY/SSL and CASSANDRA components out of the picture. The benefit is that the sagews version of worksheets would be easily editable offline by anybody (not true now) and there would be a new offline latex editing tool.

Mentor

William Stein (and Harald Schilly)

Difficulty

Medium-Hard

Skills

CoffeeScript, Node.js, Python, SQLite; little mathematical knowledge is needed

Other

There are many issues at https://github.com/sagemath/cloud/issues and other possible SMC projects. Let use know ([email protected]) if you're interested in something else involving SMC. I like the above for a Sage GSoC project, since it would result in a code being included in Sage.

For example, a good project could be a dynamic formula editor to manipulate symbolic expressions -- very likely based on http://mathquill.com/ (as it is used at desmos.com)

Another project idea is to create a UI front-end for entering and editing structured tabular data with real-time synchronization.

Extending Game Theory in Sage

Mentor

Vincent Knight (additional help Karl-Dieter Crisman)

Difficulty

Medium

Skills

Good knowledge of Python, Sage, and some knowledge of Game Theory would be advantageous

Recent contributions to Sage have developed Game Theoretic tools. The main aim of this summer of code project is to extend this functionality. This includes the following potential directions:

  1. Further integration with gambit: One implementation of the solution of normal form games is done through the gambit python api. This currently implements a single two player algorithm, work would be undertaken to expand this to the various algorithms available in gambit (multiple players etc...).

  2. Tests for degeneracy of normal form games: A degenerate game is a game where the Nash equilibria does not correspond to an isolated point of the strategy space. This work would involve researching, designing annd implementing algorithms to tests for degeneracy of normal form games.

  3. Designing of educational materials making use of SageMathCloud: Having Sage and solution concepts for games readily available to all in SageMathCloud make this an excellent teaching tool. A variety of teaching materials could be designed making use of screencasts, interacts and other web technologies. Furthermore, this could also involve the enhancement of the game theoretic library in Sage to include example games.

Add support for systems of rational inequalities

Enable Sage users to solve systems of rational inequalities like

abs(2*x-3)/(3*x)>(x+1)/(x-2) and (4*x+5)^2/(x-3)<x+3.

For this, the way to go seems to package QEPCAD in such a quality that it can become an "optional package". One could then use:

sage: maxima_calculus("domain: real") #14229
sage: dnf1 = solve(abs(2*x-3)/(3*x)>(x+1)/(x-2),x)
sage: qf1 = apply(qepcad_formula.or_, map(qepcad_formula.and_, dnf1))
sage: dnf2 = solve((4*x+5)^2/(x-3)<x+3,x)
sage: qf2 = apply(qepcad_formula.or_, map(qepcad_formula.and_, dnf2))
sage: qepcad(qepcad_formula.and_(qf1, qf2), vars='(x)')

to get the solution "0 < x < 2".

A further topic would be to introduce shorter syntax (infix boolean operators, inequality chains) for the above, to do something like the following:

sage: dnf1 _and_ dnf2
0 < x < 2

Note that 0 < x < 2 would not be a string here, but a Sage object. Also, dnf1 and dnf2 should be in the new syntax, instead of the current "list of lists" DNF.

Finally, also the something like the following should work:

sage: solve(0 < x < 2 _or_ x > 1, x)
x > 0

Motivation: Univariate rational inequalities are a topic of the author's institute's 1st year classes, and Mathematica is currently used there.

Note: There is a similar, but more general proposal Computing with semi-algebraic sets by Dmitrii Pasechnik:

  • Semi-algebraic sets are subsets of R^n specified by polynomial inequalities. The project will extend capabilities of Sage to deal with them, such as CADs computations or sums of squares based (i.e. semi-definite programming based) methods.

Mentor

please ask Dmitrii Pasechnik

Difficulty

...

Skills

C programming, some Python knowledge, appropriate maths background

Extending Matroid Theory functionality

Mentor

Stefan van Zwam; co-mentor: Michael Welsh

Difficulty

Medium

Skills

Good knowledge of Python, Sage, and some knowledge of Matroid Theory would be advantageous

The basic code for dealing with matroids in Sage is fairly mature, but many enhancements are still desirable. Among those:

  1. Connectivity algorithms: Implement efficient tests for the connectivity of a matroid. In particular the (r(M))^2 |E| algorithm for 3-connectivity by Bixby and Cunningham (1979), and generic algorithms based on either Tutte's Linking Theorem or Matroid Intersection.

  2. An improved catalog: This could be a warm-up task for the first two weeks. Enhance the matroid catalog with some options, such as adding options to prescribe the field of a representation.

  3. Automorphisms and certificates: Many matroid test methods are currently True/False. In many cases, it makes sense to return a certificate of the claim, such as an isomorphism in case two matroids are determined to be isomorphic.

  4. Representability tests: Test if a given abstract matroid is binary, ternary, quaternary, regular, ...

  5. Framework for classes of representable matroids: This can take two directions. First, a parent-like class such as BinaryMatroids, which symbolically represents all binary matroids, and has methods for extending, membership tests, etc. Second, a finite collection of matroids (such as all binary matroids without a P7-minor up to 9 elements), where each matroid stores information about its allowed extensions and coextensions for faster generation and membership testing.

Projects with no mentor

If you are a candidate extremly motivated by one of the topic below, send an e-mail to mailing list.

Notebook mode with execution from top to bottom

In the current notebook (both Sage notebook and IPython notebook) the cells can be executed in any order. From a teaching point of view this is terrible and from a scientific point of view this leads to highly non reproducible computations.

The purpose of this task is to have a new mode for the IPython notebook that would force computations from top to bottom. If a cell is executed, then the state in which it is executed must be the one you obtain by executing all the cells above it. In order to make it work, one needs to save the Python state after each cell.

Note: This is not completely Sage oriented... (see with IPython people)

Mentor

...

Difficulty

...

Skills

...

William Stein: I don't get the point of this as a real project. Who proposed this? For example, regarding "one needs to save the Python state after each cell", I don't think that is even possible. Another relevant remark is that right now IPython records the order in which cells are evaluated with numbers.

Vincent Delecroix: This is my proposition. It pops out during pari days that a notebook that acts like console should be available. I will not be so sure that it is not feasible. You can basically deepcopy globals() after each cell. Such top to bottom mode is what is implemented in coqide (for the theorem prover coq).

Native GUI

Adapt Spyder to work with Sage.

See also this thread on sage-devel.

Mentor

...

Difficulty

...

Skills

...

GSoC/2015 (last edited 2015-03-16 20:44:44 by schilly)