defpred S1[ Nat] means (($1 ^2) - $1) + 1 > 0 ;
A1: for k being Nat st S1[k] holds
S1[k + 1]
proof
let k be Nat; :: thesis: ( S1[k] implies S1[k + 1] )
assume ((k ^2) - k) + 1 > 0 ; :: thesis: S1[k + 1]
then (((k ^2) - k) + 1) + (2 * k) > 0 + 0 ;
hence S1[k + 1] ; :: thesis: verum
end;
A2: S1[ 0 ] ;
for n being Nat holds S1[n] from NAT_1:sch 2(A2, A1);
hence for n being Element of NAT holds ((n ^2) - n) + 1 > 0 ; :: thesis: verum