ArcSinDistribution
ArcSinDistribution[{xmin, xmax}] represents the arc sine distribution supported between xmin and xmax.
ArcSinDistribution[] represents the arc sine distribution supported between zero and one.
Examples
Create an arc sine distribution:
dist = ArcSinDistribution[]Generate random samples:
RandomVariate[ArcSinDistribution[], 10]Plot the PDF:
Plot[PDF[ArcSinDistribution[], x], {x, 0, 1}]Please visit the official Wolfram Language Reference for more details.