login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A200237 Decimal expansion of least x satisfying 3*x^2 - 3*cos(x) = sin(x), negated. 3

%I #9 Jul 06 2018 03:03:19

%S 7,2,5,7,7,3,9,3,1,3,7,5,0,9,8,1,4,8,9,5,1,8,1,3,2,6,4,6,5,2,3,1,3,6,

%T 2,0,5,0,7,1,0,0,3,6,3,9,2,4,3,7,9,1,2,8,7,9,4,2,5,4,9,7,2,3,0,8,5,0,

%U 1,2,8,3,0,9,4,0,3,4,8,6,7,3,5,7,4,1,1,8,6,2,0,6,8,6,3,3,7,9,2

%N Decimal expansion of least x satisfying 3*x^2 - 3*cos(x) = sin(x), negated.

%C See A199949 for a guide to related sequences. The Mathematica program includes a graph.

%H G. C. Greubel, <a href="/A200237/b200237.txt">Table of n, a(n) for n = 0..10000</a>

%e least x: -0.725773931375098148951813264652313...

%e greatest x: 0.9300571100924892467882468144056...

%t a = 3; b = -3; c = 1;

%t f[x_] := a*x^2 + b*Cos[x]; g[x_] := c*Sin[x]

%t Plot[{f[x], g[x]}, {x, -2, 2}, {AxesOrigin -> {0, 0}}]

%t r = x /. FindRoot[f[x] == g[x], {x, -.73, -.72}, WorkingPrecision -> 110]

%t RealDigits[r] (* A200237 *)

%t r = x /. FindRoot[f[x] == g[x], {x, .93, .94}, WorkingPrecision -> 110]

%t RealDigits[r] (* A200238 *)

%o (PARI) a=3; b=-3; c=1; solve(x=-1, 0, a*x^2 + b*cos(x) - c*sin(x)) \\ _G. C. Greubel_, Jul 05 2018

%Y Cf. A199949.

%K nonn,cons

%O 0,1

%A _Clark Kimberling_, Nov 15 2011

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)