Solved – Standardized Student’s-t distribution

likelihoodt-distribution

We know that density for a student-t distribution is given as

$$\frac{\Gamma(\frac{\nu + 1}{2})}{\Gamma(\frac{\nu}{2})} \left(\frac{\lambda}{\pi\nu}\right)^{\frac{1}{2}} \left[1+\frac{\lambda(x-\mu)^2}{\nu}\right]^{-\frac{\nu+1}{2}}$$

with
$\text{E}(X) = \mu$,
$\text{var}(X) = \frac{1}{\lambda}\frac{\nu}{\nu-2}$

where the three parameters are shape factor $\nu$, location $\mu$ and dispersion $\lambda$.

Now if I standardize X to Z as $\frac{X-\text{E}(X)}{\text{Std}(X)}$, what is the distribution of $Z$. If I standardize my input data to $Z$ as above, what is the density function for $f_Z(z)$?

I came across this question in Stephen Taylor's Asset Dynamics book. I am a bit confused after reading this question. As I understand, $\frac{X-\mu}{\sigma}$ where $\sigma=1/\sqrt(\lambda)$ will give the standardized t distribution with center 0 and disperson 1. But not sure what $Z$ above will look like.

Best Answer

Assume $\nu \gt 2$ so that this distribution actually has a mean and standard deviation (otherwise you cannot standardize it). By direct calculation, its mean equals $\mu$ and its variance equals $\nu / (\lambda (\nu-2))$. Standardizing it, by construction, creates a distribution of the same shape but zero mean and unit standard deviation. Thus, for the standardized distribution, the formula is the same but we must have $\mu = 0$ and $\nu / (\lambda (\nu-2)) = 1$; that is, $\lambda = \nu/(\nu-2)$. Whence, plugging these values into the formula,

$$f_Z(z) = \frac{\Gamma(\frac{\nu + 1}{2})}{\Gamma(\frac{\nu}{2})} \frac{1}{\sqrt{\pi(\nu-2)}} \left[1+\frac{z^2}{\nu-2}\right]^{-\frac{\nu+1}{2}}.$$

This assumes $\mathbb{E}[X] = \mu$ and $\mathbb{E}[(X-\mu)^2]$ are known in advance, not estimated from data.