theorem
  (b+1)! >= 2|^b
  proof
    per cases by NAT_1:23;
    suppose b >=2;
      hence thesis by Th22;
    end;
    suppose
      b = 0;
      hence thesis by NEWTON:4,13;
    end;
    suppose
      b = 1;
      hence thesis by NEWTON:14;
    end;
  end;
