OFFSET
0,1
COMMENTS
Let r and (x,y) denote the radius of the circle and the point of tangency in the first quadrant, respectively.
Then r in [0,1] is the root of equation cos(r+sqrt(r^2-1+sqrt(1-r^2)))^2 = 1-sqrt(1-r^2),
r = 0.642707872546532445779211778468607918285047824...,
x = r+sqrt(r^2-1+sqrt(1-r^2)) = 1.066010072972971718857583783392083793389510385...,
y = sqrt(1-sqrt(1-r^2)) = 0.483620364074368181073730094271148302685427120...
EXAMPLE
0.642707872546532445779211778468607918285047824...
MATHEMATICA
r = r /. FindRoot[Cos[r + Sqrt[-1 + r^2 + Sqrt[1 - r^2]]]^2 == 1 - Sqrt[1 - r^2], {r, 1/2}]; Show[Plot[Cos[x], {x, 0, Pi/2}], Plot[-Cos[x], {x, 0, Pi/2}], Graphics[Circle[{r, 0}, r]], PlotRange -> All, AspectRatio -> Automatic] (* Vaclav Kotesovec, Jul 01 2021 *)
PROG
(PARI) solve(r=0, 1, cos(r+sqrt(r^2-1+sqrt(1-r^2)))^2-1+sqrt(1-r^2))
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Gleb Koloskov, Jun 21 2021
STATUS
approved