A199432 Decimal expansion of x>0 satisfying x^2+2*x*sin(x)=cos(x).
5, 4, 3, 0, 4, 7, 6, 2, 4, 4, 0, 7, 4, 0, 1, 0, 3, 7, 9, 6, 0, 7, 3, 5, 5, 9, 0, 1, 4, 3, 7, 6, 5, 2, 9, 5, 6, 0, 7, 0, 7, 4, 5, 4, 3, 6, 8, 2, 9, 8, 9, 9, 8, 0, 8, 1, 3, 6, 3, 3, 6, 4, 1, 0, 3, 9, 8, 4, 8, 2, 0, 5, 8, 1, 0, 2, 1, 9, 5, 6, 8, 7, 9, 5, 4, 5, 8, 4, 9, 5, 2, 0, 3, 1, 5, 2, 5, 0, 1
Offset: 0
Examples
0.5430476244074010379607355901437652956070...
Crossrefs
Cf. A199429.
Programs
-
Mathematica
a = 1; b = 2; 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, .54, .55}, WorkingPrecision -> 110] RealDigits[r] (* A199432 *)
Comments