defpred S1[ Nat] means sin . ($1 * PI) = 0 ;
A1: S1[ 0 ] by SIN_COS:30;
A2: for n being Nat st S1[n] holds
S1[n + 1]
proof
let n be Nat; :: thesis: ( S1[n] implies S1[n + 1] )
assume A3: S1[n] ; :: thesis: S1[n + 1]
sin . ((n + 1) * PI) = sin . ((n * PI) + PI)
.= (0 * (cos . PI)) + ((cos . (n * PI)) * (sin . PI)) by SIN_COS:74, A3
.= 0 by SIN_COS:77 ;
hence S1[n + 1] ; :: thesis: verum
end;
for n being Nat holds S1[n] from NAT_1:sch 2(A1, A2);
hence for n being Nat holds sin . (n * PI) = 0 ; :: thesis: verum