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

%I #15 Jun 24 2018 08:57:44

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

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

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

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

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

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

%e least x: 0.45041223638324913376478190783839778...

%e greatest x: 0.989450014493949167489788332695714...

%t a = 2; 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, 2}, {AxesOrigin -> {0, 0}}]

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

%t RealDigits[r] (* A199967 *)

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

%t RealDigits[r] (* A200003 *)

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

%Y Cf. A199949.

%K nonn,cons

%O 0,1

%A _Clark Kimberling_, Nov 12 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 March 28 18:04 EDT 2024. Contains 371254 sequences. (Running on oeis4.)