new fatou.gp program
#8
(02/15/2016, 10:12 PM)marraco Wrote: Hey, Sheldonison, why fatou.gp only shows 15 digits?

Is only for aesthetic reasons? I mean, can the other digits be used as valid data?

(07/10/2015, 08:58 PM)sheldonison Wrote: A 512x512 matrix gives results accurate to about 15-16 decimal digits for base(e), \( z\mapsto \exp(z) \). The fatou.gp pari-program uses theta mapping to iteratively solve p(z), to dramatically improve convergence.
^^oh. I see...

Also, yes, the formatting is entirely cosmetic, and has no impact on the computation precision. The computation precision is "\p 28" by default, 28 decimal digits, which normally gives 23-25 decimal digits precision for fatou.gp. But there are bases near the Shell Thron boundary where there's no theta mapping. Without a theta mapping, you only get 15-16 decimal digits of precision in fatou.gp

For bases with imag(b)<0, you could write your own code, as follows. Someday I may support bases<eta with imag(b)<0 where the rotation angle is >Pi, which would be similar to tetcomplex, but it turns out its a harder problem, so I can't get the sexp(z) to work for those upside down bases. So I disabled it. But that's probably not what you're interested in anyway, you just want bases with imag(b)<0, hopefully for bases greater than eta. So here's some quick code which I haven't tested which will probably does exactly what you want. Also, there's a newer version of fatou.gp in your thread that may be of interest to you.

Code:
mysexpinit(b) = {
if (imag(b)<0,
  sexpinit(conj(b));
  conjugatemode=1;
,
  sexpinit(b)
  conjugatemode=0;
);
}
mysexp(z) = {
  if (conjugatemode,
    return(conj(sexp(conj(z))));
  ,
    return(sexp(z));
  );
}
myslog(z) = {
  if (conjugatemode,
    return(conj(slog(conj(z))));
  ,
    return(slog(z));
  );
}
- Sheldon
Reply


Messages In This Thread
new fatou.gp program - by sheldonison - 07/10/2015, 08:58 PM
RE: new fatou.gp program - by sheldonison - 01/10/2016, 12:07 AM
RE: new fatou.gp program - by marraco - 01/13/2016, 07:39 PM
RE: new fatou.gp program - by andydude - 01/14/2016, 12:58 AM
RE: new fatou.gp program - by sheldonison - 01/16/2016, 12:58 AM
RE: new fatou.gp program - by marraco - 02/15/2016, 01:20 AM
RE: new fatou.gp program - by marraco - 02/15/2016, 10:12 PM
RE: new fatou.gp program - by sheldonison - 02/16/2016, 12:48 AM
RE: new fatou.gp program - by Xorter - 12/25/2016, 07:52 PM
RE: new fatou.gp program - by sheldonison - 12/26/2016, 12:14 PM
RE: new fatou.gp program - by Xorter - 01/02/2017, 02:26 PM
RE: new fatou.gp program - by sheldonison - 01/03/2017, 09:24 AM
RE: new fatou.gp program - by sheldonison - 08/08/2017, 12:32 AM
RE: new fatou.gp program - by Ember Edison - 07/22/2019, 11:56 PM
RE: new fatou.gp program - by sheldonison - 07/27/2019, 07:38 AM
RE: new fatou.gp program - by Ember Edison - 07/29/2019, 10:35 AM
RE: new fatou.gp program - by sheldonison - 08/14/2019, 09:57 AM
RE: new fatou.gp program - by Ember Edison - 02/08/2020, 05:37 PM
RE: new fatou.gp program - by sheldonison - 02/11/2020, 04:47 PM
RE: new fatou.gp program - by bo198214 - 07/18/2019, 11:52 AM
RE: new fatou.gp program - by sheldonison - 07/18/2019, 10:58 PM
RE: new fatou.gp program - by JmsNxn - 04/29/2021, 06:32 AM
RE: new fatou.gp program - by bo198214 - 04/29/2021, 11:16 AM
RE: new fatou.gp program - by Catullus - 07/03/2022, 01:55 AM
RE: new fatou.gp program - by JmsNxn - 07/03/2022, 07:14 AM
RE: new fatou.gp program - by Catullus - 07/03/2022, 08:56 AM
RE: new fatou.gp program - by JmsNxn - 07/04/2022, 11:28 PM
RE: new fatou.gp program - by Catullus - 07/05/2022, 01:31 AM
RE: new fatou.gp program - by JmsNxn - 07/05/2022, 01:36 AM
RE: new fatou.gp program - by Catullus - 07/05/2022, 08:20 AM
RE: new fatou.gp program - by JmsNxn - 07/07/2022, 01:09 AM
RE: new fatou.gp program - by Catullus - 07/09/2022, 06:55 AM
RE: new fatou.gp program - by JmsNxn - 07/10/2022, 01:51 AM
RE: new fatou.gp program - by Catullus - 07/10/2022, 02:23 AM
RE: new fatou.gp program - by Pentalogue - 04/10/2026, 02:09 PM
RE: new fatou.gp program - by sheldonison - 04/27/2026, 02:57 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  The beta method program JmsNxn 0 4,227 02/25/2022, 03:05 AM
Last Post: JmsNxn
  My new ABEL_L.gp program JmsNxn 13 23,356 10/06/2021, 07:18 PM
Last Post: Ember Edison
  Test for fatou.gp Ember Edison 3 12,856 09/14/2019, 04:55 AM
Last Post: Ember Edison
  Natural complex tetration program + video MorgothV8 1 9,047 04/27/2018, 07:54 PM
Last Post: MorgothV8
  Mathematica program for tetration based on the series with q-binomial coefficients Vladimir Reshetnikov 0 7,527 01/13/2017, 10:51 PM
Last Post: Vladimir Reshetnikov
  complex base tetration program sheldonison 23 113,042 10/26/2016, 10:02 AM
Last Post: Gottfried
  C++ program for generatin complex map in EPS format MorgothV8 0 7,601 09/17/2014, 04:14 PM
Last Post: MorgothV8



Users browsing this thread: 2 Guest(s)