Cut the Cards
|
08-26-2020, 02:13 PM
(This post was last modified: 08-31-2020 08:31 PM by Albert Chan.)
Post: #13
|
|||
|
|||
RE: Cut the Cards
I added a tiny correction to compensate errors for smaller H.
HP50g H-1 : « 1. Psi + EXP DUPDUP SQ 24. * 2.7 + / - .5 - » Code: from mpmath import exp, euler, harmonic, psi >>> test(range(10) + range(10,60,10)) n err(f1) err(f2) err(f3) 0 0.0031607566 0.0127518672 -0.0067666262 1 -0.0003177730 0.0010957186 -0.0001620997 2 -0.0002588484 0.0002719596 -0.0000171164 3 -0.0001712995 0.0001037256 -0.0000035307 4 -0.0001178786 0.0000497922 -0.0000010529 5 -0.0000852046 0.0000275594 -0.0000003957 6 -0.0000641850 0.0000167992 -0.0000001742 7 -0.0000499820 0.0000109785 -0.0000000859 8 -0.0000399758 0.0000075616 -0.0000000463 9 -0.0000326776 0.0000054263 -0.0000000266 10 -0.0000271983 0.0000040243 -0.0000000162 20 -0.0000076840 0.0000005432 -0.0000000006 30 -0.0000035570 0.0000001651 -0.0000000001 40 -0.0000020419 0.0000000705 -0.0000000000 50 -0.0000013228 0.0000000364 -0.0000000000 If needed, we could apply Newton's method to get better estimate. >>> h = harmonic(10) # h = 2.9289682539682538 >>> x = f3(exp(h-euler)) # x = 10.000000016205583 >>> x - (harmonic(x) - h) / psi(1, x+1) mpf('10.0') |
|||
« Next Oldest | Next Newest »
|
Messages In This Thread |
Cut the Cards - David Hayden - 07-30-2020, 08:00 PM
RE: Cut the Cards - Albert Chan - 07-30-2020, 08:58 PM
RE: Cut the Cards - Albert Chan - 08-21-2020, 11:00 PM
RE: Cut the Cards - Jim Horn - 07-30-2020, 09:49 PM
RE: Cut the Cards - John Keith - 07-31-2020, 12:24 AM
RE: Cut the Cards - Gerson W. Barbosa - 08-24-2020, 01:57 PM
RE: Cut the Cards - Albert Chan - 08-25-2020, 06:14 PM
RE: Cut the Cards - Albert Chan - 07-30-2020, 10:21 PM
RE: Cut the Cards - pinkman - 08-24-2020, 09:49 PM
RE: Cut the Cards - Gerson W. Barbosa - 08-25-2020, 11:41 PM
RE: Cut the Cards - Albert Chan - 08-26-2020, 03:06 AM
RE: Cut the Cards - Gerson W. Barbosa - 08-26-2020, 08:23 AM
RE: Cut the Cards - Albert Chan - 08-26-2020 02:13 PM
RE: Cut the Cards - Gerson W. Barbosa - 08-26-2020, 06:13 PM
RE: Cut the Cards - Gerson W. Barbosa - 08-27-2020, 10:07 PM
RE: Cut the Cards - Albert Chan - 08-28-2020, 09:26 PM
RE: Cut the Cards - Albert Chan - 08-29-2020, 04:02 PM
RE: Cut the Cards - Gerson W. Barbosa - 08-28-2020, 11:39 PM
RE: Cut the Cards - Albert Chan - 06-23-2021, 12:08 AM
|
User(s) browsing this thread: 6 Guest(s)