-
Notifications
You must be signed in to change notification settings - Fork 0
GSoC 2016 Ideas
This is the list of ideas for students wishing to apply for Google Summer of Code 2016. For more information on how to apply, see the GSoC 2016 Student Instructions. This list is here for inspiration and to give students an idea of what directions may be good for SymPy.
If you want to pursue an idea listed here, you should contact us on our mailing list and discuss it. Be sure to always ask about these ideas to get the latest information about what is implemented and what exactly has to be done.
The list is organized as follows:
- High Priority Projects
- Projects that are considered important in our roadmap.
- Mathematics Projects
- Well developed ideas of interest for us, however they do not block the release of the next major version of SymPy. These require deep understanding of the mathematics in question.
- Physics Projects
- Well developed ideas of interest for us, however they do not block the release of the next major version of SymPy. A number of well developed modules dealing with classical and modern physics are being developed as part of SymPy.
- Computer Science, Graphics, and Infrastructure Projects
- These ideas enhance the core capabilities of SymPy.
- User Application Projects
- We support two web applications (SymPy Live and SymPy Gamma) for end users to interact with SymPy and there are many other external applications that utilize SymPy as a library. These project ideas focus on development and improvements of applications for end users.
- SymEngine Projects
- These ideas support the C++ based project SymEngine. SymEngine provides core symbolic capabilities at very fast speeds. It will eventually provide an optional core for SymPy to improve its computation speeds.
- Idea Prompts
- List in a "brainstorming" style that has many nice project ideas. Each of the above projects were born in this list. Read it carefully as the most interesting projects may come from there.
The order of ideas in this list has no bearing to the chances of an idea to be accepted. All of them are equally good and your chances depend on the quality of your application. Also do not worry if there are no mentors assigned to a given idea. If the application is good, we will find a mentor. As already said, you can very well submit your own idea not listed here.
You can apply with something completely different if you like. The best project for you is one you are interested in, and are knowledgeable about. That way, you will be the most successful in your project and have the most fun doing it, while we will be the most confident in your commitment and your ability to complete it.
If you do want to suggest your own idea, please discuss it with us first, so we can determine if it is already been implemented, if it is enough work to constitute a summer's worth of coding, if it is not too much work, and if it is within the scope of our project.
Please use the below Idea Template to Mention Ideas:
Idea
(Specify your idea with proper explanation)
Status
(What is the Status of this Idea in the Sympy Community currently, previous work done and Issues)
Involved Software
(Any other Software Involved that would be required to implement your idea)
Difficulty
(Advanced, Intermediate, or Beginner and any specific comments on the difficulty)
Prerequisite Knowledge
(Any prerequisite knowledge or approach needed)
If you are willing to mentor, please add yourself here. Also please register at https://summerofcode.withgoogle.com and add your email that you registered with. Note that GSoC has a new website this year, so even if you mentored before you will need to create a new profile. Finally, list your name with any projects below that you would be willing to mentor.
- Aaron Meurer (asmeurer@gmail.com)
- Ondřej Čertík (ondrej.certik@gmail.com)
- Thilina Rathnayake (thilinarmtb@gmail.com)
- Jason Moore (moorepants@gmail.com)
- Ralf Stephan (gtrwst9@gmail.com)
- Amit Kumar (dtu.amit@gmail.com)
- Isuru Fernando (isuruf@gmail.com)
- Abinash Meher (abinashdakshana999@gmail.com)
- Sudhanshu Mishra (sudmishra01[at]gmail.com)
- Shivam Vats (shivamvats.iitkgp@gmail.com
- Kalevi Suominen (jksuom@gmail.com)
- Sean Vig (sean.v.775@gmail.com)
- Harsh Gupta (gupta.harsh96@gmail.com)
- Jim Crist (crist042@umn.edu)
- Sumith (sumith1896@gmail.com)
- Sartaj Singh (singhsartaj94@gmail.com)
- High Priority
-
Mathematics Projects
- Solvers
- Group theory
- Risch algorithm for symbolic integration
- Ordinary Differential Equations
- Series expansions
- Cylindrical algebraic decomposition
- Efficient Groebner bases and their applications
- Multivariate polynomials and factorization
- Univariate polynomials over algebraic domains
- Concrete module: Implement Karr algorithm, a decision procedure for symbolic summation
- Linear Algebra: Tensor core
- Implementation of multiple types of coordinate systems for vectors
- Implementation of vector integration
- Singularity Functions
- Implement Holonomic Functions
-
Physics Projects
- Symbolic quantum mechanics (
sympy.physics.quantum
) - Classical Mechanics: Implement an O(N) Equation of Motions Method
- Classical Mechanics: Efficient Equation of Motion Generation with Python
- Classical Mechanics: Efficient Equation of Motion Generation with C++
- Classical Mechanics: Generalize the Equation of Motion Generation Classes
- Classical Mechanics: Autolev Parser
- Symbolic quantum mechanics (
- Computer Science, Graphics, and Infrastructure Projects
- User Application Projects
- SymEngine Projects
- Idea Prompts
- Other Related Projects
- Non-Ideas
Idea
The project is to completely remove our old assumptions system, replacing it with the new one. The difference between the two systems is outlined in the first two sections of this blog post.
This project is challenging. It requires deep understanding of the core of SymPy, basic logical inference, excellent code organization, and attention to performance. It is also very important and of high value to the SymPy community.
Numerous related tasks are mentioned in the "Ideas" section.
Status
There has been a signficant amount of merged and unmerged work on this topic. A list of detailed issues can be found at this issue. You should take a look at the work started at https://github.com/sympy/sympy/pull/2508.
Involved Software
None
Difficulty
Advanced
Prerequisite Knowledge
Number theory, Boolean algebra, etc.
Idea
SymPy already has a pretty powerful solve
function. But it has a lot of major
issues
-
It doesn't have a consistent output for various types of solutions It needs to return a lot of types of solutions consistently:
- single solution :
x == 1
- Multiple solutions:
x**2 == 1
- No Solution:
x**2 + 1 == 0; x is real
- Interval of solution:
floor(x) == 0
- Infinitely many solutions:
sin(x) == 0
- Multivariate functions with point solutions
x**2 + y**2 == 0
- Multivariate functions with non point solution
x**2 + y**2 == 1
- System of equations
x + y == 1
andx - y == 0
- Relational
x > 0
- And the most important case "We don't Know"
- single solution :
-
The input API is also a mess, there are a lot of parameter. Many of them are not needed and they makes it hard for the user and the developers to work on solvers.
-
There are cases like finding the maxima and minima of function using critical points where it is important to know if it has returned all the solutions.
solve
does not guarantee this.
Status
During the summer of 2014 Harsh Gupta worked to improve solvers as part of his
GSoC project. Instead of making changes in the current solve
function a new
submodule named solveset
was written. In the summer of 2015 Amit Kumar worked
on this project to improve solveset, implement complex sets as a part of his
GSoC project. There is still a lot that can be done.
-
solveset
has a cleaner input and output interface:solveset
returns a set object and a set object take care of all the types of the output. For cases where is doesn't "know" all the solutions aNotImplementedError
is raised. For input only takes the equation and the variables for which the equations has to be solved. -
solveset
can return infinitely many solutions. For example solving forsin(x) = 0
returns {2⋅n⋅π | n ∊ ℤ} ∪ {2⋅n⋅π + π | n ∊ ℤ} Whereassolve
only returns [0, π] -
There is a clear code level and interface level separation between solvers for equations in complex domain and equations in real domain. For example solving
exp(x) = 1
when x is complex returns the set of all solutions that is {2⋅n⋅ⅈ⋅π | n ∊ ℤ} . Whereas if x is a real symbol then only {0} is returned. -
solveset
returns a solution only when it can guarantee that it is returning all the solutions.
There had been a lot of discussion during and before the project and you should know why we did what we did. Here are some links:
- Discussion on the mailing list
- Action Plan on solvers
- Harsh Gupta's proposal for GSoC 2014
- Harsh's blog for GSoC
- solveset pull request
- Amit's blog for GSoC
- Solveset Documentation
Here's a brief list of things that needs to be done:
- Solveset only solves a single equations for a single variable. It should be capable to solving a system of equations and for more than one variable.
- Implement more equation solvers for univariate algebraic equations. For example equations solvable by LambertW function.
- Build the set infrastructure: This includes implementing functions to handle multidimensional ImageSet etc., This part must go hand in hand with the improvements in the solvers as set module can be a universe in itself. Also there can be fundamental limits on the things you can do.
Involved Software
SymPy
Difficulty
This project is difficult because it requires a good deal of thought in the application period. You should have a clear plan of most of what you plan to do in your application: waiting until the Summer to do the designing will not work.
#10006 and #8711 can be good entry points.
Prerequisite Knowledge
Algebraic and differential equations
Idea
Implement a module to work with groups. You should take a look at the GAP library, as this is the canonical group theory computation system right now. Some things to think about:
- How do you represent a group?
- How do you represent the elements of a group?
- Can we support both finite and infinite groups?
- Can we support defining groups by generators?
Algorithms to think about implementing:
- Computation of subgroups of various types (e.g., normal subgroups).
- Computation of Galois groups for a given polynomial.
Also take a look at the Permutation class already implemented in SymPy.
Status
Some work is already done on discrete groups. Nonetheless there is still much that can be done both for discrete groups and for Lie groups.
Difficulty
Prerequisite Knowledge
Idea
The Risch algorithm is a complete algorithm to integrate any elementary
function. Given an elementary function, it will either produce an
antiderivative, or prove that none exists. The algorithm described in
Bronstein's book deals with transcendental functions (functions that do not
have algebraic functions, so log(x)
is transcendental, but sqrt(x)
and
sqrt(log(x))
are not).
Status
The project is to continue where Aaron Meurer left off in his 2010 GSoC project, implementing the algorithm from Manuel Bronstein's book, Symbolic Integration I: Transcendental Functions. If you want to do this project, be sure to ask on the mailing list or our IRC channel to get the status of the current project.
The algorithm has already been partially implemented, but there is plenty of work remaining to do. Contact Aaron Meurer for more information. There was also work done in 2013, which hasn't been completely merged yet. A good place to start would be to look at finishing this work: https://github.com/sympy/sympy/pulls/cheatiiit. See https://groups.google.com/forum/#!msg/sympy/bYHtVOmKEFs/UZoyDX81eP4J for some more details on this project (nothing has changed since that email thread).
Involved Software
Difficulty
Prerequisite Knowledge
You should have at least a semester's worth of knowledge in abstract algebra. Knowing more, especially about differential algebra, will be beneficial, as you will be starting from the middle of a project. Take a look at the first chapter of Bronstein's book (you should be able to read it for free via Google Books) and see how much of that you already know. If you are unsure, discuss this with Aaron Meurer (asmeurer).
Idea
Currently, SymPy only supports many basic types of differential equations, but there are plenty of methods that are not implemented. Maybe support for using Lie groups to help solve ODEs. See the ODE docs and the current source for information on what methods are currently implemented. Also, there is limited support for solving systems of ODEs. You also might want to look at Manuel Bronstein's sumit.
-
Separation ansatz:
- "A simple method to find out when an ordinary differential equation is separable" by José ́Ángel Cid
-
"Solving Differential Equations in Terms of Bessel Functions" by Ruben Debeerst.
- Webpage: http://www.mathematik.uni-kassel.de/~debeerst/master/
- Master Thesis: http://www.mathematik.uni-kassel.de/~debeerst/master/master.pdf
- Corresponding ISSAC 08 paper: http://www.mathematik.uni-kassel.de/~debeerst/master/paper_issac2008.pdf
-
Lie groups and symmetry related:
- An implementation of these methods was done for first order ODEs during gsoc13. But we can do the same tricks for second order ODEs too.
- "Computer Algebra Solving of First Order ODEs Using Symmetry Methods" by E.S. Cheb-Terrab, L.G.S. Duarte and L.A.C.P. da Mota. There is a short (15 pages) and an updated (24 pages) version of this paper.
- "Computer Algebra Solving of Second Order ODEs Using Symmetry Methods" by E.S. Cheb-Terrab, L.G.S. Duarte, L.A.C.P. da Mota
- "Integrating factors for second order ODEs" by E.S. Cheb-Terrab and A.D. Roche
- "Symmetries and First Order ODE Patterns" by E.S. Cheb-Terrab and A.D. Roche
- "Abel ODEs: Equivalence and Integrable Classes" by E.S. Cheb-Terrab and A.D. Roche Note: Original version (12 pages): July 1999. Revised version (31 pages): January 2000
- "First order ODEs, Symmetries and Linear Transformations" by E.S. Cheb-Terrab and T. Kolokolnikov
- "Non-Liouvillian solutions for second order linear ODEs" by L. Chan, E.S. Cheb-Terrab
- And probably some more by these authors ...
Status
Involved Software
Difficulty
Medium
Prerequisite Knowledge
Differential equations
Idea
This includes numerous smaller subprojects.
- improve series expansions
- improve formal power series
- improve limits - make sure all basic limits work
- limit of series
- asymptotic series
- Better support for Order term arithmetic (for example, expression of the order term of the series around a point that is not 0, like O((x - a)**3)).
- All other problems, which are described in wiki page about series and current situation
Status
There is already a fast implementation called rs_series
in SymPy. This
project would extend it to work for all functions and then make it the default
series expansion in SymPy.
SymPy now has support for Formal Power Series (series.formal). The algorithm is more or less complete. The module should be made faster. There are also a lot of XFAIL tests that can be made to pass.
A new algorithm for computing limits of sequences has also been added (series.limitseq). There are still XFAIL tests that can be made to pass.
Some references
- "Formal Power Series" by Dominik Gruntz and Wolfram Koepf
- "A New Algorithm Computing for Asymptotic Series" by Dominik Gruntz
- "Computing limits of Sequences" by Manuel Kauers
- "Symbolic Asymptotics: Functions of Two Variables, Implicit Functions" by Bruno Savly and John Shackell
- "Symbolic Asymptotics: Multiseries of Inverse Functions" by Bruno Savly and John Shackell
Involved Software
SymPy
Difficulty
Medium
Prerequisite Knowledge
Calculus
Idea
-
Implement the Cylindrical algebraic decomposition algorithm
-
Use CAD to do quantifier elimination
-
Provide an interface for solving systems of polynomial inequalities
-
Some references:
- Cylindrical Algebraic Decomposition http://mathworld.wolfram.com/CylindricalAlgebraicDecomposition.html
- "Algorithms in Real Algebraic Geometry" http://perso.univ-rennes1.fr/marie-francoise.roy/bpr-ed2-posted1.html (useful background resource, but contains much more information)
- "Cylindrical Algebraic Decomposition I: The Basic Algorithm" by Dennis S. Arnon, George E. Collins, Scot McCallum
- "Computing Cylindrical Algebraic Decomposition via Triangular Decomposition" by Marc Moreno Maza, Changbo Chen, Bican Xia, Lu Yang
- "Simple CAD Construction and its Applications" by Christopher W. Brown
- "Improved Projection for Cylindrical Algebraic Decomposition" by Christopher W. Brown
- "Symbolic Computation for Inequalities" by Manuel Kauers http://www.sfb013.uni-linz.ac.at/uploads/media/SymCompIneq.pdf
- "How To Use Cylindrical Algebraic Decomposition" by Manuel Kauers
Status
Involved Software
Difficulty
Prerequisite Knowledge
Idea
Groebner bases computation is one of the most important tools in computer algebra, which can be used for computing multivariate polynomial LCM and GCD, solving systems of polynomial equations, symbolic integration, simplification of rational expressions, etc. Currently there is an efficient version of Buchberger algorithm implemented and of the F5B algorithm, along with naive multivariate polynomial arithmetic in monomial form. There is also the FGLM algorithm converting reduced Groebner bases of zero-dimensional ideals from one ordering to another.
Improve efficiency of Groebner basis algorithm by using better selection strategy (e.g. sugar method) and implement Faugere F4 algorithm and analyze which approach is better in what contexts. Implement the generic Groebner walk converting between Groebner basis of finite-dimensional ideals; there are efficient algorithms for it, by Tran (2000) and Fukuda et al. (2005).
Apply Groebner bases in integration of rational and transcendental functions and simplification of rational expressions modulo a polynomial ideal (e.g. trigonometric functions).
Status
There was a project last year relating to Groebner bases. Please take a look a the source and discuss things with us to see what remains to be done.
Some Groebner bases algorithms, in particular F4, require strong linear algebra. Thus, if you want to do that, you may have to first improve our matrices (see the ideas relating to this above).
Involved Software
Difficulty
Prerequisite Knowledge
Idea
Factorization of multivariate polynomials is an important tool in algebra systems, very useful by its own, also used in symbolic integration algorithms, simplification of expressions, partial fractions, etc. Currently multivariate factorization algorithm is based on Kronecker's method, which is impractical for real life problems. Undergo there is implementation of Wang's algorithm, the most widely used method for the task.
Start with implementing efficient multivariate polynomial arithmetic and GCD algorithm. You do this by improving existing code, which is based on recursive dense representation or implement new methods based on your research in the field. There are many interesting methods, like Yan's geobuckets or heap based algorithms (Monagan & Pearce). Having this, implement efficient GCD algorithm over integers, which is not a heuristic, e.g. Zippel's SPMOD, Musser's EZ-GCD, Wang's EEZ-GCD. Help with implementing Wang's EEZ factorization algorithm or implement your favorite method, e.g. Gao's partial differential equations approach. You can go further and extend all this to polynomials with coefficients in algebraic domains or implement efficient multivariate factorization over finite fields.
Status
Some work on this may already be done. Take a look at
sympy/polys/factortools.py
in the SymPy source code.
Involved Software
Difficulty
Advanced
Prerequisite Knowledge
Idea
Choose a univariate polynomial representation in which elements of algebraic domains will be efficiently encoded. By algebraic domains we mean algebraic numbers and algebraic function fields. Having a good representation, implement efficient arithmetic and GCD algorithm. You should refer to work due to Monagan, Pearce, van Hoeij et. al. Having this, implement your favorite algorithm for factorization over discussed domains. This will require algorithms for computing minimal polynomials (this can be done by using LLL or Groebner bases). You can also go ahead and do all this in multivariate case.
Status
Currently SymPy features efficient univariate polynomial arithmetic, GCD and factorization over Galois fields and integers (rationals). This is, however, insufficient in solving real life problems, and has limited use for symbolic integration and simplification algorithms.
Involved Software
Difficulty
Advanced
Prerequisite Knowledge
Idea
Algorithm due to Karr is the most powerful tool in the field of symbolic summation, which you will implement in SymPy. There are strong similarities between this method and Risch algorithm for the integration problem. You will start with implementing the indefinite case and later can extend it to support definite summation (see work due to Schneider and Kauers). Possibly you will also need to work on solving difference equations.
- Some references:
- "A=B" by Marko Petkovsek, Herbert S. Wilf, Doron Zeilberger
- "Symbolic Summation with Radical Expressions" by Manuel Kauers and Carsten Schneider
- "An Implementation of Karr's Summation Algorithm in Mathematica" by Carsten Schneider
- Manuel Kauers, webpage: http://www.risc.jku.at/home/mkauers
- Carsten Schneider, webpage: http://www.risc.jku.at/people/cschneid
- "Algorithmen für mehrfache Summen", by Torsten Sprenger
Status
SymPy currently features Gosper algorithm and some heuristics for computing sums of expressions. Special preference is for summations of hypergeometric type. It would be very convenient to support more classes of expressions, like (generalized) harmonic numbers etc. There is already an complete algorithm rational expression summation.
Involved Software
Difficulty
Advanced
Prerequisite Knowledge
Idea
Build a Tensor core that can serve as a base to connect these projects and others. This core should be able to seamlessly support a broad range of applications ranging from very abstract (vector spaces, geometry, multi-linear operators) to very numerical (explicit matrices, NumPy integration, code generation). This project should include both a general Tensor Expression class and a general refactoring of the existing code-base. See Linear-Algebra-Vision. This project requires experience both in abstract linear algebra and in good code organization.
Status
SymPy has a number of disconnected projects related to Tensor/Linear algebra. These include Matrices, Sparse Matrices, Matrix Expressions, Indexed (for code generation), Geometric Algebra, Differential Geometry, Tensor Canonicalization, and various projects in Physics.
Involved Software
Difficulty
Prerequisite Knowledge
Idea
The idea is to have a proper class system for coordinate systems, with a class
like CoordinateSystem
abstracting the common architectural elements for all
types of systems. This class would have subclasses like
CartesianCoordinateSystem
, SphericalCoordinateSystem
, etc. that implement
the relevant functionality. We would probably need to modify the Vector
class
structure too, to allow for different vector behaviours in different systems -
for example, vectors in spherical systems add differently than vectors in
rectangular coordinate systems.
Status
The sympy.vector
package is a new generalized re-implementation of the
sympy.physics.vector
package and will hopefully subsume the later package
once this matures. The original roadmap for the vector
package dealt with
the ideas expressed in the following projects. Any other ideas are welcome.
sympy.vector
currently deals only with Cartesian (rectangular) coordinate
systems. The basic architecture for coordinate systems and vectors, as well as
their interaction is ready.
Involved Software
Python, Git
Difficulty
Intermediate
Prerequisite Knowledge
Idea
The idea is to build proper helper functions and class structure to support vector integration over lines, surfaces and volumes.
Status
sympy.vector supports vector derivatives, but not proper functionality for vector integration - over lines, surfaces etc. For help, Prasoon's PR with his work in GSoC 2013 can be taken as a starting point.
Involved Software
Python, Git
Difficulty
Intermediate
Prerequisite Knowledge
Idea
The goal of this project will be to add a package to SymPy which implements mathematical singularity functions along with documentation and a variety of beam bending example problems.
Singularity functions are a popular tool for solving beam bending stress and deflection problems in mechanical design. This is traditionally done by hand calculations and can be very tedious and error prone. This process could be improved greatly by a CAS implementation of the functions and some high level abstractions for constructing beam loading profiles.
The deliverable would be a unit tested and documented sub-package for SymPy singularity functions with an assortment of examples in the documentation.
Status
There is no previous work on this topic.
Involved Software
Python, Git
Difficulty
Beginner
Prerequisite Knowledge
No specific prerequisite knowledge is necessary but it would help if the student had some knowledge of how singularity functions are used to solve beam bending problems.
Idea
This project would implement operations on holonomic functions. Operations that would be implemented:
- addition
- multiplication
- power
- application of holonomic function to an algebraic one
- differentiation
- integration
- numerical evaluation for any complex value of
x
- converting any symbolic expression tree bottom up (as long as elementary
leafs can be converted and as long as the symbolic tree only uses
+
,*
,^
and composition) - conversion from a hypergeometric function to holonomic
- calculate formal power series, and use it to convert back to hypergeometric function or a linear combination of hypergeometric functions if possible
Last two points allow to reuse the hypergeometric machinery in SymPy, like
hyperexpand
.
For more information, see Ondřej Čertík's write up: https://gist.github.com/certik/847cafaf3111730c5b3f
A particular challenge is that one must store the polynomial coefficients and
initial conditions at a point, by default x=0
. If the function has a pole at
x=0
, one must use some other point, e.g. x=1
. If there is a pole at x=1
,
one mut use x=2
and so on. How can one multiply or add two holonomic
functions where initial conditions are given at different points? One way is to
give up symbolics and numerically integrate the differential equation to obtain
numerical value at the same point x
for both expression, then one can add or
multiply them. The other option is to convert the holonomic function back to more elementary ones (if possible), and then evaluate initial conditions at another point x
symbolically.
In order to convert an expression tree, one would simply choose
such x
, so that no expression has a pole at it, that way one avoids the
issue.
The +
algorithm is well described here:
http://www.risc.jku.at/publications/download/risc_2244/DIPLFORM.pdf,
Example 1.4.2, page 20.
Differentiation is desribed pretty well by the proof of Corollary 1.4.5 (b) on page 26.
Integration is pretty trivial, one just multiplies the Ore polynomial by Dx from the right.
The +
and *
algorithms are also briefly described in
https://hal.inria.fr/inria-00070025/document, page 8, the functions
diffeq+diffeq
and diffeq*diffeq
.
Some of these algorithms are implemented in the ore_algebra package for Sage.
Mathematica has some support for holonomic functions: https://reference.wolfram.com/language/ref/DifferentialRoot.html, but it doesn't have all the features above.
One of the applications will be symbolic integration. For a given expression, convert to a holonomic function, integrate, and convert back (if possible).
Another application will be a series expansion, as one can obtain a recursive relation for the coefficients of the Taylor series. There are algorithms to find a closed formula from the recurrence. If no formula exists, the recurrence relation still allows quick calculation of the series coefficients.
Status
Nothing is implemented yet.
Involved Software
SymPy
Difficulty
Intermediate
Prerequisite Knowledge
Differential equations, hypergeometric functions
Idea
In the past, Brian Granger was the maintainer of the sympy.physics.quantum
subpackage. He has stepped down from this position. Until someone takes over
maintenance of this subpackage, we will not be able to mentor any GSoC projects
in this area. If you have questions about this, please contact Ondřej Čertík.
Status
Involved Software
Difficulty
Prerequisite Knowledge
Idea
Roy Featherstone, Abhi Jain, and others developed recursive methods of forming
the right hand side of the ordinary differential equations for complex
multibody systems that have an evaluation time of O(N) instead of O(N^3). This
project would be dedicated to implementing a symbolic O(N) method to compliment
the LagrangesMethod
and KanesMethod
classes. This would give a significant
speed boost in numerical evaluation for systems with bodies greater than 20 or
so.
Status
There is no previous work on this topic.
Involved Software
Python, Git
Difficulty
Advanced
Prerequisite Knowledge
This project requires familiarity with multibody dynamics. At the least, one should know how to form the equations of motion of complex systems with one method. The ideal candidate will have experience forming the equations of motion with the aforementioned Featherstone or Jain methods.
Idea
Currently we have basic equation of motion generation with automated Kane's and Lagrange's methods. These methods work well but can take many minutes to complete for hard problems. The algorithms that derive these equations of motion can be improved in both speed of computation and the resulting simplification of the equations of motion. This project would involve cleaning up the code base, profiling to find the slow functions, and digging into the SymPy codebase for trigonometric simpification and other relevant function calls to speed up the EoM generation. These modification will help speed up both the entire SymPy codebase and the Mechanics package.
Status
There is no previous work on this topic.
Involved Software
Python, Git
Difficulty
Beginner
Prerequisite Knowledge
There are no prequisites to this project.
Idea
Recently, a C++ implementation of the SymPy core has matured (SymEngine). Use of this library could significantly increase the speed of derivation of the equations of motion of complex multibody systems. This project would be dedicated to ensuring SymEngine worked with all operations typically used in the sympy.physics.vector and sympy.physics.mechanics packages. Work is needed to add in core data types and algorthims in SymEngine to mimic the equivalent in SymPy and work will need to be done to provide seemless wrappers for optional use in SymPy. Large benchmark multibody problems would be developed in Python to test the speed.
Status
There has been some work on this in the SymEngine project. There are some benchmarks that test matrix differentiation speed and the like. Please ask on the mailing list about the previous work.
Involved Software
C++, Python, CMake, Git
Difficulty
Intermediate
Prerequisite Knowledge
There are no prequisites to this project.
Idea
We need to create an abstract base class for equations of motion methods (LagrangesMethod, KanesMethod) so that new methods are easy to add. This project would focus on the generalization and creating at least one new method class for example NewtonEulersMethod or HamiltonsMethod. This abstract base class would support a standard interface to access the system's states, constants, exogenous inputs, mass matrix, right hand side, etc.
Status
There has been no work on this project yet.
Involved Software
Python, Git
Difficulty
Intermediate
Prerequisite Knowledge
This project requires basic understanding of dynamical systems and at least understanding of one method of generating the equations of motion for a multi-body system.
Idea
sympy.physics.mechanics
is able to solve similar problems that the now
defunct proprietary program, Autolev, can solve. To help people transition from
Autolev code to SymPy, it would be nice to have an Autolev parser that could
generate SymPy code. The results would be checked evaluating the code in the
two languages and ensuring that the numerical results are the same.
It may be worth looking into using existing parser technology, for example ANTLR may be a good option.
Status
There has been no work on this project yet.
Involved Software
Python, Git, Autolev, other
Difficulty
Beginner
Prerequisite Knowledge
None
Idea
The code generation system in SymPy needs an overhaul to make it more intuitive and easily extensible. In addition, code generation needs to support more backends, e.g. numba, python, javascript, etc. The generated code should be highly efficient in terms of execution speed for the given language and the generation should run as fast as possible.
Status
We have support for a number of backends and basic code gen classes in place. There is work on updating the system ongoing. Please ask on the mailing list.
Involved Software
Fortran, C, C++, Julia, Rust, Python, LLVM, Javascript, Octave, Matlab, etc.
Difficulty
Intermediate to Advanced
Prerequisite Knowledge
Idea
Currently SymPy has the ability to generate Python, C, and Fortran code from SymPy expressions.
It would be very interesting to go the other way. Can we parse Python, C, and Fortran code and produce SymPy expressions? This would allow SymPy to easily read in, alter, and write out computational code. This project would enable many other projects in the future. As a first step take a look at the current code generation and autowrap functionality. Ideally this project would create a general framework for parsers and then use this system to implement parsers for a few of the languages listed above. See the other parsing ideas on this page, as well as Parsing.
Status
Involved Software
Difficulty
Prerequisite Knowledge
Idea
Speed is important for SymPy. One issue is that it's difficult to tell what is too slow, and, more importantly, if a given change makes things faster or slower.
SymPy needs more benchmarks. It also needs an automated system to run them (similar to PyPy, you should look at what they are using). That way, when someone adds some code that slows things down in an unexpected way, we will know about it.
Status
We have a setup for benchmarking but it has very few benchamrks.
https://github.com/sympy/sympy_benchmarks
Involved Software
Difficulty
Prerequisite Knowledge
Idea
A very approximate difficulty guesstimate is given.
- medium-hard: Manipulate parameters in graphs (needs some kind of GUI (matplotlib provides widgets)) (IPython's notebook?)
- medium: Animations (in matplotlib and IPython's notebook)
- easy-medium: Write/fix/extend/port backends: matplotlib, Google Chart API link, pyglet, asciart, d3.js
- easy: The old pyglet module does not work with the new module. Simplify the old module and write a backend for it.
- medium-hard: Write an openGL backend for matplotlib (that should be discussed with the matplotlib team) (you may start with our pyglet module)
- hard: Implement an intelligent routine that decides on the sampling rate so that sharp edges are better plotted (it is done for 2D however it would be nice to have it for 3D). An "asymptote detector" would be nice.
- easy /medium: Implement a intelligent routine that automatically determines the regions of interest for plotting.
- easy: Plot:
- objects from the geometry module
- 2D and 3D linear operators (the effect of a matrix on a plane/3D space)
- the effect of complex maps
- vector fields
- contours
- easy / medium: Implement a backend for Mayavi for 3D plotting.
- Fix related things/bugs in SymPy
- Implement high level features, so that it works akin to Mathematica (http://reference.wolfram.com/mathematica/ref/Plot.html)
- Improve textplot so that it can support all kinds of plots using ASCII/Unicode characters right in the terminal (with no dependencies).
Status
Involved Software
HTML, Javascript, CSS, Python
Difficulty
Prerequisite Knowledge
Idea:
WolframAlpha recently released a big update. You can now pay them and get a bunch of features. They also do things like save your search history.
Right now, our competition to WolframAlpha is SymPy Live (http://live.sympy.org/), but this works a little differently. SymPy Live is an exact duplicate of the console version of SymPy, running on the App Engine, but WolframAlpha tries to be smart about what the user wants. A while back, Ondřej whipped up a thing called SymPy Gamma (http://sympygamma.com/), which is a little closer to WolframAlpha.
The GSoC project would be to improve one or both of these projects. SymPy Gamma could be improved a lot, by making it more intelligent about what output it produces for different inputs, making it parse expressions that aren't given in exact SymPy syntax (e.g. natural language queries like Wolfram|Alpha allows), making it produce plots, perhaps replacing the notebook with an IPython notebook. SymPy Live could use a lot of the same features. Furthermore, SymPy Live has bugs with pickling, which could be fixed or eliminated by converting Live to use dill instead of pickle and/or by improving the pickling support in SymPy itself.
Many of these things should be implemented in SymPy and simply called from the web applications, for example, improved parsing for SymPy Gamma. Look at Mathics (http://www.mathics.org/) for inspiration.
Status
Involved Software
HTML, Javascript, CSS, Python
Difficulty
Prerequisite Knowledge
SymEngine is a standalone fast C++ symbolic manipulation library. Optional thin Python wrappers allow easy usage from Python and integration with SymPy.
Please contact the SymEngine list (or Ondřej Čertík) for questions about the SymEngine related topics. You can also ask on SymEngine's gitter: https://gitter.im/symengine/symengine and propose something that is not listed below.
Idea
Integrals are necessary symbolic manipulations and as they can be heavy, it is good to have a dedicated integral module in SymEngine. SymPy has a very good one. The student will have to study and implement heuristics for symbolic integration. There are good literature/books available. Limits are necessary too. Student will be expected to bank on the upcoming series expansion module and implement limits of functions. Adding all this will result in a complete calculus module.
Status
Integrals, limits are not currently implemented in SymEngine.
Involved Software
C++, Cmake, Git
Difficulty
Intermediate
Prerequisite Knowledge
Idea:
Assumptions are used in Computer Algebra Systems for queries and automatic simplification. SymPy has a new assumptions module. Port this module to C++ so that assumptions can be used within SymEngine. Fast SAT solvers like pycosat can be used in the implementation.
Status
Assumptions are not currently implemented in SymEngine.
Involved Software
C++, CMake, Git
Difficulty
Intermediate
Prerequisite Knowledge
Idea
Implement all important differentiable symbolic functions from SymPy and use differentiation to provide expansions for them, and for multivariate symbolic expressions.
Status
Series expansion, as implemented in SymEngine, lack several features like full multivariate expansion through differentiation, and the whole function zoo available in SymPy.
Involved Software
C++, CMake, Git
Difficulty
Intermediate
Prerequisite Knowledge
Intermediate
Idea
The polynomials should support more operations and allow seamless conversion to
and from SymEngine's symbolic expression. The sparse polys in SymPy use a tuple
of ints (5, 2, 3)
to represent the monomial x^5 y^2 z^3
. Then you have a
dictionary (hashtable) where you simply store the coefficients, so
3x^5y^2z^3+x
becomes {(5, 2, 3): 3, (1, 0, 0):1}
and that's your sparse
representation. The exponents however can be packed into one integer, e.g. if
each requires 8 bits, then you need total of 24 bits and you can use up to
64bit integers (or perhaps 128bit using the __int128
type in C++). So you
pack them into one integer, that's called Kronecker substitution, and then you
use just that integer as the key in the hashtable, so everything becomes much
faster. Also, multiplying two monomials then just becomes adding the ints of
exponents, etc. Of course, if the exponents are too large to be packed, then
the code needs to notice this and raise an exception, the user then needs to
use the tuple representation (std::vector in C++, though std::array is
faster, as std::vector is allocating on heap, so Piranha implements its own
fast small vector that uses static allocation). The integer arithmetic, the
coefficients of the monomials, must be very fast. SymPy uses either Python ints
(slow) or gmpy (fast). In C++, we also use GMP, but even faster is to use
machine integers for small integers and then switch to GMP for large integers.
This trick can and should be used for all SymEngine integers, it should speed
things up considerably. The hashtable should be tailored for this purpose, so
Piranha stores the values directly in
the array (if there is only one value in a bucket), only if there is more
values in a bucket, it uses a linked list I think. Also, there is a trick to
use a 1:1 hash function, Piranha uses that. finally, we also need polynomials
with rational coefficients and probably rational exponents as well, etc.
Status
For now we use Piranha (LGPL) and Flint (GPL) libraries to handle polynomial arithmetics. Piranha works very well in general, so it's not as high priority to have our own (BSD licensed) implementation.
Involved Software
C++, CMake, Git
Difficulty
Intermediate
Prerequisite Knowledge
Idea
A lot of work is actively going on in SymPy as to the design of solvers. In this project, the student will be expected to implement expression solvers for SymEngine along the lines of those in SymPy. At least implement most of the robust solvers that are done right in SymPy.
Status
Solvers are not present currently in SymEngine
Involved Software
C++, CMake, Git
Difficulty
Intermediate
Prerequisite Knowledge
Idea
Make SymEngine
work with Sage
. See this
branch for initial work. This
project is not particularly difficult, but one needs to carefully check all
corner cases and make sure that SymEngine
works out of the box in both SymPy
and Sage (for example making sure that we can use the plotting facilities in
SymPy with SymEngine). As part of it would be to create an SPKG package for
Sage and get it into the optional packages section of Sage. Part of the project
would also be improving the documentation of the Python wrappers in form of
docstrings. The general idea is that after this project is implemented, we can
use SymPy for all the functionality (like plots, conversions etc.), and
SymEngine only implements very fast symbolic manipulation.
Status
Currently the basic Python wrappers provide seamless integration with SymPy.
Involved Software
C++, CMake, Git
Difficulty
Beginner
Prerequisite Knowledge
Idea
The motivation for SymEngine is to develop the Computer Algebra System once in C++ and then use it from other languages rather than doing the same thing all over again for each language that it is required in. Not all the SymEngine classes present are wrapped in Ruby, student can dive right in and look as to what else needs to be done. Few things that the project involves are:
- Extending the C interface of SymEngine library.
- Wrapping up the C interface for Ruby using Ruby C API, including error handling.
- Designing the Ruby interface.
- Integrating IRuby with symengine gem for better printing and preparing new IRuby notebooks.
- Integrating the gem with existing gems like
gmp
,mpfr
andmpc
. - Making the installation of symengine gem easier.
SciRuby organisation may also accept the student working in this project.
Status
The ruby wrappers, symengine.rb, are a result of Abinash's GSoC. Have a look at the blog post. Improve them by wrapping the rest of SymEngine.
Involved Software
Ruby, C++, CMake, Git
Difficulty
Beginner
Prerequisite Knowledge
The Beginner Contributor Guide - Ruby Extensions and the resources mentioned there contain everything the student needs to know to get started.
Idea
Same as for Ruby wrappers. Respective Julia sub-organisations may also accept the student working in this project.
Status
The Julia wrappers, SymEngine.jl, currently support only the very basic SymEngine classes
Involved Software
Julia, C++, CMake, Git
Difficulty
Beginner
Prerequisite Knowledge
- Linear algebra
- Rewrite the Matrices module to be more like the polys module, i.e., allow Matrix to use the polys ground types, and separate the internal data (sparse vs. dense) from the Matrix interface. The goal is to make the matrices in SymPy much faster and more modular than they are now.
- Refactor the matrices module to have a cleaner orthogonal organization
- improve the integration algorithm
- integration of functions on domains of maximum extent, etc.
- Interesting idea: "SYMBOLIC COMPUTATION OF INTEGRALS BY RECURRENCE" by MICHAEL P. BARNETT
- definite integration & integration on complex plane using residues. Note that we already have a strong algorithm that uses Meijer G-Functions implemented. So we need to first determine if such an algorithm would be worthwhile, or if it would be better to extend the current algorithm. Note that there are many integrals that are easy to compute using residues that cannot be computed by the current engine. Other possibilities: the ability to closed path integrals in the complex plane, which is not possible with the Meijer G algorithm.
- Groebner bases and their applications in geometry, simplification and
integration
- improve Buchberger's algorithm and implement Faugere F4 (compare their speed) Note: This has already been implemented by a previous GSoC student. Please check with us to see the current state of Groebner bases in SymPy
- improve polynomial algorithms (gcd, factorization) by allowing coefficients in algebraic extensions of the ground domain
- implement efficient multivariate polynomials (arithmetic, gcd,
factorization)
- Implement a sparse representation for polynomials (see the dummy files in sympy/polys/ starting with "sparse" in the SymPy source code for a start to this project).
- Figure out which representations to use where (sparse vs. dense).
- implement efficient arithmetic (e.g. using geobuckets (Yan) or heaps (Monagan & Pearce))
- improve SymPy's pattern matching abilities (efficiency and generality)
- implement similarity measure between expression trees
- expression complexity measures (e.g. Kolmogorov's complexity)
- implement expressions signatures and heuristic equivalence testing
- implement semantic matching (e.g. expression: cos(x), pattern: sin(a*x) +
b)
- e.g by using power series for this purpose (improve series speed)
- Expand the capabilities of Wild() and match() to support regular expression-like quantifiers.
- improve simplification and term rewriting algorithms
- add (improve) verbatim and semi-verbatim modes (more control on expression rewriting)
- implement more expression rewrite functions (to an exact form that user specifies). This may involve rewriting the rewrite framework to be more expressive. For example, should cos(x).rewrite(sin) return sqrt(1 - sin(x)**2) or sin(pi/2 - x)?
- maybe put transformation rules in an external database (e.g. prolog), what about speed?
- improve context (e.g. input) depended simplification steps in different
algorithms
- e.g. the integrator needs different sets of rules to return "better" output for different input
- but there are more: recurrences, summations, solvers, polynomials with arbitrary coefficients
- what about information carried by expressions?
- what is simpler: chebyshevt(1, x) or x ?
- what is simpler: chebyshevt(1000, x) or (...) ?
- improve trigonometric simplification. See for example the paper by fu et. al.
- implement symbolic (formal) logic and set theory
- implement predicate (e.g. first-order), modal, temporal, description logic
- implement multivalued logic; fuzzy and uncertain logic and variables
- implement rewriting, minimization, normalization (e.g. Skolem) of expressions
- implement set theory, cardinal numbers, relations etc.
- This task is heavily tied to the assumptions system.
- implement symbolic global optimization (value, argument) with/without constraints, use assumptions
- continue work on objects with indices (tensors)
- generalized functions - Dirac delta, P(1/x), etc... Convolution, Fourier
and Laplace transforms
- Fourier and Laplace transforms are implemented but we can not do many cases involving distributions Is this enough alone for a project though? -Aaron
- vector calculus, differential fields, maybe Lie algebras & groups
- parametric integrals asymptotic expansion (integral series)
- Integral equations. See for example the work started at http://code.google.com/p/sympy/issues/detail?id=2344. This could be part of a project on ODEs, for example.
- partial differential equations. Currently, SymPy can't solve any PDEs, though a few tools related to separation of variables are implemented. The PDE module should be structured similarly to the ODE module (see the source code of sympy/solvers/ode.py).
- improve SymPy's Common Subexpression Elimination (CSE) abilities.
- Poly factorization http://cseweb.ucsd.edu/~kastner/papers/tcad06-poly_factorization_cse.pdf
- Singular analysis and test continuous.
- find singularities of the function and classify them.
- test the function whether it is continuous at some point or not. And in the interval. Note: Please discuss this idea with us if you are interested, as as it currently presented, it is somewhat vague.
- Control theory. systems for Maple and Mathematica might provide insight here. http://www.mcs.anl.gov/~wozniak/papers/wozniak_mmath.pdf might be useful.
- Diophantine Equations: SymPy does have substantial support for solving these, never the less there is more work possible to improve the solver.
There are 2 ideas in the Theano GSoC ideas list that are of interest to SymPy user's. 1) Lower Theano overhead (significant for scalars) and 2) generate dynamic libraries. They are interesting to SymPy user's via the SymPy -> Theano bridge that allow to compile a SymPy graph for faster execution. If you are interested in them, contact them.
The classical mechanics package is tightly coupled with the PyDy project which
enhances the mechanics package with numeric and visualization capabilities. All
of the ideas for sympy.physics.vector
and sympy.physics.mechanics
are
listed on the PyDy wiki in addition to other projects that are not in the SymPy
code base but related. See https://github.com/pydy/pydy/wiki/GSoC-2016-Ideas.
Every year, people ask about implementing various things that we have already decided do not belong in SymPy. Among these are:
- Graph theory. The NetworkX package already does a great job of graph theory in Python. If you are interested in working in graph theory, you should contact them.
- Numerical solvers. SymPy is a symbolic library, so the code should focus on solving things symbolically. There are already many libraries for solving problems numerically (NumPy, SciPy, ...).