let x be Real; :: thesis: for n being Element of NAT holds sin (x + (((2 * n) + 1) * PI )) = - (sin x)
let n be Element of NAT ; :: thesis: sin (x + (((2 * n) + 1) * PI )) = - (sin x)
defpred S1[ Element of NAT ] means sin (x + (((2 * $1) + 1) * PI )) = - (sin x);
A1: S1[ 0 ] by SIN_COS:84;
A2: for n being Element of NAT st S1[n] holds
S1[n + 1]
proof
let n be Element of NAT ; :: thesis: ( S1[n] implies S1[n + 1] )
assume A3: sin (x + (((2 * n) + 1) * PI )) = - (sin x) ; :: thesis: S1[n + 1]
sin (x + (((2 * (n + 1)) + 1) * PI )) = sin ((x + (((2 * n) + 1) * PI )) + (2 * PI ))
.= ((sin (x + (((2 * n) + 1) * PI ))) * (cos (2 * PI ))) + ((cos (x + (((2 * n) + 1) * PI ))) * (sin (2 * PI ))) by SIN_COS:80
.= - (sin x) by A3, SIN_COS:82 ;
hence S1[n + 1] ; :: thesis: verum
end;
for n being Element of NAT holds S1[n] from NAT_1:sch 1(A1, A2);
hence sin (x + (((2 * n) + 1) * PI )) = - (sin x) ; :: thesis: verum