OFFSET
0,1
COMMENTS
Let (x,y) denote the point of tangency. Then
x=0.294083445311344461181635110698988639348667...
y=0.384312064643508105468613486692501669417807...
slope=-3.69281299167871547859350850472131295652...
(The Mathematica program includes a graph.)
EXAMPLE
radius=0.30467536330660745240216843166775819548...
MATHEMATICA
r = .304; c = 4;
Show[Plot[Cos[c*x], {x, -.5, .5}],
ContourPlot[x^2 + (y - r)^2 == r^2, {x, -1, 1}, {y, -1, 1}], PlotRange -> All, AspectRatio -> Automatic]
t = x /. FindRoot[
c*Sin[c*x] Cos[c*x] - x == x*Sqrt[1 + (c*Sin[c*x])^2], {x, .25, .55}, WorkingPrecision -> 100]
RealDigits[t] (* x coordinate of tangency point *)
y = Cos[c*t] (* y coordinate of tangency point *)
radius = Cos[c*t] - t/(c*Sin[c*t])
RealDigits[radius] (* A197022 *)
slope = -c*Sin[c*t] (* slope at tangency point *)
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Oct 08 2011
STATUS
approved