A198924 Decimal expansion of x>0 satisfying 3*x^2-cos(x)=2.
9, 3, 0, 4, 9, 0, 9, 7, 0, 4, 9, 3, 6, 2, 2, 7, 5, 6, 5, 8, 4, 6, 2, 8, 0, 6, 6, 9, 7, 0, 8, 3, 4, 7, 9, 9, 3, 6, 4, 1, 0, 7, 6, 1, 2, 0, 0, 7, 9, 8, 2, 3, 2, 4, 7, 5, 4, 8, 1, 4, 7, 9, 5, 6, 8, 2, 9, 0, 7, 5, 3, 3, 3, 4, 4, 0, 2, 8, 9, 4, 2, 2, 6, 6, 2, 8, 4, 2, 0, 7, 7, 1, 1, 9, 5, 6, 4, 6, 8, 9, 5, 6, 9
Offset: 0
Examples
0.930490970493622756584628066970834799...
Crossrefs
Cf. A198755.
Programs
-
Mathematica
a = 3; b = -1; c = 2; f[x_] := a*x^2 + b*Cos[x]; g[x_] := c Plot[{f[x], g[x]}, {x, -2, 2}, {AxesOrigin -> {0, 0}}] r = x /. FindRoot[f[x] == g[x], {x, .93, .94}, WorkingPrecision -> 110] RealDigits[r] (* A198924 *)
Comments