(41C) Method of Successive Substitutions
|
06-10-2022, 04:51 PM
Post: #4
|
|||
|
|||
RE: (41C) Method of Successive Substitutions
(06-10-2022 07:20 AM)Thomas Klemm Wrote: The other example is a bit more complicated since ASIN returns a value that doesn't come close to a solution. It may be better to rearrange it so we could visualize the curves. x = pi/sin(x) sin(x) = pi/x RHS ≥ 0 → LHS: x (mod 2*pi) = 0 .. pi LHS ≤ 1 → RHS: x ≥ pi First positive solution: x = 2*pi .. 3*pi >>> x = 6.28 >>> for i in range(10): x += pi/x - sin(x); print x ... 6.78343890905 6.76691767331 6.76608868702 6.76605061437 6.76604887382 6.76604879426 6.76604879063 6.76604879046 6.76604879045 6.76604879045 |
|||
« Next Oldest | Next Newest »
|
Messages In This Thread |
(41C) Method of Successive Substitutions - Eddie W. Shore - 10-04-2020, 04:21 PM
RE: (41C) Method of Successive Substitutions - Albert Chan - 10-06-2020, 12:57 AM
RE: (41C) Method of Successive Substitutions - Thomas Klemm - 06-10-2022, 07:20 AM
RE: (41C) Method of Successive Substitutions - Albert Chan - 06-10-2022 04:51 PM
RE: (41C) Method of Successive Substitutions - Thomas Klemm - 06-11-2022, 07:11 AM
RE: (41C) Method of Successive Substitutions - Thomas Klemm - 06-12-2022, 09:14 PM
|
User(s) browsing this thread: 2 Guest(s)