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

%I #11 Jun 24 2018 08:57:07

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

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

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

%N Decimal expansion of least x satisfying 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="/A199963/b199963.txt">Table of n, a(n) for n = 1..10000</a>

%e least x: 1.2397511548307033226630942987091820...

%e greatest x: 2.178843303038438478747351546631120...

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

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

%t RealDigits[r] (* A199963 *)

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

%t RealDigits[r] (* A199964 *)

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

%Y Cf. A199949.

%K nonn,cons

%O 1,2

%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 April 19 17:39 EDT 2024. Contains 371797 sequences. (Running on oeis4.)