OFFSET
0,1
COMMENTS
Let (x,y) denote the point of tangency, where x>0:
x=0.6888117352645178597708892254141829843113...
y=0.4755937478149254230061087613442876576146...
slope=2.6389951275730271940627334805152084806...
(The Mathematica program includes a graph.)
EXAMPLE
radius=0.7366066341471518249920789050824520648...
MATHEMATICA
r = .737; c = 3;
Show[Plot[-Cos[c*x], {x, -2, 2}],
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, .6, .8}, 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] (* A197028 *)
slope = c*Sin[c*t] (* slope at tangency point *)
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Oct 09 2011
STATUS
approved