Multiplying Roots of a Polynomial
Hello - I'm new to SAGE, so trying to get to grips with the basics!
I have a polynomial f=x2((x+1x)2−1). I would like to be able to do to things:
1) See f in the form β(x−α1)(x−α2)(x−α3)(x−α4)
2) Know the value of β(∏iαi)
Using
f.factor
f.roots
Does not give me the linear factorisation, nor can I see a simple way of getting the product of the roots.
In the long term I'm hoping to do this for polynomials of larger degree, so any advice would be great!