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

%I #12 Jul 09 2018 21:23:06

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

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

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

%N Decimal expansion of least x satisfying 4*x^2 - 3*cos(x) = 3*sin(x), negated.

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

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

%e least x: -0.52377415675325572171784049673944...

%e greatest x: 1.01614395672355873379945590129...

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

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

%t RealDigits[r] (* A200297 *)

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

%t RealDigits[r] (* A200298 *)

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

%Y Cf. A199949.

%K nonn,cons

%O 0,1

%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 September 8 18:41 EDT 2024. Contains 375753 sequences. (Running on oeis4.)