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

%I #12 Jun 24 2018 08:58:11

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

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

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

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

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

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

%e least x: 0.31916558449395611450944828046123878...

%e greatest x: 0.935781954560201690647690356748350...

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

%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, .31, .32}, WorkingPrecision -> 110]

%t RealDigits[r] (* A200006 *)

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

%t RealDigits[r] (* A200007 *)

%o (PARI) a=3; b=1; c=4; solve(x=.5, 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

%E a(89)-a(98) corrected by _G. C. Greubel_, Jun 23 2018

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 August 11 02:58 EDT 2024. Contains 375059 sequences. (Running on oeis4.)