let s1, s2 be boolean-valued Function; :: thesis: ( dom s1 = (dom p) /\ (dom q) & ( for x being object st x in dom s1 holds
s1 . x = (p . x) 'or' (q . x) ) & dom s2 = (dom p) /\ (dom q) & ( for x being object st x in dom s2 holds
s2 . x = (p . x) 'or' (q . x) ) implies s1 = s2 )

assume that
A3: dom s1 = (dom p) /\ (dom q) and
A4: for x being object st x in dom s1 holds
s1 . x = (p . x) 'or' (q . x) and
A5: dom s2 = (dom p) /\ (dom q) and
A6: for x being object st x in dom s2 holds
s2 . x = (p . x) 'or' (q . x) ; :: thesis: s1 = s2
for x being object st x in dom s1 holds
s1 . x = s2 . x
proof
let x be object ; :: thesis: ( x in dom s1 implies s1 . x = s2 . x )
assume A7: x in dom s1 ; :: thesis: s1 . x = s2 . x
then s1 . x = (p . x) 'or' (q . x) by A4;
hence s1 . x = s2 . x by A3, A5, A6, A7; :: thesis: verum
end;
hence s1 = s2 by A3, A5, FUNCT_1:2; :: thesis: verum