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!)
A342204 Decimal expansion of the fixed point of the cosine function when measured in quadrants (1 quadrant = 90 degrees = Pi/2 radians). 0
5, 9, 4, 6, 1, 1, 6, 4, 4, 0, 5, 6, 8, 3, 5, 5, 8, 2, 9, 8, 8, 4, 6, 1, 8, 8, 4, 6, 3, 4, 7, 7, 3, 9, 2, 4, 7, 8, 9, 9, 4, 9, 3, 7, 2, 7, 1, 7, 0, 2, 5, 1, 4, 5, 0, 3, 0, 1, 8, 5, 7, 4, 3, 0, 1, 4, 2, 9, 9, 0, 2, 7, 9, 6, 3, 9, 3, 8, 5, 8, 5, 2, 6, 2, 9, 7, 7, 0, 6, 2, 0, 7, 5, 7, 8, 2, 8, 6, 5, 2 (list; constant; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
This is analogous to A003957, the fixed point of the cosine function in radians and A330119, the fixed point of the cosine function in degrees. Each of the three are the unique real solutions to cos(x)-x=0, in their respective angular units. The quadrant unit offers a nice symmetry, cos(0)=1 and cos(1)=0. Unlike the previous two, the quadrant fixed point is not an attractor of its cosine function. It cannot be found by iterative cosine application. Although not proven, iterative quadrant cosine can be seen empirically to diverge for all initial values.
A graphical solution can be demonstrated by plotting y = cos(x*Pi/2) - x, which shows a single zero near x=0.6.
The bisection method converges for the entire range of the cosine function (-1 to 1). Newton's method also converges with reasonable initial estimate.
LINKS
EXAMPLE
0.594611644056835582988461884634773924789949372717025145030185743014299027963938...
MATHEMATICA
RealDigits[x /. FindRoot[Cos[Pi*x/2] == x, {x, 1}, WorkingPrecision -> 105], 10, 100][[1]] (* Amiram Eldar, Mar 05 2021 *)
PROG
(PARI) \p 100
solve(x=-1, 1, cos(Pi*x/2)-x)
(Maxima) fpprec :100;
bf_find_root(cos(x*%pi/2)-x, x, 0, 1) ;
CROSSREFS
Sequence in context: A153356 A129956 A305865 * A010774 A272610 A350760
KEYWORD
cons,nonn
AUTHOR
Michael Sheridan, Mar 04 2021
STATUS
approved

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 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)