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!)
A200117 Decimal expansion of greatest x satisfying 2*x^2 - 2*cos(x) = sin(x). 3

%I #8 Jun 30 2018 07:06:01

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

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

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

%N Decimal expansion of greatest x satisfying 2*x^2 - 2*cos(x) = sin(x).

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

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

%e least x: -0.680326414138679296239631620736419...

%e greatest x: 0.9847126993630673524991380090748...

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

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

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

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

%t RealDigits[r] (* A200116 *)

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

%t RealDigits[r] (* A200117 *)

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

%Y Cf. A199949.

%K nonn,cons

%O 0,1

%A _Clark Kimberling_, Nov 14 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 May 5 16:17 EDT 2024. Contains 372275 sequences. (Running on oeis4.)