OK so here's my question:
For simplicity, let's say I have a set of data, after using $x^3$ transformation, the data becomes normally distributed. Originally, from the original data set, I want to calculate the probability of, let's say, $P(X < 10)$.
Now, if I want to use the transformed data set, should $P(X < 10)$ becomes $P(X < 1000)$, because of $10^3 = 1000$?
I tried to find other references about probability distributions of transformed data, but can't seem find any.
Any insight would really helps, thanks beforehand.
You really should not use the same letter for the transformed random variable as for the original.
If $X$ is the original random variable, and the transformation $Y = X^3$ makes $Y$ normally distributed, then $\Pr[X < 10] = \Pr[Y < 1000]$. This is because $Y = X^3$ is a one-to-one and order-preserving transformation.
To illustrate that order-preserving is important, note that if $W = -X^3$, then $W$ is also normally distributed, but then $\Pr[X < 10] = \Pr[W > -1000]$, and the direction of the inequality has changed.