Suppose that $U$ and $V$ are two independent uniform $(-1,1)$ random variables.
Any hints on how I can show that their conditional distribution, given $U^2 +V^2<1$ is given by the uniform distribution over the unit circle, namely
$$f_{U,V|U^2+V^2<1} (u,v|w<1) =1/{\pi}, \quad u^2+v^2<1$$
Both an intuitive and a rigorous dervation would be helpful. Thank you.
use the conditional probability formula $P(X \in A| X \in B) = \frac{P(X \in A \cap B)}{P(X \in B)}$ when $P(X \in B) > 0$.
Now take $X = (U, V), B = \{(u,v): u^2 + v^2 <1\}$. Let A be a measurable subset 0f $(-1, 1) \times (-1,1)$, since $P(X \in B) = \frac{m(B)}{4} = \frac{\pi}{4}$, we have $P(X \in A | X\in B) = \frac{\frac{m(A\cap B)}{4}}{\frac{\pi}{4}} = \frac{m(A \cap B)}{\pi}$. When A is a subset of B it's $\frac{m(A)}{\pi}$, which means uniform distribution ovr B.
More generally, if X is a uniform distribution over $B \subset R^n$, the conditional distribution knowing that X is in $A \subset B$ is the uniform distribution over A. This property helps to simulate some kinds of uniform distributions. For example, we want to simulate a uniform distribution in $x^2 + 2y^2 = 1$, then we could simulate a sequence of uniform distributions in $[-1,1] \times [-\frac{\sqrt{2}}{2},\frac{\sqrt{2}}{2}]$ and take from the sequence the first point in $x^2 + 2y^2 = 1$ as the simulation result.