OFFSET
1,2
COMMENTS
Let (x,y) denote the point of tangency, where x>0:
x=1.116022083263345851737313595257930429156...
y=0.614102158068589478230317674621719242848...
slope=1.578453090155676616014698886314279426...
(The Mathematica program includes a graph.)
EXAMPLE
radius=1.321137476522859782809009849582516244...
MATHEMATICA
r = 1.32; c = 2;
Show[Plot[-Cos[c*x], {x, -4, 4}],
ContourPlot[x^2 + (y - r)^2 == r^2, {x, -3, 3}, {y, -1.5, 3}], PlotRange -> All, AspectRatio -> Automatic]
u[x_] := -Cos[c*x] + x/(c*Sin[c*x]);
t1 = x /. FindRoot[Sqrt[u[x]^2 - x^2] == u[x] + Cos[c*x], {x, 1, 1.5}, WorkingPrecision -> 100]
t = Re[t1];
RealDigits[t] (* x coordinate of tangency point *)
y = -Cos[c*t] (* y coordinate of tangency point *)
radius = u[t]
RealDigits[radius] (* A197027 *)
slope = c*Sin[c*t] (* slope at tangency point *)
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Oct 09 2011
STATUS
approved