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

assume A1: for n being Element of NAT holds
( s . n > 0 & s . n < 1 ) ; :: thesis: for n being Element of NAT holds
( (Partial_Product s) . n > 0 & (Partial_Product s) . n < 1 )

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