location–scale family

{{Short description|Family of probability distributions}}

In probability theory, especially in mathematical statistics, a location–scale family is a family of probability distributions parametrized by a location parameter and a non-negative scale parameter. For any random variable X whose probability distribution function belongs to such a family, the distribution function of Y \stackrel{d}{=} a + b Xalso belongs to the family (where \stackrel{d}{=} means "equal in distribution"—that is, "has the same distribution as").

In other words, a class \Omega of probability distributions is a location–scale family if for all cumulative distribution functions F \in \Omega and any real numbers a \in \mathbb{R} and b > 0 , the distribution function G(x) = F(a + b x) is also a member of \Omega .

Moreover, if X and Y are two random variables whose distribution functions are members of the family, and assuming existence of the first two moments and X has zero mean and unit variance,

then Y can be written as Y \stackrel{d}{=} \mu_Y + \sigma_Y X , where \mu_Y and \sigma_Y are the mean and standard deviation of Y .

In decision theory, if all alternative distributions available to a decision-maker are in the same location–scale family, and the first two moments are finite, then a two-moment decision model can apply, and decision-making can be framed in terms of the means and the variances of the distributions.{{cite journal |last=Meyer |first=Jack |title=Two-Moment Decision Models and Expected Utility Maximization |journal=American Economic Review |volume=77 |year=1987 |issue=3 |pages=421–430 |jstor=1804104 }}{{cite journal |last=Mayshar |first=J. |title=A Note on Feldstein's Criticism of Mean-Variance Analysis |journal=Review of Economic Studies |volume=45 |issue=1 |year=1978 |pages=197–199 |jstor=2297094 }}{{cite book |last=Sinn |first=H.-W. |author-link=Hans-Werner Sinn |title=Economic Decisions under Uncertainty |edition=Second English |year=1983 |publisher=North-Holland }}

Examples

Often, location–scale families are restricted to those where all members have the same functional form. Most location–scale families are univariate, though not all. Well-known families in which the functional form of the distribution is consistent throughout the family include the following:

Converting a single distribution to a location–scale family

The following shows how to implement a location–scale family in a statistical package or programming environment where only functions for the "standard" version of a distribution are available. It is designed for R but should generalize to any language and library.

The example here is of the Student's t-distribution, which is normally provided in R only in its standard form, with a single degrees of freedom parameter df. The versions below with _ls appended show how to generalize this to a generalized Student's t-distribution with an arbitrary location parameter m and scale parameter s.

style="padding-right:10px;"|Probability density function (PDF):

|style="padding-right:10px;"| dt_ls(x, df, m, s) =

| 1/s * dt((x - m) / s, df)

style="padding-right:10px;"|Cumulative distribution function (CDF):

|style="padding-right:10px;"| pt_ls(x, df, m, s) =

| pt((x - m) / s, df)

style="padding-right:10px;"|Quantile function (inverse CDF):

|style="padding-right:10px;"| qt_ls(prob, df, m, s) =

| qt(prob, df) * s + m

style="padding-right:10px;"|Generate a random variate:

|style="padding-right:10px;"| rt_ls(df, m, s) =

| rt(df) * s + m

Note that the generalized functions do not have standard deviation s since the standard t distribution does not have standard deviation of 1.

References

{{reflist}}