Post Reply 
(41C) Method of Successive Substitutions
06-11-2022, 07:11 AM (This post was last modified: 06-18-2022 05:13 PM by Thomas Klemm.)
Post: #5
RE: (41C) Method of Successive Substitutions
From Plot[{x,Pi/Sin[x]},{x,0,10}]:

[Image: attachment.php?aid=10780]

… we can find the next solution with the following branch of the inverse function:

\(
\begin{align}
f^{-1}(x) &= 3 \pi - \sin^{-1}\left(\frac{\pi}{x}\right) \\
\end{align}
\)

Code:
00 { 10-Byte Prgm }
01 PI
02 X<>Y
03 ÷
04 ASIN
05 PI
06 3
07 ×
08 X<>Y
09 -
10 END

If we start with \( 9 \) and iterate the program we get:

9.000000000
9.068203896
9.071004065
9.071118067
9.071122707
9.071122896
9.071122903
9.071122904
9.071122904



Attached File(s) Thumbnail(s)
   
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: (41C) Method of Successive Substitutions - Thomas Klemm - 06-11-2022 07:11 AM



User(s) browsing this thread: 1 Guest(s)