Particularly when applied to calculating the (population) mean of a (continuous univariate) random variable, as in
dist2alt =
TransformedDistribution[Sqrt[4]*Sqrt[x],
x \[Distributed] NoncentralFRatioDistribution[5, 4, 0, 7.2]]
N[Mean[dist2alt]]
(* 1.30371 *)
, what are the (numerical) methods used internally by the sentence N?
Does Mathematica provide any details about the concrete (numerical) methods used in a concrete execution of N, the number of iterations needed, etc.?
NIntegrateusing in a given computation? (the documentation says that the default option isAutomatic, which is like "choose the best method for this concrete case")The point is that I am able to give numerical results to some computations of means and variances using
– Vicent Sep 08 '17 at 12:18N, but I should be able to give a detailed way to reproduce them.Now I think I am going to focus on finding an approximation that is accurate enough and easy to implement by other researchers. What do you think?
– Vicent Sep 08 '17 at 14:23Automaticdoes. You simply need to set a method you understand explicitly (and not let Mathematica choose a method automatically). SeeNIntegratedoc page and here: http://reference.wolfram.com/language/tutorial/NIntegrateOverview.html – Szabolcs Sep 08 '17 at 14:25