Consider a unit square, Pick two points P and Q uniformly at random inside the square, What is the probability that |PQ|>1?
I tried solve this problem
Integrate[Boole[(x1-x2)^2+(y1-y2)^2>1],{x1,0,1},{y1,0,1},{x2,0,1},{y2,0,1}]
above code with NIntegrate
given 0.025074
, but I want a symbolically result as except is $\frac{19}{6}-\pi$ .
Comments
Post a Comment