-
Notifications
You must be signed in to change notification settings - Fork 0
GSoC 2011 Application Matthew Rocklin: Random Variables
##Basics Name: Matthew Rocklin
E-Mail: MRocklin cs uchicago edu
Occupation: PhD Student at University of Chicago
Webpage: http://people.cs.uchicago.edu/~mrocklin
Statistics is more important than we thought. Scientific and social research is scrambling add statistics to past experiments and theories. Computational systems are also struggling to keep up - previously neglected statistical packages are dusted off and found to be lacking. Now is a time for development.
Current solutions are usually numeric, data-centric (R, SAS), or behind commercial/closed source barriers (Maple, Mathematica). Statistical researchers however often think and work symbollically (Beta = Lx + noise) and do not have a good language to encode and assist in their work.
A substantial part of statistical modeling can be reconciled with traditional modeling if random variables can be freely interchanged with traditional ones. I propose to build and integrate a Random Variable type and integrate it into SymPy. I hope that by leveraging the existing SymPy functionality on random variables we can build a well developed and powerful statistical modeling language.
Random variables are basic building blocks of statistics and probability. They are useful in basic probability theory as well as applications where measurement error or uncertainty occurs. This uncertainty can be mathematically described as a probability distribution over a space of possible outcomes. Often we are concerned with functions on these outcomes, such as money won/lost by getting a number which is black on a roulette wheel or the expected damage done by an earthquake with value of 9 or greater on the Richter scale. These functions are random variables. Like traditional variables they can interact with functions (like sin, cos) and each other (X+Y).
The rules for these interactions however can be quite different. They are taught briefly in school and, while they are clear to express mathematically, they involve challenging algebraic manipulations which are tedious for students. Random variables are usually treated with entirely abstract or entirely numerical methods. Given our strength in performing tedious algebraic manipulations this seems like a textbook use case for computer algebra systems.
Random Variables have been implemented in the popular commercial CAS languages, Maple and Mathematica as well as in specialized though less popular statistical languages such as APPL. None of these systems are freely accessible to the general public.
This problem has been approached in the open source Python community from the numerical side. Motivation for this project was taken from the Uncertainties Package which enhances numeric Python floats with single parameter uncertainty information (standard deviation). This is handy in a laboratory setting where measurements are often described by a simple x = 2 +- .3. A simple example taken from their website is printed below
>>> x = ufloat((1, 0.1)) # x = 1+/-0.1
>>> print 2*x
2.0+/-0.2
>>> sin(2*x)
0.90929742682568171+/-0.083229367309428481
I argue above for the importance of statistical code and I express hopes that we can build a "powerful statistical modeling language." This hope is far beyond the scope of a single summer. In this section I state concrete goals.
Schedule:
- Identify those in the SymPy community who are interested or knowledgeable in this subject
- Familiarize myself with the existing code structure of SymPy.
- Decide on a clear and general definition of Random Variables which fits well into this structure.
- Collect algorithms for future coding.
- Collect uses cases and requirements from statisticians and educators
At this point I hope to have a working and self consistent implementation of Random Variables. I do not expect it to be fully integrated with all parts of SymPy nor fully tested. Basic support should include:
- Discrete and Continuous RVs
- Binary Operations like +, *, inv, Relationals (no longer bools!)
- Standard Unary Functions like (Sin, Exp, Log) and their compositions
- RV's defined on multi-dimensional probability spaces
- Ensure all common distributions accounted for (Normal, Uniform, Discrete, Correlated Multivar, Pareto, T, ..., see scipy.stats)
Some basic functionality follows
>>> d1,d2,d3 = Die(6), Die(6), Die(6) # Three six-sided dice
>>> dice = d1+d2+d3; print dice.pdf()
{2: 1/36, 3: 1/18, ... }
>>> even = dice % 2 == 0;
>>> (dice|(d1==3 and d2==3)).pdf() # pdf of dice given d1 and d2 both came up 3
{7: 1/6, 8: 1/6, 9: 1/6, ... }
>>> (even | dice >=17).pdf() # pdf of evenness given dice sum to 17 or greater
{True: 1/4, False: 3/4}
...
>>> pspace1 = ProbabilitySpace(Normal(0,1)) # Probability space over the reals
>>> pspace2 = ProbabilitySpace(Normal(0,1)) # A different space of events
>>> X = RandomVariable(pspace1);
>>> print log(X).pdf()
2**(1/2)*Abs((1 - x**2)**(-1/2))*exp(-asin(x)**2/2)/(2*pi**(1/2))
>>> Y = RandomVariable(pspace2); Z = RandomVariable(pspace1);
>>> assert X-Y == Normal(0,sqrt(2)) # independent
>>> assert X-Z == Zero # dependent (same pspace)
>>> W = X*Y #two dimensional normal distribution
Integrate Random Variables gracefully into other parts of SymPy. The goal is to leverage existing SymPy functionality to make Random Variables powerful. This is likely to be the most challenging part of the project. This work will likely continue past the Summer.
- Linear algebra
- Physics / Quantum
- Numerical Evaluation / Code generation
- Logic, Hypothesis testing
>>> sigma = Matrix([RandomVariable(Normal(0,eps)) for i in range(n)]) # Column Vector of i.i.d. noise
>>> X,y = CollectMeasurementData() # Linear Regression Model y = X*beta + sigma. X,y, known (not random)
>>> Beta = inv(X.T*X) * X.T*(y-sigma) # Solve for beta (model parameters)
>>> covariance(Beta)
...
Starting in August I'll have a second time commitment and my hours will decrease a bit (I expect to 30 hours/week). I'm free all of September and am happy to make up lost time then.
I am a mostly self-taught coder. I suspect that the theoretical and programming aspects of this project will be well within my abilities. Where I'm hoping to grow is in coding practices - i.e. testing, style, and general responsibility. My goal for this project is to build a body of code to very high standards - this will be new for me however and I'll probably need some help.
For personal information see my webpage. For a list of publications and work experience see my CV. For other information please feel free to contact me directly.
Current SymPy Statistics Functionality
Maple Random Variables Help page
Mathematica Continuous Probability Distributions Help page
Algorithm to Handle Multiplication of Continuous Random Variables
APPL, A Probability Programming Language
Please add any fun use cases you can think of
- Educational examples with dice. Make three dice, plot the PDF. What is the probability of an even roll?
- Uncertainty Quantification in simple systems. Provides analytical base to test numerical methods.
- For simple systems an analytical description of how uncertainty evolves may allow for clear statement about how to minimize that uncertainty.
- Clear description of experiments, with statistical variation.
- Quantum Mechanical states can be thought of as random variables with complex wave functions rather than distributions. Perhaps there is some crossover.