If I have an expression with Mathematica's built-in functions like
Probability[x > 0, x \[Distributed] UniformDistribution[{-1, 1}]]
its algebraic representation would be something like
Integrate[PDF[UniformDistribution[{-1, 1}], x], {x, 0, \[Infinity]}]
If I understand correctly, Mathematica's engine does the transformation from first to second representation and then evaluates it.
Is there a function that will take as input first expression and give me the second?
Probability[x > 0, x \[Distributed] UniformDistribution[{-1, 1}]] // Trace– Bob Hanlon Jan 15 '16 at 14:04UniformDistribution. – Michael E2 Jan 15 '16 at 14:18