Given a Weibull Distribution $f_R$, how do I transform $R\to R^2$, and what is the distribution for $R^2$?
Attempt: Since $f_R$ is distributed with parameter $k$ and $h$ as a function of $x$, so . $$f_R=(k/h)*(x/h)^{k-1}*exp(-{x/h}^k)$$
Using the random variable transformation: $g(y) = -f\left[r^{-1}(y)\right] \frac{d}{dy} r^{-1}(y)$,
then $R^2 $ has a distribution of $$k/h*(\sqrt(y)/h)^{k-1}*exp(-(\sqrt(y)/h)^k)*1/\sqrt(y)$$
This is mechanized in Maple: $$with(Statistics): R := RandomVariable(Weibull(k, lambda)): simplify(PDF(R^2, t)); $$ $$ \cases{0&$t\leq 0$\cr 1/2\,{t}^{-1+\lambda/2}\lambda\,{k}^{-\lambda}{{\rm e}^{-{t}^{\lambda/2} \left( {k}^{-1} \right) ^{\lambda}}}&$0<t$\cr} $$ and $$CDF(R^2, t) $$ outputs $$\cases{0&$t\leq 0$\cr -{{\rm e}^{-{t}^{\lambda/2}{k}^{-\lambda}}}+1&$0<t$\cr} $$