I presume this means y(t) = x(t,1) + ... + x(t,n) (R.T.)
I presume you want x(t,i)~N(mu/n, sigma.sq/n),
elsewise the question doesn't make sense.
I also presume you want the x(t,i) to be independent,
elsewise the question is trivial. (R.T.)
The problem is not as simple as can appear. All my experiments
didnt give me anything so far. Are there any tools to do this?
This should work, provided I understand the problem correctly:
x <- rnorm(n,sd=sqrt(sigma.sq/n))
x <- x - mean(x) + y/n
I don't think it's that simple: By my calculations,
Var(x_i) = 2*sigma.sq/n - sigma.sq/n^2, not sigma.sq/n.