Assume we have a polynomial in two variables sage: R.<x,y> = QQ[] sage: p = R.random_element()
that we want to factor into irreducible factors. This can of course be done this way. sage: factor(p) But in the case where p is of high degree, it might not be feasible. Often it will useful to find just a few factors instead of the full factorization. specfically I am looking for factors that are algebraic curves of genus 0 and 1. It is possible to find a partial factorization of polynomials in two variables with Sage? -- You received this message because you are subscribed to the Google Groups "sage-support" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sage-support. For more options, visit https://groups.google.com/d/optout.
