A198109 Decimal expansion of greatest x having x^2+3x=4*cos(x).
7, 6, 5, 7, 2, 6, 4, 4, 2, 9, 2, 0, 5, 4, 0, 7, 1, 7, 4, 8, 3, 1, 0, 1, 0, 4, 9, 2, 3, 9, 4, 4, 9, 9, 3, 8, 2, 5, 9, 3, 8, 8, 0, 0, 4, 2, 0, 4, 9, 6, 3, 7, 0, 7, 0, 8, 5, 2, 1, 5, 1, 7, 2, 8, 8, 4, 5, 8, 6, 9, 4, 9, 7, 5, 8, 1, 7, 4, 9, 7, 9, 4, 2, 2, 8, 3, 9, 2, 5, 1, 1, 7, 8, 8, 9, 2, 8, 8, 8
Offset: 0
Examples
least x: -2.072191302711809327379682290027003... greatest x: 0.7657264429205407174831010492394...
Crossrefs
Cf. A197737.
Programs
-
Mathematica
a = 1; b = 3; c = 4; f[x_] := a*x^2 + b*x; g[x_] := c*Cos[x] Plot[{f[x], g[x]}, {x, -3, 1}] r1 = x /. FindRoot[f[x] == g[x], {x, -2.1, -2.9}, WorkingPrecision -> 110] RealDigits[r1] (* A198108 *) r2 = x /. FindRoot[f[x] == g[x], {x, .76, .77}, WorkingPrecision -> 110] RealDigits[r2] (* A198109 *)
Comments