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

%I #9 Jun 25 2018 03:50:28

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

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

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

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

%e least x: -0.677119411697943130184179520098917021...

%e greatest x: 1.6546997822939010711316866818308006354...

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

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

%t RealDigits[r] (* A200095 *)

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

%t RealDigits[r] (* A200096 *)

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

%Y Cf. A199949.

%K nonn,cons

%O 1,2

%A _Clark Kimberling_, Nov 13 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 August 15 08:18 EDT 2024. Contains 375173 sequences. (Running on oeis4.)