A198240 Decimal expansion of least x having 3*x^2+4x=3*cos(x).
1, 4, 3, 0, 8, 3, 3, 4, 2, 0, 7, 1, 7, 7, 2, 8, 5, 4, 2, 5, 6, 6, 5, 4, 3, 9, 3, 3, 6, 3, 9, 1, 3, 8, 8, 5, 9, 9, 0, 2, 1, 8, 3, 5, 9, 2, 1, 4, 8, 4, 4, 4, 7, 5, 8, 6, 5, 1, 2, 9, 3, 6, 0, 4, 8, 3, 7, 1, 3, 3, 8, 0, 5, 4, 1, 2, 3, 2, 2, 6, 5, 7, 9, 2, 4, 5, 7, 1, 3, 4, 4, 7, 6, 3, 9, 6, 1, 1, 3
Offset: 1
Examples
least x: -1.4308334207177285425665439336391388599... greatest x: 0.48600443599229304081619898150357856...
Crossrefs
Cf. A197737.
Programs
-
Mathematica
a = 3; b = 4; c = 3; 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.5, -1.4}, WorkingPrecision -> 110] RealDigits[r1](* A198240 *) r2 = x /. FindRoot[f[x] == g[x], {x, .48, .49}, WorkingPrecision -> 110] RealDigits[r2] (* A198241 *)
Comments