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!)
A200289 Decimal expansion of least x satisfying 4*x^2 - cos(x) = 3*sin(x), negated. 3

%I #9 Jul 08 2018 21:28:15

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

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

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

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

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

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

%e least x: -0.2454630318308242424706176604707384581...

%e greatest x: 0.85425847729971214786694703263536193...

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

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

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

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

%t RealDigits[r] (* A200289 *)

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

%t RealDigits[r] (* A200290 *)

%o (PARI) a=4; b=-1; c=3; solve(x=-1, 0, a*x^2 + b*cos(x) - c*sin(x)) \\ _G. C. Greubel_, Jul 07 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 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)