Given $$X_i ∼ Uniform[0, 1] $$for $$i = 1, .., n.$$ What is the distribution of $$M := min(X_1, ...., X_n)?$$ You may assume that $$X_1,X_2, ... ,X_n are independent.$$ My solution: $$X_1 ∼U [0,1]$$ $$PDF f(x)=1, 0≤ x≤ 1$$ $$ F(x)= \int_0^{x} f_x(x)\,dx$$ $$=\int_0^{x} 1\,dx$$ $$x, 0≤ x≤ 1$$ CDF of min $$= 1-[1-x]^n $$ PDF of min $$=n(1-x)^{n-1}$$
This is my solutions, and just wanted to check my answers with you guys