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

 


PolyIsZero

Returns true iff the argument is a polynomial and equal to the zero polynomial

Syntax:

b := PolyIsZero(f);

boolean
  b  
  f  

Description:

no detailed description available yet


Example:


kash> f := Poly(Zx, [1, 2, 1, 2]);
x^3 + 2*x^2 + x + 2
kash> PolyIsZero(f);
false
kash> f := Poly(Zx, [0, 0, 0]);
0
kash> PolyIsZero(f);
> true


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