A198128 Decimal expansion of least x having 2*x^2+3x=cos(x).
2, 7, 1, 8, 3, 1, 8, 5, 1, 8, 9, 5, 8, 0, 5, 9, 0, 7, 1, 8, 6, 8, 8, 2, 0, 3, 3, 3, 5, 8, 8, 3, 9, 7, 6, 2, 7, 5, 0, 2, 0, 4, 9, 6, 5, 7, 2, 7, 6, 0, 5, 9, 5, 0, 8, 2, 5, 3, 0, 1, 4, 3, 8, 9, 5, 8, 6, 4, 8, 6, 0, 0, 8, 2, 1, 5, 1, 5, 5, 6, 7, 9, 0, 9, 3, 5, 2, 1, 7, 2, 9, 6, 5, 7, 5, 2, 0, 5, 4
Offset: 1
Examples
least x: -1.51753898066148224483274698639081150... greatest x: 0.2718318518958059071868820333588397...
Crossrefs
Cf. A197737.
Programs
-
Mathematica
a = 2; b = 3; 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.52, -1.51}, WorkingPrecision -> 110] RealDigits[r1](* A198128 *) r2 = x /. FindRoot[f[x] == g[x], {x, .27, .28}, WorkingPrecision -> 110] RealDigits[r2](* A198129 *)
Comments