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