Hi,
Introduction: I am currently a third year computer science undergraduate from Bits-Pilani , and I would like to participate in sympy development in GSCOC 2012.
Experience: I have been programming in python since 2-3 years and I had a very good experience with it, I have been using numpy, scipy, wxpython since many days, and sympy since past 3 months and I have been working with the source code of sympy since the past 15 days .I have been using sympy for a project on “advanced numerical methods” since past three months.
Project Idea:
The following are the project ideas that I would like to work on,
1. Implementing quantifiers:
i.Universal quantification
ii.Existential quantification
iii. Multiple ordered quantifiers
2. Binary Predicates
3. Linear regression
any suggestions or improvements are greatly welcomed
Regards
Sachin Irukula
Hi everyone,
Any suggestions
--To view this discussion on the web visit https://groups.google.com/d/msg/sympy/-/M0spM2cJ3sYJ.
You received this message because you are subscribed to the Google Groups "sympy" group.
To post to this group, send email to sy...@googlegroups.com.
To unsubscribe from this group, send email to sympy+un...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/sympy?hl=en.
Yes, please do. I'm not clear what exactly you mean by symbolic regression.
Aaron Meurer
>
>
> Regards
> Sachin Irukula
>
> --
> You received this message because you are subscribed to the Google Groups
> "sympy" group.
> To view this discussion on the web visit
> https://groups.google.com/d/msg/sympy/-/cN4YxFsYGyUJ.
That's interesting. However, sympy doesn't deal with data, so I think
that this should be an external project depending on sympy and pandas
(http://pandas.pydata.org/ ) and/or scikit-learn
(http://scikit-learn.org/stable/ ).
I don't know. It doesn't seem farther from sympy's core goals than the
Live/Gamma or Android projects. The difficulty is in knowing the
dependency requirements up-front and finding how it can fit with
existing projects. Another issue is to find a suitable mentor.
Implementation of universal quantifiers
Universal Quantification: Function: for_all(expr,variables,condition)
· ∀ xexpr which says that expr holds for all values of x for this the function looks like for_all(expr,var) where var=Tuple(x)
this returns an assertion based on the expr and the values of x.
· ∀{x1,x2,...}expr which says that expr holds for all values of x for this the function looks like for_all(expr,var) where var=(x1,x2,x3….) this returns an assertion based on the expr and the values of x1,x2,x3...
· ∀x,condexpr which says that expr holds for all values of x which satisfy the condition for this the function looks like for_all(expr,var) where var=(x1,x2,x3….) this returns an assertion based on the expr and the values of x1,x2,x3...
By the way, it's just a semantics things, but expr should really be
called cond, since it needs to be a boolean condition, not just some
generic expression.
Aaron Meurer
> --
> You received this message because you are subscribed to the Google Groups
> "sympy" group.
> To view this discussion on the web visit
> https://groups.google.com/d/msg/sympy/-/X7lB_Ir0NLcJ.
If you have two parameters with the same name, it's a sign that there's
a problem with your design. Either the parameters should be combined or
their meaning should be clarified.
Regards
Sachin Irukula