Why "5*x*(x+3*y)" is not squarefree? sage: Kxy.<x,y>=QQ[] sage: p=5*x*(x+3*y) sage: p.is_squarefree() False sage: factor(p) (5) * x * (x + 3*y)
Why it is isn't squarefree? -- You received this message because you are subscribed to the Google Groups "sage-support" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sage-support?hl=en.
