let n be Element of NAT ; :: thesis: for s being Real_Sequence st ( for n being Element of NAT holds s . n > 0 ) holds
(Partial_Product s) . n > 0

let s be Real_Sequence; :: thesis: ( ( for n being Element of NAT holds s . n > 0 ) implies (Partial_Product s) . n > 0 )
defpred S1[ Element of NAT ] means (Partial_Product s) . $1 > 0 ;
assume A1: for n being Element of NAT holds s . n > 0 ; :: thesis: (Partial_Product s) . n > 0
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: (Partial_Product s) . n > 0 ; :: thesis: S1[n + 1]
( (Partial_Product s) . (n + 1) = ((Partial_Product s) . n) * (s . (n + 1)) & s . (n + 1) > 0 ) by A1, Def1;
hence S1[n + 1] by A3; :: thesis: verum
end;
s . 0 > 0 by A1;
then A4: S1[ 0 ] by Def1;
for n being Element of NAT holds S1[n] from NAT_1:sch 1(A4, A2);
hence (Partial_Product s) . n > 0 ; :: thesis: verum