OFFSET
1,2
COMMENTS
This is the radius of the smallest circle containing a system of three unit squares which intersect at the vertices to form an equilateral triangle at the center.
LINKS
Presh Talwalkar, Very few people solved this test problem from Australia, YouTube video, 2022.
EXAMPLE
1.382274792696068482365108044918041903951415152171813...
MAPLE
evalf(sqrt(4/3 + 1/sqrt(3)), 120);
MATHEMATICA
RealDigits[Sqrt[4/3 + 1/Sqrt[3]], 10, 120][[1]]
PROG
(PARI) sqrt(4/3 + 1/sqrt(3))
(Maxima) fpprec: 100$ ev(bfloat(sqrt(4/3 + 1/sqrt(3))));
(Magma) Sqrt(4/3 + 1/Sqrt(3));
CROSSREFS
KEYWORD
AUTHOR
Christoph B. Kassir, Aug 21 2022
STATUS
approved