Serving the Quantitative Finance Community

Search found 5 matches

by tlin123
March 11th, 2015, 5:41 pm
Forum: Brainteaser Forum
Topic: four point problem.
Replies: 40
Views: 13343

four point problem.

<t>QuoteOriginally posted by: Traden4AlphaQuoteOriginally posted by: yegulalpMonte Carlo for D=2 is easier since we can just generate random angles, sort them, and find the longest arc. I get the following results for the circle:N=3, P = 0.24998977N=4, P =0.50010848N=5, P=0.68752146 (probably 11/16 ...
by tlin123
March 11th, 2015, 3:27 pm
Forum: Brainteaser Forum
Topic: four point problem.
Replies: 40
Views: 13343

four point problem.

<t>" In order for the remaining N-D+1 points to NOT capture the center of the hypersphere, they must all land in the same half of the hypersphere (as defined by the first N-D+1 points). "I don't think this statement is true. In the case of a circle when D=2, the first point and the center cuts the c...
by tlin123
March 10th, 2015, 7:32 pm
Forum: Brainteaser Forum
Topic: four point problem.
Replies: 40
Views: 13343

four point problem.

Hi outrun, in your solution are you only using 3 points? The questions ask for 4 points. I think your solution is right for the case of 3 points though.
by tlin123
March 10th, 2015, 2:33 am
Forum: Brainteaser Forum
Topic: four point problem.
Replies: 40
Views: 13343

four point problem.

Four points are chosen at random on the surface of a sphere. What is the probability that the center of the sphere lies inside the tetrahedron whose vertices are at the four points?What if it's a circle instead of a sphere?
by tlin123
March 10th, 2015, 1:54 am
Forum: Brainteaser Forum
Topic: Compute the Nth Fibonacci nr using only + and *
Replies: 56
Views: 41280

Compute the Nth Fibonacci nr using only + and *

Here is a python 2 code for some of the algorithms mentioned here.