[back] [prev] [next] [index] [root]

 


PolyIsSquarefree

missing shortdoc

Syntax:

b := PolyIsSquarefree(f);

boolean
  b  
polynomial
  f  

Description:

Checks if a given polynomial is square free


Example:


kash> f := Poly(Zx, [1, 0, -4, 0, 1]);
x^4 - 4*x^2 + 1
kash> PolyIsSquarefree(f);
> true


<- back[back] [prev] [next] [index] [root]