Skip to content

Commit e1ce0d1

Browse files
committed
corrected some pages
Several small mistakes/errors were corrected in several proofs/definitions.
1 parent a2b8330 commit e1ce0d1

10 files changed

Lines changed: 67 additions & 37 deletions

P/anova1-f.md

Lines changed: 52 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -30,32 +30,50 @@ username: "JoramSoch"
3030
**Theorem:** Assume the [one-way analysis of variance](/D/anova1) model
3131

3232
$$ \label{eq:anova1}
33-
y_{ij} = \mu_i + \varepsilon_{ij}, \; \varepsilon_{ij} \overset{\mathrm{i.i.d.}}{\sim} \mathcal{N}(0, \sigma^2), \; i = 1, \ldots, k, \; j = 1, \dots, n_i \; ,
33+
y_{ij} = \mu_i + \varepsilon_{ij}, \; \varepsilon_{ij} \overset{\mathrm{i.i.d.}}{\sim} \mathcal{N}(0, \sigma^2), \; i = 1, \ldots, k, \; j = 1, \dots, n_i \; .
3434
$$
3535

36-
and consider the [null](/D/h0) and [alternative](/D/h1) hypothesis
36+
Then, the [test statistic](/D/tstat)
37+
38+
$$ \label{eq:anova1-f}
39+
F = \frac{\frac{1}{k-1} \sum_{i=1}^{k} n_i (\bar{y}_i - \bar{y})^2}{\frac{1}{n-k} \sum_{i=1}^{k} \sum_{j=1}^{n_i} (y_{ij} - \bar{y}_i)^2}
40+
$$
41+
42+
follows an [F-distribution](/D/f)
43+
44+
$$ \label{eq:anova1-f-h0}
45+
F \sim \mathrm{F}(k-1, n-k)
46+
$$
47+
48+
under the [null hypothesis](/D/h0)
3749

3850
$$ \label{eq:anova1-h0}
3951
\begin{split}
40-
H_0: &\; \mu_1 = \ldots = \mu_K \\
52+
H_0: &\; \mu_1 = \ldots = \mu_k \\
4153
H_1: &\; \mu_i \neq \mu_j \quad \text{for at least one} \quad i,j \in \left\lbrace 1, \ldots, k \right\rbrace, \; i \neq j \; .
4254
\end{split}
4355
$$
4456

45-
Then, the [test statistic](/D/tstat)
4657

47-
$$ \label{eq:anova1-f}
48-
F = \frac{\frac{1}{k-1} \sum_{i=1}^{k} n_i (\bar{y}_i - \bar{y})^2}{\frac{1}{n-k} \sum_{i=1}^{k} \sum_{j=1}^{n_i} (y_{ij} - \bar{y}_i)^2}
58+
**Proof:** Denote sample sizes as
59+
60+
$$ \label{eq:samp-size}
61+
\begin{split}
62+
n_i &- \text{number of samples in category} \; i \\
63+
n &= \sum_{i=1}^{k} n_ij
64+
\end{split}
4965
$$
5066

51-
follows an [F-distribution](/D/f) under the null hypothesis:
67+
and denote sample means as
5268

53-
$$ \label{eq:anova1-f-h0}
54-
F \sim \mathrm{F}(k-1, n-k), \; \text{if} \; H_0 \; .
69+
$$ \label{eq:mean-samp}
70+
\begin{split}
71+
\bar{y}_i &= \frac{1}{n_i} \sum_{j=1}^{n_i} y_{ij} \\
72+
\bar{y} &= \frac{1}{n} \sum_{i=1}^{k} \sum_{j=1}^{n_i} y_{ij} \; .
73+
\end{split}
5574
$$
5675

57-
58-
**Proof:** Let $\mu$ be the common [mean](/D/mean) under the [null hypothesis](/D/h0) $\mu_1 = \ldots = \mu_K = \mu$. Under $H_0$, we have:
76+
Let $\mu$ be the common [mean](/D/mean) according to $H_0$ given by \eqref{eq:anova1-h0}, i.e. $\mu_1 = \ldots = \mu_k = \mu$. Under this null hypothesis, we have:
5977

