defpred S1[ Nat] means ( P1[$1] & P1[$1 + 1] );
A4: S1[ 0 ] by A1, A2;
A5: for k being Nat st S1[k] holds
S1[k + 1]
proof
let k be Nat; :: thesis: ( S1[k] implies S1[k + 1] )
assume A6: S1[k] ; :: thesis: S1[k + 1]
k + 2 = (k + 1) + 1 ;
hence S1[k + 1] by A3, A6; :: thesis: verum
end;
A7: for k being Nat holds S1[k] from NAT_1:sch 2(A4, A5);
let k be Nat; :: thesis: P1[k]
thus P1[k] by A7; :: thesis: verum