reserve a,b,c,d,m,x,n,j,k,l for Nat,
  t,u,v,z for Integer,
  f,F for FinSequence of NAT;
reserve p,q,r,s for real number;
reserve a,b,c,d,m,x,n,k,l for Nat,
  t,z for Integer,
  f,F,G for FinSequence of REAL;
reserve q,r,s for real number;
reserve D for set;

theorem Th96: for p be prime Nat holds p divides a implies p divides a|^(n+1)
  proof
    let p be prime Nat;
    assume p divides a; then
    p divides a*a|^n by INT_2:2;
    hence thesis by NEWTON:6;
  end;
