reserve x,y,a,b,c,p,q for Real;
reserve m,n for Element of NAT;

theorem
  a <> 0 & n is odd & Polynom(a,b,0,x|^ n) = 0 implies x=0 or x = n-root -(b/a)
proof
  assume that
A1: a<>0 and
A2: n is odd and
A3: Polynom(a,b,0,x|^ n) = 0;
  now
    per cases by A1,A3,Th5;
    suppose
      x|^ n = 0;
      hence thesis by PREPOWER:5;
    end;
    suppose
      x|^ n = -(b/a);
      hence thesis by A2,POWER:4;
    end;
  end;
  hence thesis;
end;
