Zulip Chat Archive
Stream: mathlib4
Topic: polynomials
Alexandre Rademaker (Mar 13 2025 at 16:43):
For a computer scientist, not a mathematician, what material can you suggest to understand how to work with polynomials in Lean?
In particular, I am trying to formalize a problem that ask to prove that a given polynomial has not positive roots. The terms of this polynomials are taken from a sequence a1, a2,..., an, so I need to construct a polynomial using ∑
and ∏
. I hope this is not too vague.
Jireh Loreaux (Mar 13 2025 at 16:46):
Are you simply trying to construct aₙ • xⁿ + ... + a₁ • x + a₀
?
Yury G. Kudryashov (Mar 14 2025 at 03:11):
Do you need a single-variable polynomial or a multivariable polynomial? Do you need a polynomial as an algebraic object or as a function?
Yury G. Kudryashov (Mar 14 2025 at 03:18):
Can you post the mathematical statement (e.g., in LaTeX) you want to prove?
Last updated: May 02 2025 at 03:31 UTC