A200303 Decimal expansion of least x satisfying 4*x^2 - 3*cos(x) = 4*sin(x), negated.
4, 6, 7, 6, 4, 3, 6, 3, 2, 2, 2, 9, 0, 5, 6, 5, 3, 4, 2, 0, 3, 5, 4, 0, 0, 4, 9, 4, 7, 7, 1, 6, 5, 0, 1, 3, 9, 2, 4, 1, 6, 9, 8, 1, 7, 2, 2, 4, 0, 2, 6, 3, 5, 7, 1, 6, 8, 7, 3, 2, 8, 1, 2, 7, 5, 7, 8, 8, 0, 9, 5, 9, 8, 2, 5, 0, 6, 1, 3, 9, 9, 5, 1, 3, 0, 2, 3, 8, 8, 9, 3, 3, 8, 9, 3, 9, 4, 0, 3
Offset: 0
Examples
least x: -0.4676436322290565342035400494771... greatest x: 1.10881188297172762185849535228...
Links
Crossrefs
Cf. A199949.
Programs
-
Mathematica
a = 4; b = -3; c = 4; f[x_] := a*x^2 + b*Cos[x]; g[x_] := c*Sin[x] Plot[{f[x], g[x]}, {x, -1, 2}, {AxesOrigin -> {0, 0}}] r = x /. FindRoot[f[x] == g[x], {x, -.47, -.46}, WorkingPrecision -> 110] RealDigits[r] (* A200303 *) r = x /. FindRoot[f[x] == g[x], {x, 1.1, 1.2}, WorkingPrecision -> 110] RealDigits[r] (* A200304 *)
-
PARI
a=4; b=-3; c=4; solve(x=-1, 0, a*x^2 + b*cos(x) - c*sin(x)) \\ G. C. Greubel, Jul 08 2018
Comments