6078
$$ \label{eq:yij-h0}
6179
y_{ij} \sim \mathcal{N}(\mu, \sigma^2) \quad \text{for all} \quad i = 1, \ldots, k, \; j = 1, \ldots, n_i \; .
@@ -98,7 +116,7 @@ $$ \label{eq:sum-yib}
98116
\end{split}
99117
$$
100118

101-
where $n = \sum_{i=1}^{k} n_i$, the sum in \eqref{eq:sum-Uij-s1} reduces to
119+
non-square products in \eqref{eq:sum-Uij-s1} disappear and the sum reduces to
102120

103121
$$ \label{eq:sum-Uij-s2}
104122
\begin{split}
@@ -137,17 +155,29 @@ $$
137155

138156
Then, we observe that the sum in \eqref{eq:sum-Uij-s2} can be represented in the form of \eqref{eq:cochran-p1} using the matrices
139157

140-
$$ \label{eq:sum-Uij-s3-Bj}
158+
$$ \label{eq:B}
141159
\begin{split}
142-
B^{(1)} &= I_n - \mathrm{diag}\left( \frac{1}{n_1} J_{n_1}, \; \ldots, \; \frac{1}{n_K} J_{n_K} \right) \\
143-
B^{(2)} &= \mathrm{diag}\left( \frac{1}{n_1} J_{n_1}, \; \ldots, \; \frac{1}{n_K} J_{n_K} \right) - \frac{1}{n} J_n \\
160+
B^{(1)} &= I_n - \mathrm{diag}\left( \frac{1}{n_1} J_{n_1}, \; \ldots, \; \frac{1}{n_k} J_{n_k} \right) \\
161+
B^{(2)} &= \mathrm{diag}\left( \frac{1}{n_1} J_{n_1}, \; \ldots, \; \frac{1}{n_k} J_{n_k} \right) - \frac{1}{n} J_n \\
144162
B^{(3)} &= \frac{1}{n} J_n
145163
\end{split}
146164
$$
147165

148-
where $J_n$ is an $n \times n$ matrix of ones and $\mathrm{diag}\left( A_1, \ldots, A_n \right)$ denotes a block-diagonal matrix composed of $A_1, \ldots, A_n$. The matrices in \eqref{eq:sum-Uij-s3-Bj} fulfill $B^{(1)} + B^{(2)} + B^{(3)} = I_n$ and their ranks are given by:
166+
where $J_n$ is an $n \times n$ matrix of ones and $\mathrm{diag}\left( A_1, \ldots, A_n \right)$ denotes a block-diagonal matrix composed of $A_1, \ldots, A_n$. We observe that those matrices satisfy
149167

150-
$$ \label{eq:sum-Uij-s3-Bj-rk}
168+
$$ \label{eq:U-Q-B}
169+
\sum_{i=1}^{k} \sum_{j=1}^{n_i} U_{ij}^2 = Q_1 + Q_2 + Q_3 = U^\mathrm{T} B^{(1)} U + U^\mathrm{T} B^{(2)} U + U^\mathrm{T} B^{(3)} U
170+
$$
171+
172+
as well as
173+
174+
$$ \label{eq:B-In}
175+
B^{(1)} + B^{(2)} + B^{(3)} = I_n
176+
$$
177+
178+
and their ranks are:
179+
180+
$$ \label{eq:B-rk}
151181
\begin{split}
152182
\mathrm{rank}\left( B^{(1)} \right) &= n-k \\
153183
\mathrm{rank}\left( B^{(2)} \right) &= k-1 \\
@@ -164,7 +194,7 @@ $$ \label{eq:ess-rss}
164194
\end{split}
165195
$$
166196

167-
Then, using \eqref{eq:sum-Uij-s2}, \eqref{eq:cochran-p1}, \eqref{eq:cochran-p2}, \eqref{eq:sum-Uij-s3-Bj} and \eqref{eq:sum-Uij-s3-Bj-rk}, we find that
197+
Then, using \eqref{eq:sum-Uij-s2}, \eqref{eq:cochran-p1}, \eqref{eq:cochran-p2}, \eqref{eq:B} and \eqref{eq:B-rk}, we find that
168198

