let s be natural Number ; :: thesis: ( s >= 1 implies 0 |^ s = 0 )
A0: s is Nat by TARSKI:1;
defpred S1[ Nat] means 0 |^ $1 = 0 ;
A1: now :: thesis: for n being Nat st n >= 1 & S1[n] holds
S1[n + 1]
let n be Nat; :: thesis: ( n >= 1 & S1[n] implies S1[n + 1] )
assume ( n >= 1 & S1[n] ) ; :: thesis: S1[n + 1]
0 |^ (n + 1) = (0 |^ n) * 0 by Th6
.= 0 ;
hence S1[n + 1] ; :: thesis: verum
end;
A2: S1[1] ;
for n being Nat st n >= 1 holds
S1[n] from NAT_1:sch 8(A2, A1);
hence ( s >= 1 implies 0 |^ s = 0 ) by A0; :: thesis: verum