Graphs in R per @whuber's Comment:

set.seed(1117)
par(mfrow=c(1,3))
w = rnorm(10^6, 150, 15)
summary(w); sd(x)
Min. 1st Qu. Median Mean 3rd Qu. Max.
77.08 139.86 150.01 150.02 160.15 221.71
[1] 1.000814
hdr1 = "W ~ NORM(150, 15)"
hist(w, prob=T, br=30, col="skyblue2", main=hdr1)
curve(dnorm(x, 150, 15), add=T, col="red")
.
x = w/15
summary(x); sd(x)
Min. 1st Qu. Median Mean 3rd Qu. Max.
5.138 9.324 10.001 10.001 10.676 14.781
[1] 1.000814
hdr2 = "X = W/15 ~ NORM(10, 1)"
hist(x, prob=T, br=40, col="skyblue2", main=hdr2)
curve(dnorm(x, 10, 1), add=T, col="red")
See Wikipedia on non-central chi-squared distribution.
Notice that the mean of $m = 10^6$ observations from $Y \sim \mathsf{Chisq}(\nu=1,\lambda=10^2)$ is consistent with $E(Y) = \nu+\lambda=101.$
y = x^2
summary(y); sd(y)
Min. 1st Qu. Median Mean 3rd Qu. Max.
26.40 86.94 100.01 101.02 113.99 218.48
[1] 20.07186
hdr3 = "Y ~ CHISQ(DF=1, NCP=100)"
hist(y, prob=T, br=30, col="skyblue2", main=hdr3)
curve(dchisq(x,1,100), add=T, col="red")
par(mfrow=c(1,1))