169199
$$ \label{eq:ess-rss-dist}
170200
\begin{split}
@@ -184,8 +214,10 @@ F &= \frac{(\mathrm{ESS}/\sigma^2)/(k-1)}{(\mathrm{RSS}/\sigma^2)/(n-k)} \\
184214
\end{split}
185215
$$
186216

187-
which, [by definition of the F-distribution](/D/f), is distributed as:
217+
which, [by definition of the F-distribution](/D/f), is distributed as
188218

189219
$$ \label{eq:anova1-f-qed}
190-
F \sim \mathrm{F}(k-1, n-k), \; \text{if} \; H_0 \; .
220+
F \sim \mathrm{F}(k-1, n-k)
191221
$$
222+
223+
under the [null hypothesis](/D/h0) for the main effect.

P/anova1-fols.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ $$ \label{eq:anova1-f}
4646
F = \frac{\frac{1}{k-1} \sum_{i=1}^{k} n_i (\bar{y}_i - \bar{y})^2}{\frac{1}{n-k} \sum_{i=1}^{k} \sum_{j=1}^{n_i} (y_{ij} - \bar{y}_i)^2}
4747
$$
4848

49-
where $\bar{y}_i$ is the average of all values $y_{ij}$ from category $i$ and $\bar{y}$ is the grand mean of all values $y_{ij}$ from all categories $i = 1, \ldots, k$.
49+
where $\bar{y} _i$ is the average of all values $y_{ij}$ from category $i$ and $\bar{y}$ is the grand mean of all values $y_{ij}$ from all categories $i = 1, \ldots, k$.
5050

5151
1) The [ordinary least squares estimates for one-way ANOVA](/P/anova1-ols) are
5252

P/anova1-pss.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ $$ \label{eq:anova1-pss}
3939
\mathrm{SS}_\mathrm{tot} = \mathrm{SS}_\mathrm{treat} + \mathrm{SS}_\mathrm{res}
4040
$$
4141

42-
where $\mathrm{SS}_\mathrm{tot}$ is the [total sum of squares](/D/tss), $\mathrm{SS}_\mathrm{treat}$ is the [treatment sum of squares](/D/trss) (equivalent to [explained sum of squares](/D/ess)) and $\mathrm{SS}_\mathrm{res}$ is the [residual sum of squares](/D/rss).
42+
where $\mathrm{SS} _\mathrm{tot}$ is the [total sum of squares](/D/tss), $\mathrm{SS} _\mathrm{treat}$ is the [treatment sum of squares](/D/trss) (equivalent to [explained sum of squares](/D/ess)) and $\mathrm{SS} _\mathrm{res}$ is the [residual sum of squares](/D/rss).
4343

4444

4545
**Proof:** The [total sum of squares](/D/tss) for [one-way ANOVA](/D/anova1) is given by

P/anova1-repara.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ title: "Reparametrization for one-way analysis of variance"
1111
chapter: "Statistical Models"
1212
section: "Univariate normal data"
1313
topic: "Analysis of variance"
14-
theorem: "Reparametrization for one-way ANOVA"
14+
theorem: "Reparametrization of one-way ANOVA"
1515

1616
sources:
1717
- authors: "Wikipedia"
@@ -94,7 +94,7 @@ $$
9494

