Xn is a independent random variable. So it's sum is normally distributed.
Also Xn = Yn+1 - Yn => Yn+1 = Xn + Yn
So Y365 = X1 + X2 + ... + X364 + Y1
From the question Y1 = 100
Also from question E[X] = u = 0
so E[Y1] = 100
Using similar calculation, SD of Y365 = sqrt(365 * 1/4)
= 100
pnorm(0, 0, sqrt(365 * 1/4), lower.tail = FALSE)
## [1] 0.5
= 110
pnorm(10, 0, sqrt(365 * 1/4), lower.tail = FALSE)
## [1] 0.1475849
= 120
pnorm(20, 0, sqrt(365 * 1/4), lower.tail = FALSE)
## [1] 0.01814355
pic2