OFFSET
0,2
LINKS
S. R. Finch, Mean width of a regular simplex, arxiv:1111.4976 [math.MG], 2011-2016, S_2.
W. V. Gehrlein, Condorcet's paradox and the Condorcet efficiency of voting rules, Mathematica Japonica 45, 173-199, 1997.
FORMULA
From Robert FERREOL, Mar 21 2018: (Start)
Equals arctan(2*sqrt(2))/(2*Pi).
Equals (1/(2*Pi))*Integral_{t>=sqrt(2)/4} 1/(1+t^2).
Equals Probability(X>sqrt(2)/4)/2, if X is a Cauchy distributed random variable of location parameter 0 and scale parameter 1.
Equals the asymptotic probability p that A is predominantly preferred to B and B predominantly preferred to C when n persons provide a preference list of three candidates A, B, C (with a uniform distribution on voter preferences); the asymptotic probability that A > B > C > A or A > C > B > A (where ">" means "predominantly preferred to") is 3p-1/2 = 8.77...% (Condorcet paradox); the contrary probability (existence of a Condorcet winner) is 3/2-3p = 91.226...%.
See Gehrlein link. (End)
EXAMPLE
0.195913276015303635085427779611215...
MAPLE
arcsec(3)/2/Pi ; evalf(%) ;
MATHEMATICA
RealDigits[ArcSec[3]/(2 Pi), 10, 120][[1]] (* Harvey P. Dale, Jul 21 2021 *)
PROG
(Python)
from mpmath import mp, asec, pi
mp.dps=89
print([int(z) for z in list(str(asec(3)/(2*pi))[2:-1])]) # Indranil Ghosh, Jul 07 2017
(PARI) acos(1/3)/(2*Pi) \\ Michel Marcus, Jul 07 2017
CROSSREFS
KEYWORD
AUTHOR
R. J. Mathar, Jul 07 2017
STATUS
approved