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