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