9595
$$ \label{eq:anova1-repara-c2-qed}
9696
\begin{split}
97-
\hat{\mu} &= \bar{y}_{\bullet \bullet} \hphantom{\bar{y}_{i \bullet} - } = \frac{1}{n} \sum_{i=1}^{k} \sum_{j=1}^{n_i} y_{ij} \\
97+
\hat{\mu} &= \bar{y}_{\bullet \bullet} = \frac{1}{n} \sum_{i=1}^{k} \sum_{j=1}^{n_i} y_{ij} \\
9898
\hat{\delta}_i &= \bar{y}_{i \bullet} - \bar{y}_{\bullet \bullet} = \frac{1}{n_i} \sum_{j=1}^{n_i} y_{ij} - \frac{1}{n} \sum_{i=1}^{k} \sum_{j=1}^{n_i} y_{ij} \; .
9999
\end{split}
100100
$$
@@ -133,7 +133,7 @@ $$ \label{eq:anova1-repara-c4-s1}
133133
F &= \frac{\left( \frac{1}{\sigma^2} \sum_{i=1}^{k} \sum_{j=1}^{n_i} (\hat{\delta}_i - \delta_i)^2 \right)/(k-1)}{\left( \frac{1}{\sigma^2} \sum_{i=1}^{k} \sum_{j=1}^{n_i} (y_{ij} - \bar{y}_i)^2 \right)/(n-k)} \\
134134
&= \frac{\frac{1}{k-1} \sum_{i=1}^{k} \sum_{j=1}^{n_i} (\hat{\delta}_i - \delta_i)^2}{\frac{1}{n-k} \sum_{i=1}^{k} \sum_{j=1}^{n_i} (y_{ij} - \bar{y}_i)^2} \\
135135
&= \frac{\frac{1}{k-1} \sum_{i=1}^{k} n_i (\hat{\delta}_i - \delta_i)^2}{\frac{1}{n-k} \sum_{i=1}^{k} \sum_{j=1}^{n_i} (y_{ij} - \bar{y}_i)^2} \\
136-
&= \frac{\frac{1}{k-1} \sum_{i=1}^{k} n_i \hat{\delta}_i^2}{\frac{1}{n-k} \sum_{i=1}^{k} \sum_{j=1}^{n_i} (y_{ij} - \bar{y}_i)^2}
136+
&\overset{\eqref{eq:anova1-repara-c4-h0}}{=} \frac{\frac{1}{k-1} \sum_{i=1}^{k} n_i \hat{\delta}_i^2}{\frac{1}{n-k} \sum_{i=1}^{k} \sum_{j=1}^{n_i} (y_{ij} - \bar{y}_i)^2}
137137
\end{split}
138138
$$
139139

@@ -143,4 +143,4 @@ $$ \label{eq:anova1-repara-c4-qed}
143143
F \sim \mathrm{F}(k-1, n-k)
144144
$$
145145

146-
under the null hypothesis \eqref{eq:anova1-repara-c4-h0}.
146+
under the null hypothesis.

P/anova2-cochran.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ $$ \label{eq:sum-Uijk-s3d}
152152
&\overset{\eqref{eq:sum-Uijk-s3b}}{=} \sum_{i=1}^{a} \sum_{j=1}^{b} \sum_{k=1}^{n_{ij}} (\bar{y}_{i j \bullet} - \bar{y}_{\bullet \bullet \bullet} - \gamma_{ij}) \\
153153
&= \sum_{i=1}^{a} \sum_{j=1}^{b} n_{ij} \bar{y}_{i j \bullet} - \bar{y}_{\bullet \bullet \bullet} \sum_{i=1}^{a} \sum_{j=1}^{b} n_{ij} - \sum_{i=1}^{a} \sum_{j=1}^{b} n_{ij} \gamma_{ij} \\
154154
&\overset{\eqref{eq:mean-samp}}{=} \sum_{i=1}^{a} \sum_{j=1}^{b} n_{ij} \cdot \frac{1}{n_{ij}} \sum_{k=1}^{n_{ij}} y_{ijk} - n \cdot \frac{1}{n} \sum_{i=1}^{a} \sum_{j=1}^{b} \sum_{k=1}^{n_{ij}} y_{ijk} - \sum_{i=1}^{a} \sum_{j=1}^{b} n_{ij} \gamma_{ij} \\
155-
&= - \frac{1}{n} \sum_{i=1}^{a} \sum_{j=1}^{b} \frac{n_{ij}}{n} \gamma_{ij} \overset{\eqref{eq:anova2-constr}}{=} 0 \; .
155+
&= - \sum_{i=1}^{a} \sum_{j=1}^{b} n_{ij} \gamma_{ij} = - \frac{1}{n} \sum_{i=1}^{a} \sum_{j=1}^{b} \frac{n_{ij}}{n} \gamma_{ij} \overset{\eqref{eq:anova2-constr}}{=} 0 \; .
156156
\end{split}
157157
$$
158158

