... и почему ?
Предполагая, что , являются независимыми случайными величинами со средним значением и дисперсией соответственно. Моя базовая книга статистики говорит мне, что дистрибутив имеет следующие свойства:
Now let's say , are t-distributions with , degrees of freedom. What is the distribution of ?
This question has been edited: The original question was "What are the degrees of freedom of the difference of two t-distributions ?". mpiktas has already pointed out that this makes no sense since is not t-distributed, no matter how approximately normal (i.e. high df) may be.
Ответы:
The sum of two independent t-distributed random variables is not t-distributed. Hence you cannot talk about degrees of freedom of this distribution, since the resulting distribution does not have any degrees of freedom in a sense that t-distribution has.
источник
Agree the answers above, the difference of two independent t-distributed random variables are not t distributed. But I want to add some ways of calculating this.
The easiest way of calculating this is using a Monte Carlo method. In R, for example, you random sample 100,000 numbers from the first t distribution, then you random sample another 100,000 numbers from the second t distribution. You let the first set of 100,000 numbers minus the second set of 100,000 numbers. The obtained 100,000 new numbers are the random samples from the distribution of the difference between the two distribution. You can calculate the mean and variance by simply using
mean()
andvar()
.This is called Behrens–Fisher distribution. You can refer to the Wiki page: https://en.wikipedia.org/wiki/Behrens%E2%80%93Fisher_distribution. The CI given by this distribution is called "fiducial interval", this is not a CI.
Numerical integration might work. This is continued as the bullet point 2. You might refer to the Section 2.5.2 in Bayesian Inference in Statistical Analysis by Box, George E. P., Tiao, George C. It has the detailed steps of integration, and how this is approximated to be a Behrens–Fisher distribution.
источник