OFFSET
0,1
COMMENTS
For a discussion and guide to related sequences, see A197737.
EXAMPLE
negative: -1.25115183522076481159287006878816185994...
positive: 0.55000934992726156666495361947172926116...
MATHEMATICA
a = 1; b = 1; c = 1;
f[x_] := a*x^2 + b*x; g[x_] := c*Cos[x]
Plot[{f[x], g[x]}, {x, -2, 1}]
r1 = x /. FindRoot[f[x] == g[x], {x, -1.26, -1.25}, WorkingPrecision -> 110]
RealDigits[r1] (* A197737 *)
r1 = x /. FindRoot[f[x] == g[x], {x, .55, .551}, WorkingPrecision -> 110]
RealDigits[r1] (* A197738 *)
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Oct 20 2011
STATUS
approved