P/anova2-fgm.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,7 @@ $$
141141
and the term $\bar{y}_{\bullet \bullet \bullet}$ does not depend on $i$, $j$ and $k$
142142

143143
$$ \label{eq:yb-const}
144-
\begin{split}
145144
\bar{y}_{\bullet \bullet \bullet} = \text{const.} \; ,
146-
\end{split}
147145
$$
148146

149147
non-square products in \eqref{eq:sum-Uijk-s2} disappear and the sum reduces to
@@ -191,7 +189,7 @@ $$
191189
where $J_n$ is an $n \times n$ matrix of ones, $J_{n,m}$ is an $n \times m$ matrix of ones and $\mathrm{diag}\left( A_1, \ldots, A_n \right)$ denotes a block-diagonal matrix composed of $A_1, \ldots, A_n$. We observe that those matrices satisfy
192190

193191
$$ \label{eq:U-Q-B}
194-
\sum_{i=1}^{a} \sum_{j=1}^{b} \sum_{k=1}^{n_{ij}} U_i^2 = Q_1 + Q_2 + Q_3 = U^\mathrm{T} B^{(1)} U + U^\mathrm{T} B^{(2)} U + U^\mathrm{T} B^{(3)} U
192+
\sum_{i=1}^{a} \sum_{j=1}^{b} \sum_{k=1}^{n_{ij}} U_{ijk]^2 = Q_1 + Q_2 + Q_3 = U^\mathrm{T} B^{(1)} U + U^\mathrm{T} B^{(2)} U + U^\mathrm{T} B^{(3)} U
195193
$$
196194

197195
as well as

P/anova2-fia.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ $$
197197
where $J_n$ is an $n \times n$ matrix of ones, $J_{n,m}$ is an $n \times m$ matrix of ones and $\mathrm{diag}\left( A_1, \ldots, A_n \right)$ denotes a block-diagonal matrix composed of $A_1, \ldots, A_n$. We observe that those matrices satisfy
198198

199199
$$ \label{eq:U-Q-B}
200-
\sum_{i=1}^{a} \sum_{j=1}^{b} \sum_{k=1}^{n_{ij}} U_i^2 = Q_1 + Q_2 + Q_3 = U^\mathrm{T} B^{(1)} U + U^\mathrm{T} B^{(2)} U + U^\mathrm{T} B^{(3)} U
200+
\sum_{i=1}^{a} \sum_{j=1}^{b} \sum_{k=1}^{n_{ij}} U_{ijk}^2 = Q_1 + Q_2 + Q_3 = U^\mathrm{T} B^{(1)} U + U^\mathrm{T} B^{(2)} U + U^\mathrm{T} B^{(3)} U
201201
$$
202202

203203
as well as

P/anova2-fme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ $$
6666
and the [test statistic](/D/tstat)
6767

6868
$$ \label{eq:anova2-fme-B}
69-
F_B = \frac{\frac{1}{a-1} \sum_{i=1}^{a} n_{i \bullet} (\bar{y}_{i \bullet \bullet} - \bar{y}_{\bullet \bullet \bullet})^2}{\frac{1}{n-ab} \sum_{i=1}^{a} \sum_{j=1}^{b} \sum_{k=1}^{n_{ij}} (y_{ijk} - \bar{y}_{i j \bullet})^2}
69+
F_B = \frac{\frac{1}{b-1} \sum_{j=1}^{b} n_{\bullet j} (\bar{y}_{\bullet j \bullet} - \bar{y}_{\bullet \bullet \bullet})^2}{\frac{1}{n-ab} \sum_{i=1}^{a} \sum_{j=1}^{b} \sum_{k=1}^{n_{ij}} (y_{ijk} - \bar{y}_{i j \bullet})^2} \\
7070
$$
7171

