Suppose that I have m samples. Size of each sample is $n_1, n_2,... n_m$.Elements in each sample are independent N($\mu_i$,$\sigma^2$), $i=\overline{1,m}$. If I want to test hypothesis $\mu_1=\mu_2= ... =\mu_m$ I could use F test - $S_2/S_1$, where $S_1$ is variance, $S_2$ is variance under hypothesis. I am struggling to test the hypothesis $\mu_a$= $c\mu_{a-1}$. I guess it is the same hypothesis as $\mu_m=c\mu_{m-1}= c^2\mu_{m-2}... =c^{m-1}\mu_1$. Can you show me how F test is applied in this case?
2026-03-28 22:53:35.1774738415
Multiple means hypothesis F test
76 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in STATISTICS
- Given is $2$ dimensional random variable $(X,Y)$ with table. Determine the correlation between $X$ and $Y$
- Statistics based on empirical distribution
- Given $U,V \sim R(0,1)$. Determine covariance between $X = UV$ and $V$
- Fisher information of sufficient statistic
- Solving Equation with Euler's Number
- derive the expectation of exponential function $e^{-\left\Vert \mathbf{x} - V\mathbf{x}+\mathbf{a}\right\Vert^2}$ or its upper bound
- Determine the marginal distributions of $(T_1, T_2)$
- KL divergence between two multivariate Bernoulli distribution
- Given random variables $(T_1,T_2)$. Show that $T_1$ and $T_2$ are independent and exponentially distributed if..
- Probability of tossing marbles,covariance
Related Questions in HYPOTHESIS-TESTING
- Neyman-Pearson precision problem
- Rejecting null based on the likelihood ratio test
- What statistical test should I use?
- Should We Use a Paired or Two-Sample Test?
- How to prove inadmissibility of a decision rule?
- Statistics Hypothesis Testing of Continuous Variables
- Experimentally proving bias
- Hypothesis testing: mean comparison
- uniformly most powerful test: binomial distribution
- Can significance check be applied and which one?
Trending Questions
- Induction on the number of equations
- How to convince a math teacher of this simple and obvious fact?
- Find $E[XY|Y+Z=1 ]$
- Refuting the Anti-Cantor Cranks
- What are imaginary numbers?
- Determine the adjoint of $\tilde Q(x)$ for $\tilde Q(x)u:=(Qu)(x)$ where $Q:U→L^2(Ω,ℝ^d$ is a Hilbert-Schmidt operator and $U$ is a Hilbert space
- Why does this innovative method of subtraction from a third grader always work?
- How do we know that the number $1$ is not equal to the number $-1$?
- What are the Implications of having VΩ as a model for a theory?
- Defining a Galois Field based on primitive element versus polynomial?
- Can't find the relationship between two columns of numbers. Please Help
- Is computer science a branch of mathematics?
- Is there a bijection of $\mathbb{R}^n$ with itself such that the forward map is connected but the inverse is not?
- Identification of a quadrilateral as a trapezoid, rectangle, or square
- Generator of inertia group in function field extension
Popular # Hahtags
second-order-logic
numerical-methods
puzzle
logic
probability
number-theory
winding-number
real-analysis
integration
calculus
complex-analysis
sequences-and-series
proof-writing
set-theory
functions
homotopy-theory
elementary-number-theory
ordinary-differential-equations
circles
derivatives
game-theory
definite-integrals
elementary-set-theory
limits
multivariable-calculus
geometry
algebraic-number-theory
proof-verification
partial-derivative
algebra-precalculus
Popular Questions
- What is the integral of 1/x?
- How many squares actually ARE in this picture? Is this a trick question with no right answer?
- Is a matrix multiplied with its transpose something special?
- What is the difference between independent and mutually exclusive events?
- Visually stunning math concepts which are easy to explain
- taylor series of $\ln(1+x)$?
- How to tell if a set of vectors spans a space?
- Calculus question taking derivative to find horizontal tangent line
- How to determine if a function is one-to-one?
- Determine if vectors are linearly independent
- What does it mean to have a determinant equal to zero?
- Is this Batman equation for real?
- How to find perpendicular vector to another vector?
- How to find mean and median from histogram
- How many sides does a circle have?
It's a bit tricky. First, the easy part, the denominator: Denote $\bar{x}_i=\frac1{n_i}\sum_{j=1}^{n_i}x_{ij}$. Then $SSW=\sum_{i=1}^m\sum_{j=1}^{n_i}(x_{ij}-\bar x_i)^2$. The ratio $SSW/\sigma^2$ is distributed by $\chi^2(n_1+\dots+n_m-m)$ both under the null and the alternative hypotheses. Also, note that $SSW$ and all $\bar x_i$ are independent (this follows from the Fisher's lemma).
Now the tricky part, the numerator. If the null hypothesis holds, then $\bar x_i\sim\mathcal N(c^{i-1}\mu_1,\sigma^2/n_i)$, or if we denote $y_i=\sqrt{n_i}\bar x_i$, then $y_i=\mu_1\sqrt{n_i}c^{i-1}+\epsilon_i$, where $\epsilon_i\sim\mathcal N(0,\sigma^2)$ and independent between each other. This means we can apply the linear regression technique, get the OLS estimator $$ \hat\mu_1=\frac{\sum_{i=1}^m\sqrt{n_i}c^{i-1}y_i}{\sum_{i=1}^mn_i(c^{i-1})^2}=\frac{\sum_{i=1}^mn_ic^{i-1}\bar x_i}{\sum_{i=1}^mn_i(c^{i-1})^2}, $$ and get the following distribution of the sum of residuals squared: $SSR/\sigma^2\sim\chi^2(m-1)$, where $$ SSR=\sum_{i=1}^m\left(y_i-\hat\mu_1\sqrt{n_i}c^{i-1}\right)^2=\sum_{i=1}^mn_i\left(\bar x_i-\hat\mu_1c^{i-1}\right)^2. $$ The final $F$-statistic is constructed as a ratio of normalized $SSR$ and $SSW$ (to eliminate unknown $\sigma^2$): $$ F=\frac{SSR/(m-1)}{SSW/(n_1+\dots+n_m-m)} $$ and have the Fisher's $F(m-1,n_1+\dots+n_m-m)$ distribution under the null (since the numerator is constructed from $\{\bar x_i\}$ only, which don't depend on $SSW$).