Tell me more ×
Cross Validated is a question and answer site for statisticians, data analysts, data miners and data visualization experts. It's 100% free, no registration required.

I am a newbie to statistics and found this.

In statistics, θ, the lowercase Greek letter 'theta', is the usual name for a (vector of) parameter(s) of some general probability distribution. A common problem is to find the value(s) of theta. Notice that there isn't any meaning in naming a parameter this way. We might as well call it anything else. In fact, a lot of distributions have parameters which are usually given other names. For example, it is common use to name the the mean and deviation of the normal distribution μ (read: 'mu') and deviation σ ('sigma'), respectively.

But I still don't know what that means in plain English?

share|improve this question
4  
$\theta$ is just a mathematical symbol and means different things in different contexts. Sometimes $\theta$ is used to refer to a parameter to be estimated but there is no real answer to the question "What is $\theta$?". That's like asking "What is the letter A?". Your link even hints at this when it says "Notice that there isn't any meaning in naming a parameter this way. We might as well call it anything else.". – Macro Aug 22 '12 at 22:39
Its just a way to name a statistical parameter(which defines the distribution of the quantity associated with this 'parameter') with a special letter (other than English letters). – Stat-R Aug 22 '12 at 23:01
1  
Most of us would take this quotation to be extremely plain English, indeed, but to make any progress we have to accept that the question is not about how to read English. What, then, could it be about? I submit that it is asking us to explain the technical terms in the quotation: the ones with which we are so familiar that we no longer see how strange they might be to the statistically uninitiated. This calls for us to address the meanings of distribution and parameters (of a distribution that is; not of a fitted curve or other deterministic model). – whuber Aug 23 '12 at 13:01

2 Answers

up vote 13 down vote accepted

It is not a convention, but quite often $\theta$ stands for the set of parameters of a distribution.

That was it for plain English, let's show examples instead.

Example 1. You want to study the throw of an old fashioned thumbtack (the ones with a big circular bottom). You assume that the probability that it falls point down is an unknown value that you call $\theta$. You could call a random variable $X$ and say that $X=1$ when the thumbtack falls point down and $X=0$ when it falls point up. You would write the model

$$P(X = 1) = \theta \\ P(X = 0) = 1-\theta,$$

and you would be interested in estimating $\theta$ (here, the proability that the thumbtack falls point down).

Example 2. You want to study the disintegration of a radioactive atom. Based on the literature, you know that the amount of radioactivity decreases exponentially, so you decide to model the time to disintegration with an exponential distribution. If $t$ is the time to disintegration, the model is

$$f(t) = \theta e^{-\theta t}.$$

Here $f(t)$ is a probability density, which means that the probability that the atom disintegrates in the time interval $(t, t+dt)$ is $f(t)dt$. Again, you will be interested in estimating $\theta$ (here, the disintegration rate).

Example 3. You want to study the precision of a weighing instrument. Based on the literature, you know that the measurement are Gaussian so you decide to model the weighing of a standard 1 kg object as

$$f(x) = \frac{1}{\sigma \sqrt{2\pi}} \exp \left\{ -\left( \frac{x-\mu}{2\sigma} \right)^2\right\}.$$

Here $x$ is the measure given by the scale, $f(x)$ is the density of probability, and the parameters are $\mu$ and $\sigma$, so $\theta = (\mu, \sigma)$. The paramter $\mu$ is the target weight (the scale is biased if $\mu \neq 1$), and $\sigma$ is the standard deviation of the measure every time you weigh the object. Again, you will be interested in estimating $\theta$ (here, the bias and the imprecision of the scale).

share|improve this answer
+1 FWIW, I recently posted a worked example along the same lines at stats.stackexchange.com/a/34894. Although it would be misleading to construe it as "plain English"--it does not shy from using technical terms--I made an effort to explain as clearly and briefly as possible what is going on, what assumptions are made, and how one works with a parameterized family of distributions to produce an estimate based on data. For some, this might be an informative adjunct to your answer here. – whuber Aug 23 '12 at 22:20

What $\theta$ refers to depends on what model you are working with. For example, in ordinary least squares regression, you model a dependent variable (usually called Y) as a linear combination of one or more independent variables (usually called X), getting something like

$Y_i = b_0 + b_1x_1 + b_2x_2 + ... + b_px_p$

where p is the number of independent variables. The parameters to be estimated here are the $\beta s$ and $\theta$ is a name for all the $\beta s$. But $\theta$ is more general can apply to any parameters we want to estimate.

share|improve this answer
1  
Peter, although you didn't say this exactly, I'm afraid this answer may give a novice the incorrect impression that the symbol $\theta$ will always refer to a parameter vector and, conversely, that this is the only way to refer to a parameter value. As my comment above indicates, I think the answer is nothing more than "$\theta$ is a mathematical symbol", making it not really a statistical question. – Macro Aug 22 '12 at 22:42
@Macro I think, in this context, it's clear that this is the meaning of $\theta$ that Kamilski wanted. Sure, any symbol can refer to anything. But in this paragraph, Macro means you, and not a course in Economics or a part of SAS or whatnot. – Peter Flom Aug 22 '12 at 22:46
1  
ok well I don't think that analogy is really apt but I will take it as an attempt at hyperbole. In any case, I'm really referring to something very basic which is that mathematical novices often mistake notation as something inherently meaningful and as something other than what it is - simply a label. My point was that this answer (I think unintentionally) does nothing to dispel that idea. As you know, $\theta$ can refer to other things a statistician may encounter. For example, angles are often denoted by $\theta$. – Macro Aug 22 '12 at 23:03
3  
This explanation, although it is clear and technically correct, does not explicitly involve any distributions whatsoever, and thus appears not to be relevant to the quotation in the question. – whuber Aug 23 '12 at 13:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.