MathGroup Archive 2013

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: Moment's of student's t distribution

  • To: mathgroup at smc.vnet.net
  • Subject: [mg130275] Re: Moment's of student's t distribution
  • From: Ray Koopman <koopman at sfu.ca>
  • Date: Sun, 31 Mar 2013 03:13:10 -0400 (EDT)
  • Delivered-to: l-mathgroup@mail-archive0.wolfram.com
  • Delivered-to: l-mathgroup@wolfram.com
  • Delivered-to: mathgroup-newout@smc.vnet.net
  • Delivered-to: mathgroup-newsend@smc.vnet.net
  • References: <kj66eg$ogf$1@smc.vnet.net>

On Mar 30, 1:06 am, paul <paulvonhip... at yahoo.com> wrote:
> I'm trying to get a general formula for the moments of a non-standardized t distribution. When I ask for the moments in general --
>
> Moment[StudentTDistribution[\[Mu], \[Sigma], \[Nu]], k]
>
> -- Mathematica merely echoes the input. But when I plug in any integer for k, Mathematica gives me a simple answer quickly. How can I get Mathematica to tell me the general formula?

Are you looking for something like

mot[m_, s_, n_Integer, r_Integer] /; 0 < r < n := Sum[ Binomial[r,k]
    m^(r-k) s^k n^(k/2) (k-1)!! (n-k-2)!! / (n-2)!!, {k,0,r,2}]



  • Prev by Date: Side-by-side cells ("bilateral cells"): text and graphics side-by-side
  • Next by Date: Re: OpenCL yes, Cuda no
  • Previous by thread: Re: Moment's of student's t distribution
  • Next by thread: Is there ever a case where two consecutive commas in not an error?