[sage-support] LLL algorithm in infinity norm

2019-11-01 Thread Santanu Sarkar
Dear all, I want run LLL algorithm in infinity norm (max norm). Is it possible in Sage? My lattice is generated by row vectors of a square matrix. -- You received this message because you are subscribed to the Google Groups "sage-support" group. To unsubscribe from this group and stop

[sage-support] Re: optional packages and binder

2019-11-01 Thread Enrique Artal
Thanks for the help to Alexander and Vincent. It works now (branch sage); I have no excuses to avoid to add more comments to the notebook. Best, Enrique. El sábado, 2 de noviembre de 2019, 0:53:19 (UTC+1), Enrique Artal escribió: > > Yes: >

[sage-support] Re: optional packages and binder

2019-11-01 Thread Enrique Artal
Yes: https://github.com/enriqueartal/GuervilleViuZariskiPairs Thanks for the link, I am going to try. Best wishes, Enrique. El viernes, 1 de noviembre de 2019, 21:39:19 (UTC+1), Alexander Konovalov escribió: > > This is an example by Nicolas M. Thiéry which worked earlier this week: >

[sage-support] symbolic manipulation -- insufficient simplification

2019-11-01 Thread Robert Samal
I observed the following weird behavior of the symbolic engine. sage: x/x 1 sage: x^2/x x sage: (x^2+x)/x (x^2 + x)/x sage: assume(x>0) sage: assume(x,'real') sage: assumptions() [x > 0, x is real] sage: (x^2+x)/x (x^2 + x)/x To clarify: first, I consider the first two simplifications slightly

[sage-support] Re: optional packages and binder

2019-11-01 Thread Alexander Konovalov
This is an example by Nicolas M. Thiéry which worked earlier this week: https://github.com/OpenDreamKit/demo-semigroup-representation-theory/blob/master/Dockerfile Hope it may help. Is your setup somewhere on GitHub? Best wishes Alex On Tuesday, October 29, 2019 at 12:13:34 PM UTC, Enrique