Nemocas / Nemo.jl

Julia bindings for the FLINT number theory C library
http://nemocas.github.io/Nemo.jl/
Other
191 stars 58 forks source link

Composition/evaluation of power series #321

Open wbhart opened 7 years ago

wbhart commented 7 years ago

We don't currently have composition or evaluation of power series in any meaningful sense.

After adding these, we probably should use them to provide proper exponentials of power series.

fredrik-johansson commented 7 years ago

After adding these, we probably should use them to provide proper exponentials of power series.

Why? Composition is slower than the exp() function we already have.

wbhart commented 7 years ago

Oh, you are right. I mistakenly thought our exp function only works for exp(x + O(x^n)).

On 12 November 2017 at 19:35, Fredrik Johansson notifications@github.com wrote:

After adding these, we probably should use them to provide proper exponentials of power series.

Why? Composition is slower than the exp() function we already have.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/Nemocas/Nemo.jl/issues/321#issuecomment-343757239, or mute the thread https://github.com/notifications/unsubscribe-auth/AAOzpohJ47R_ncQHvqV-voz0im-CJ3yQks5s1zpVgaJpZM4Qa7zt .

wbhart commented 3 years ago

Composition of power series now seems to exist. There is a more recent ticket asking for evaluation of power series, but it is not obvious what this actually means.