Bill Allombert on Sun, 17 May 2020 15:59:56 +0200


[Date Prev] [Date Next] [Thread Prev] [Thread Next] [Date Index] [Thread Index]

Re: ma branche git


On Sun, May 17, 2020 at 01:24:34PM +0200, Frédéric Chapoton wrote:
> Bonjour,
> 
> voici un essai de publication de ma branche:
> 
> git pull git@gitlab.math.unistra.fr:chapoton/pari.git
> chapoton/polcoeff_polcoef
> 
> ou bien peut-etre via
> 
> https://gitlab.math.unistra.fr/chapoton/pari/-/tree/chapoton/polcoeff_polcoef
> 
> J'ai juste remplacé trois ou quatre occurrences de "polcoeff" (obsolete) par
> "polcoef"

Merci j'ai poussé la branche sur master (87e595901).

> Par ailleurs, je serais preneur de conseils sur l'usage correct de "lindep".

Make sure all the numbers have similar orders of magnitude, i.e. avoid
this:
?  lindep([zetamult([2,2,3]),zetamult([2,3,2]),zetamult([3,2,2]),zeta(7)*2^100])
%36 = [-513287312954585225304414910147,947245740281189247870102556492,780733460572008810439478573835,0]~

One trick I can offer is to add 'exp(1)' to the list and check whether
its coef is zero.

? lindep([exp(1),zetamult([2,2,3]),zetamult([2,3,2]),zetamult([3,2,2]),zeta(7)])
%37 = [0,528,672,352,-151]~


0*exp(1): Probably OK.

Cheers,
Bill