Could you tell me what kind of distribution is this?
This is the data:
0.028047984
0.280480733
0.804808224
0.048083135
0.480832245
0.808323349
0.083234385
0.83234474
0.323448299
0.23448388
0.344839694
0.448397836
0.483979252
0.839793415
0.397935044
0.979351338
0.793514274
0.935143638
0.351437274
0.514373633
0.143737223
0.43737312
0.373732097
0.737321866
0.373219557
0.732196462
0.321965514
0.21965603
0.196561193
0.965612823
0.65612912
0.561292093
0.612921824
0.129219138
0.292192273
0.921923623
0.219237128
0.192372178
0.923722671
0.237227602
0.372276909
0.722769986
0.227700751
0.277008404
0.770084936
0.700850254
0.008503439
0.08503528
0.850353691
0.503537805
0.035378939
0.353790287
0.537903763
0.379038521
0.790386103
0.903861923
0.038620121
0.386202106
0.862021958
0.620220474
0.202205635
0.022057239
0.220573286
0.205733753
0.057338427
0.573385162
0.733852518
0.338526071
0.385261605
0.852616939
0.526170288
0.261703776
0.617038658
0.170387477
0.703875668
0.03875757
0.38757659
0.875766792
0.757668809
0.576688989
0.766890782
0.668908716
0.689088051
0.8908814
0.908814891
0.088149802
0.881498912
0.814990011
0.149901
0.499010891
0.9901098
0.901098889
0.010989787
0.109898766
0.098988551
0.989886401
0.898864907
0.988649962
0.886500517
0.865006065
I have 100 data from generating U(0,1) in Linear Congruential Generator. In Random Variate Generator, I want to solve for Probability Density Function to Cummulative Distribution Function with Inverse Transformation.
This is the formula: f(x) = 1/x^2 for 0 < x < 1 and f(x) = 0 for the other x
I need to find the inverse of f(x) to solve the random number generator LCG for U(0,1). The type of the distribution has a different formula.
You must mean that you're to use a distribution with the density function is $f(x) = x^{-2},$ for $x > 1.$ This is a Pareto distribution. Then the cumulative distribution function is $F(x) = 1 - x^{-1},$ for $x > 1.$ [Note: I do not believe your formula for $0 < x < 1$ is a proper probability density function.]
For more on 'Pareto distributions', see the Wikipedia article; in their terminology, yours has $\alpha=1$ and $x_m = 1.$ In addition, this article shows the CDF and quantile function that I mention below (along with derivations).
You can use the 'inverse CDF' or 'quantile' function to generate random observations from this Pareto distriution. If $u = F(x) = 1 - x^{-1},$ then $x = F^{-1}(u) = 1/(1 - u),$ for $0 < u < 1$ is the quantile function.
One can show that if $U \sim Unif(0, 1)$ then $X = 1/(1 - U)$ has your Pareto distribution. Thus, using each of your 100 pseudorandom numbers as a realization of $U$, you should be able to simulate a sample of size 100 from the Pareto distribution.
Using R software, I generated 100 observations from $Unif(0,1)$ and plotted them in the upper panel of the figure below. They seem similar to the observations in your figure, which I believe (along with @DavidK) are also uniformly distributed. The bottom panel shows the 100 corresponding Pareto random variables. This Pareto distribution has a notoriously very heavy 'tail' towards high values; while many of the Pareto values are small, occasional ones are quite large.