7272
follows an [F-distribution](/D/f)
@@ -80,7 +80,7 @@ under the [null hypothesis](/D/h0) for the [main effect](/D/anova2) of factor B
8080
$$ \label{eq:anova2-h0-B}
8181
\begin{split}
8282
H_0: &\; \beta_1 = \ldots = \beta_b = 0 \\
83-
H_1: &\; \beta_j \neq 0 \quad \text{for at least one} \quad j \in \left\lbrace 1, \ldots, a \right\rbrace \; .
83+
H_1: &\; \beta_j \neq 0 \quad \text{for at least one} \quad j \in \left\lbrace 1, \ldots, b \right\rbrace \; .
8484
\end{split}
8585
$$
8686

@@ -208,7 +208,7 @@ $$
208208
where $J_n$ is an $n \times n$ matrix of ones and $\mathrm{diag}\left( A_1, \ldots, A_n \right)$ denotes a block-diagonal matrix composed of $A_1, \ldots, A_n$. We observe that those matrices satisfy
209209

210210
$$ \label{eq:U-Q-B}
211-
\sum_{i=1}^{a} \sum_{j=1}^{b} \sum_{k=1}^{n_{ij}} U_i^2 = Q_1 + Q_2 + Q_3 = U^\mathrm{T} B^{(1)} U + U^\mathrm{T} B^{(2)} U + U^\mathrm{T} B^{(3)} U
211+
\sum_{i=1}^{a} \sum_{j=1}^{b} \sum_{k=1}^{n_{ij}} U_{ijk}^2 = Q_1 + Q_2 + Q_3 = U^\mathrm{T} B^{(1)} U + U^\mathrm{T} B^{(2)} U + U^\mathrm{T} B^{(3)} U
212212
$$
213213

214214
as well as

P/anova2-fols.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ title: "F-statistics in terms of ordinary least squares estimates in two-way ana
1111
chapter: "Statistical Models"
1212
section: "Univariate normal data"
1313
topic: "Analysis of variance"
14-
theorem: "F-statistic in terms of OLS estimates"
14+
theorem: "F-statistics in terms of OLS estimates"
1515

1616
sources:
1717

P/anova2-pss.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ $$ \label{eq:anova2-pss}
4545
\mathrm{SS}_\mathrm{tot} = \mathrm{SS}_{A} + \mathrm{SS}_{B} + \mathrm{SS}_{A \times B} + \mathrm{SS}_\mathrm{res}
4646
$$
4747

48-
where $\mathrm{SS}_\mathrm{tot}$ is the [total sum of squares](/D/tss), $\mathrm{SS}_{A}$, $\mathrm{SS}_{B}$ and $\mathrm{SS}_{A \times B}$ are [treatment](/D/trss) and [interaction sum of squares](/D/iass) (summing into the [explained sum of squares](/D/ess)) and $\mathrm{SS}_\mathrm{res}$ is the [residual sum of squares](/D/rss).
48+
where $\mathrm{SS} _\mathrm{tot}$ is the [total sum of squares](/D/tss), $\mathrm{SS} _{A}$, $\mathrm{SS} _{B}$ and $\mathrm{SS} _{A \times B}$ are [treatment](/D/trss) and [interaction sum of squares](/D/iass) (summing into the [explained sum of squares](/D/ess)) and $\mathrm{SS} _\mathrm{res}$ is the [residual sum of squares](/D/rss).
4949

5050

5151
**Proof:** The [total sum of squares](/D/tss) for [two-way ANOVA](/D/anova2) is given by
@@ -54,7 +54,7 @@ $$ \label{eq:anova2-tss}
5454
\mathrm{SS}_\mathrm{tot} = \sum_{i=1}^{a} \sum_{j=1}^{b} \sum_{k=1}^{n_{ij}} (y_{ijk} - \bar{y}_{\bullet \bullet \bullet})^2
5555
$$
5656

57-
where $\bar{y}_{\bullet \bullet \bullet}$ is the mean across all values $y_{ijk}$. This can be rewritten as
57+
where $\bar{y} _{\bullet \bullet \bullet}$ is the mean across all values $y_{ijk}$. This can be rewritten as
5858

5959
$$ \label{eq:anova2-pss-s1}
6060
\begin{split}

0 commit comments

Comments
 (0)