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

%I #9 Jul 08 2018 21:27:25

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

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

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

%N Decimal expansion of greatest x satisfying 3*x^2 - 4*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="/A200282/b200282.txt">Table of n, a(n) for n = 1..10000</a>

%e least x: -0.6615723781879899920628993073289...

%e greatest x: 1.19240455007681565929009549661...

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

%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, -.67, -.66}, WorkingPrecision -> 110]

%t RealDigits[r] (* A200281 *)

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

%t RealDigits[r] (* A200282 *)

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

%Y Cf. A199949.

%K nonn,cons

%O 1,3

%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.)