:: BVFUNC26 semantic presentation  Show TPTP formulae Show IDV graph for whole article:: Showing IDV graph ... (Click the Palm Trees again to close it)

definition
let p, q be boolean-valued Function;
func p 'nand' q -> Function means :Def1: :: BVFUNC26:def 1
( dom it = (dom p) /\ (dom q) & ( for x being set st x in dom it holds
it . x = (p . x) 'nand' (q . x) ) );
existence
ex b1 being Function st
( dom b1 = (dom p) /\ (dom q) & ( for x being set st x in dom b1 holds
b1 . x = (p . x) 'nand' (q . x) ) )
proof end;
uniqueness
for b1, b2 being Function st dom b1 = (dom p) /\ (dom q) & ( for x being set st x in dom b1 holds
b1 . x = (p . x) 'nand' (q . x) ) & dom b2 = (dom p) /\ (dom q) & ( for x being set st x in dom b2 holds
b2 . x = (p . x) 'nand' (q . x) ) holds
b1 = b2
proof end;
commutativity
for b1 being Function
for p, q being boolean-valued Function st dom b1 = (dom p) /\ (dom q) & ( for x being set st x in dom b1 holds
b1 . x = (p . x) 'nand' (q . x) ) holds
( dom b1 = (dom q) /\ (dom p) & ( for x being set st x in dom b1 holds
b1 . x = (q . x) 'nand' (p . x) ) )
;
func p 'nor' q -> Function means :Def2: :: BVFUNC26:def 2
( dom it = (dom p) /\ (dom q) & ( for x being set st x in dom it holds
it . x = (p . x) 'nor' (q . x) ) );
existence
ex b1 being Function st
( dom b1 = (dom p) /\ (dom q) & ( for x being set st x in dom b1 holds
b1 . x = (p . x) 'nor' (q . x) ) )
proof end;
uniqueness
for b1, b2 being Function st dom b1 = (dom p) /\ (dom q) & ( for x being set st x in dom b1 holds
b1 . x = (p . x) 'nor' (q . x) ) & dom b2 = (dom p) /\ (dom q) & ( for x being set st x in dom b2 holds
b2 . x = (p . x) 'nor' (q . x) ) holds
b1 = b2
proof end;
commutativity
for b1 being Function
for p, q being boolean-valued Function st dom b1 = (dom p) /\ (dom q) & ( for x being set st x in dom b1 holds
b1 . x = (p . x) 'nor' (q . x) ) holds
( dom b1 = (dom q) /\ (dom p) & ( for x being set st x in dom b1 holds
b1 . x = (q . x) 'nor' (p . x) ) )
;
end;

:: deftheorem Def1 defines 'nand' BVFUNC26:def 1 :
for p, q being boolean-valued Function
for b3 being Function holds
( b3 = p 'nand' q iff ( dom b3 = (dom p) /\ (dom q) & ( for x being set st x in dom b3 holds
b3 . x = (p . x) 'nand' (q . x) ) ) );

:: deftheorem Def2 defines 'nor' BVFUNC26:def 2 :
for p, q being boolean-valued Function
for b3 being Function holds
( b3 = p 'nor' q iff ( dom b3 = (dom p) /\ (dom q) & ( for x being set st x in dom b3 holds
b3 . x = (p . x) 'nor' (q . x) ) ) );

registration
let p, q be boolean-valued Function;
cluster p 'nand' q -> boolean-valued ;
coherence
p 'nand' q is boolean-valued
proof end;
cluster p 'nor' q -> boolean-valued ;
coherence
p 'nor' q is boolean-valued
proof end;
end;

definition
let A be non empty set ;
let p, q be Element of Funcs A,BOOLEAN ;
:: original: 'nand'
redefine func p 'nand' q -> Element of Funcs A,BOOLEAN means :Def3: :: BVFUNC26:def 3
for x being Element of A holds it . x = (p . x) 'nand' (q . x);
coherence
p 'nand' q is Element of Funcs A,BOOLEAN
proof end;
compatibility
for b1 being Element of Funcs A,BOOLEAN holds
( b1 = p 'nand' q iff for x being Element of A holds b1 . x = (p . x) 'nand' (q . x) )
proof end;
:: original: 'nor'
redefine func p 'nor' q -> Element of Funcs A,BOOLEAN means :Def4: :: BVFUNC26:def 4
for x being Element of A holds it . x = (p . x) 'nor' (q . x);
coherence
p 'nor' q is Element of Funcs A,BOOLEAN
proof end;
compatibility
for b1 being Element of Funcs A,BOOLEAN holds
( b1 = p 'nor' q iff for x being Element of A holds b1 . x = (p . x) 'nor' (q . x) )
proof end;
end;

:: deftheorem Def3 defines 'nand' BVFUNC26:def 3 :
for A being non empty set
for p, q, b4 being Element of Funcs A,BOOLEAN holds
( b4 = p 'nand' q iff for x being Element of A holds b4 . x = (p . x) 'nand' (q . x) );

:: deftheorem Def4 defines 'nor' BVFUNC26:def 4 :
for A being non empty set
for p, q, b4 being Element of Funcs A,BOOLEAN holds
( b4 = p 'nor' q iff for x being Element of A holds b4 . x = (p . x) 'nor' (q . x) );

definition
let Y be non empty set ;
let a, b be Element of BVF Y;
:: original: 'nand'
redefine func a 'nand' b -> Element of BVF Y;
coherence
a 'nand' b is Element of BVF Y
proof end;
:: original: 'nor'
redefine func a 'nor' b -> Element of BVF Y;
coherence
a 'nor' b is Element of BVF Y
proof end;
end;

theorem Th1: :: BVFUNC26:1  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b being Element of Funcs Y,BOOLEAN holds a 'nand' b = 'not' (a '&' b)
proof end;

theorem Th2: :: BVFUNC26:2  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b being Element of Funcs Y,BOOLEAN holds a 'nor' b = 'not' (a 'or' b)
proof end;

theorem Th3: :: BVFUNC26:3  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a being Element of Funcs Y,BOOLEAN holds (I_el Y) 'nand' a = 'not' a
proof end;

theorem Th4: :: BVFUNC26:4  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a being Element of Funcs Y,BOOLEAN holds (O_el Y) 'nand' a = I_el Y
proof end;

theorem :: BVFUNC26:5  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set holds
( (O_el Y) 'nand' (O_el Y) = I_el Y & (O_el Y) 'nand' (I_el Y) = I_el Y & (I_el Y) 'nand' (I_el Y) = O_el Y )
proof end;

theorem :: BVFUNC26:6  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a being Element of Funcs Y,BOOLEAN holds
( a 'nand' a = 'not' a & 'not' (a 'nand' a) = a )
proof end;

theorem :: BVFUNC26:7  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b being Element of Funcs Y,BOOLEAN holds 'not' (a 'nand' b) = a '&' b
proof end;

theorem :: BVFUNC26:8  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a being Element of Funcs Y,BOOLEAN holds
( a 'nand' ('not' a) = I_el Y & 'not' (a 'nand' ('not' a)) = O_el Y )
proof end;

theorem Th9: :: BVFUNC26:9  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b, c being Element of Funcs Y,BOOLEAN holds a 'nand' (b '&' c) = 'not' ((a '&' b) '&' c)
proof end;

theorem Th10: :: BVFUNC26:10  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b, c being Element of Funcs Y,BOOLEAN holds a 'nand' (b '&' c) = (a '&' b) 'nand' c
proof end;

theorem Th11: :: BVFUNC26:11  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b, c being Element of Funcs Y,BOOLEAN holds a 'nand' (b 'or' c) = ('not' (a '&' b)) '&' ('not' (a '&' c))
proof end;

theorem :: BVFUNC26:12  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b, c being Element of Funcs Y,BOOLEAN holds a 'nand' (b 'xor' c) = (a '&' b) 'eqv' (a '&' c)
proof end;

theorem :: BVFUNC26:13  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b, c being Element of Funcs Y,BOOLEAN holds
( a 'nand' (b 'nand' c) = ('not' a) 'or' (b '&' c) & a 'nand' (b 'nand' c) = a 'imp' (b '&' c) )
proof end;

theorem :: BVFUNC26:14  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b, c being Element of Funcs Y,BOOLEAN holds
( a 'nand' (b 'nor' c) = (('not' a) 'or' b) 'or' c & a 'nand' (b 'nor' c) = a 'imp' (b 'or' c) )
proof end;

theorem :: BVFUNC26:15  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b, c being Element of Funcs Y,BOOLEAN holds a 'nand' (b 'eqv' c) = a 'imp' (b 'xor' c)
proof end;

theorem :: BVFUNC26:16  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b being Element of Funcs Y,BOOLEAN holds a 'nand' (a '&' b) = a 'nand' b
proof end;

theorem :: BVFUNC26:17  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b being Element of Funcs Y,BOOLEAN holds a 'nand' (a 'or' b) = ('not' a) '&' ('not' (a '&' b))
proof end;

theorem :: BVFUNC26:18  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b being Element of Funcs Y,BOOLEAN holds a 'nand' (a 'eqv' b) = a 'imp' (a 'xor' b)
proof end;

theorem :: BVFUNC26:19  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b being Element of Funcs Y,BOOLEAN holds
( a 'nand' (a 'nand' b) = ('not' a) 'or' b & a 'nand' (a 'nand' b) = a 'imp' b )
proof end;

theorem :: BVFUNC26:20  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b being Element of Funcs Y,BOOLEAN holds a 'nand' (a 'nor' b) = I_el Y
proof end;

theorem :: BVFUNC26:21  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b being Element of Funcs Y,BOOLEAN holds a 'nand' (a 'eqv' b) = ('not' a) 'or' ('not' b)
proof end;

theorem :: BVFUNC26:22  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b being Element of Funcs Y,BOOLEAN holds a '&' b = (a 'nand' b) 'nand' (a 'nand' b)
proof end;

theorem :: BVFUNC26:23  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b, c being Element of Funcs Y,BOOLEAN holds (a 'nand' b) 'nand' (a 'nand' c) = a '&' (b 'or' c)
proof end;

theorem Th24: :: BVFUNC26:24  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b, c being Element of Funcs Y,BOOLEAN holds a 'nand' (b 'imp' c) = (('not' a) 'or' b) '&' ('not' (a '&' c))
proof end;

theorem :: BVFUNC26:25  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b being Element of Funcs Y,BOOLEAN holds a 'nand' (a 'imp' b) = 'not' (a '&' b)
proof end;

theorem Th26: :: BVFUNC26:26  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a being Element of Funcs Y,BOOLEAN holds (I_el Y) 'nor' a = O_el Y
proof end;

theorem Th27: :: BVFUNC26:27  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a being Element of Funcs Y,BOOLEAN holds (O_el Y) 'nor' a = 'not' a
proof end;

theorem :: BVFUNC26:28  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set holds
( (O_el Y) 'nor' (O_el Y) = I_el Y & (O_el Y) 'nor' (I_el Y) = O_el Y & (I_el Y) 'nor' (I_el Y) = O_el Y )
proof end;

theorem :: BVFUNC26:29  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a being Element of Funcs Y,BOOLEAN holds
( a 'nor' a = 'not' a & 'not' (a 'nor' a) = a )
proof end;

theorem :: BVFUNC26:30  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b being Element of Funcs Y,BOOLEAN holds 'not' (a 'nor' b) = a 'or' b
proof end;

theorem :: BVFUNC26:31  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a being Element of Funcs Y,BOOLEAN holds
( a 'nor' ('not' a) = O_el Y & 'not' (a 'nor' ('not' a)) = I_el Y )
proof end;

theorem :: BVFUNC26:32  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b being Element of Funcs Y,BOOLEAN holds ('not' a) '&' (a 'xor' b) = ('not' a) '&' b
proof end;

theorem Th33: :: BVFUNC26:33  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b, c being Element of Funcs Y,BOOLEAN holds a 'nor' (b '&' c) = ('not' (a 'or' b)) 'or' ('not' (a 'or' c))
proof end;

theorem Th34: :: BVFUNC26:34  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b, c being Element of Funcs Y,BOOLEAN holds a 'nor' (b 'or' c) = 'not' ((a 'or' b) 'or' c)
proof end;

theorem Th35: :: BVFUNC26:35  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b, c being Element of Funcs Y,BOOLEAN holds a 'nor' (b 'eqv' c) = ('not' a) '&' (b 'xor' c)
proof end;

theorem Th36: :: BVFUNC26:36  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b, c being Element of Funcs Y,BOOLEAN holds a 'nor' (b 'imp' c) = (('not' a) '&' b) '&' ('not' c)
proof end;

theorem Th37: :: BVFUNC26:37  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b, c being Element of Funcs Y,BOOLEAN holds a 'nor' (b 'nand' c) = (('not' a) '&' b) '&' c
proof end;

theorem Th38: :: BVFUNC26:38  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b, c being Element of Funcs Y,BOOLEAN holds a 'nor' (b 'nor' c) = ('not' a) '&' (b 'or' c)
proof end;

theorem :: BVFUNC26:39  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b being Element of Funcs Y,BOOLEAN holds a 'nor' (a '&' b) = 'not' (a '&' (a 'or' b))
proof end;

theorem :: BVFUNC26:40  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b being Element of Funcs Y,BOOLEAN holds a 'nor' (a 'or' b) = 'not' (a 'or' b)
proof end;

theorem :: BVFUNC26:41  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b being Element of Funcs Y,BOOLEAN holds a 'nor' (a 'eqv' b) = ('not' a) '&' b
proof end;

theorem :: BVFUNC26:42  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b being Element of Funcs Y,BOOLEAN holds a 'nor' (a 'imp' b) = O_el Y
proof end;

theorem :: BVFUNC26:43  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b being Element of Funcs Y,BOOLEAN holds a 'nor' (a 'nand' b) = O_el Y
proof end;

theorem :: BVFUNC26:44  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b being Element of Funcs Y,BOOLEAN holds a 'nor' (a 'nor' b) = ('not' a) '&' b
proof end;

theorem :: BVFUNC26:45  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set holds (O_el Y) 'eqv' (O_el Y) = I_el Y
proof end;

theorem :: BVFUNC26:46  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set holds (O_el Y) 'eqv' (I_el Y) = O_el Y
proof end;

theorem :: BVFUNC26:47  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set holds (I_el Y) 'eqv' (I_el Y) = I_el Y
proof end;

theorem :: BVFUNC26:48  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a being Element of Funcs Y,BOOLEAN holds
( a 'eqv' a = I_el Y & 'not' (a 'eqv' a) = O_el Y )
proof end;

theorem :: BVFUNC26:49  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b being Element of Funcs Y,BOOLEAN holds a 'eqv' (a 'or' b) = a 'or' ('not' b)
proof end;

theorem Th50: :: BVFUNC26:50  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b, c being Element of Funcs Y,BOOLEAN holds a '&' (b 'nand' c) = (a '&' ('not' b)) 'or' (a '&' ('not' c))
proof end;

theorem Th51: :: BVFUNC26:51  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b, c being Element of Funcs Y,BOOLEAN holds a 'or' (b 'nand' c) = (a 'or' ('not' b)) 'or' ('not' c)
proof end;

theorem Th52: :: BVFUNC26:52  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b, c being Element of Funcs Y,BOOLEAN holds a 'xor' (b 'nand' c) = (('not' a) '&' ('not' (b '&' c))) 'or' ((a '&' b) '&' c)
proof end;

theorem Th53: :: BVFUNC26:53  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b, c being Element of Funcs Y,BOOLEAN holds a 'eqv' (b 'nand' c) = (a '&' ('not' (b '&' c))) 'or' ((('not' a) '&' b) '&' c)
proof end;

theorem Th54: :: BVFUNC26:54  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b, c being Element of Funcs Y,BOOLEAN holds a 'imp' (b 'nand' c) = 'not' ((a '&' b) '&' c)
proof end;

theorem Th55: :: BVFUNC26:55  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b, c being Element of Funcs Y,BOOLEAN holds a 'nor' (b 'nand' c) = 'not' ((a 'or' ('not' b)) 'or' ('not' c))
proof end;

theorem :: BVFUNC26:56  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b being Element of Funcs Y,BOOLEAN holds a '&' (a 'nand' b) = a '&' ('not' b)
proof end;

theorem :: BVFUNC26:57  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b being Element of Funcs Y,BOOLEAN holds a 'or' (a 'nand' b) = I_el Y
proof end;

theorem :: BVFUNC26:58  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b being Element of Funcs Y,BOOLEAN holds a 'xor' (a 'nand' b) = ('not' a) 'or' b
proof end;

theorem :: BVFUNC26:59  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b being Element of Funcs Y,BOOLEAN holds a 'eqv' (a 'nand' b) = a '&' ('not' b)
proof end;

theorem :: BVFUNC26:60  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b being Element of Funcs Y,BOOLEAN holds a 'imp' (a 'nand' b) = 'not' (a '&' b)
proof end;

theorem :: BVFUNC26:61  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b being Element of Funcs Y,BOOLEAN holds a 'nor' (a 'nand' b) = O_el Y
proof end;

theorem Th62: :: BVFUNC26:62  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b, c being Element of Funcs Y,BOOLEAN holds a '&' (b 'nor' c) = (a '&' ('not' b)) '&' ('not' c)
proof end;

theorem Th63: :: BVFUNC26:63  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b, c being Element of Funcs Y,BOOLEAN holds a 'or' (b 'nor' c) = (a 'or' ('not' b)) '&' (a 'or' ('not' c))
proof end;

theorem Th64: :: BVFUNC26:64  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b, c being Element of Funcs Y,BOOLEAN holds a 'xor' (b 'nor' c) = (a 'or' ('not' (b 'or' c))) '&' ((('not' a) 'or' b) 'or' c)
proof end;

theorem Th65: :: BVFUNC26:65  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b, c being Element of Funcs Y,BOOLEAN holds a 'eqv' (b 'nor' c) = ((a 'or' b) 'or' c) '&' (('not' a) 'or' ('not' (b 'or' c)))
proof end;

theorem Th66: :: BVFUNC26:66  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b, c being Element of Funcs Y,BOOLEAN holds a 'imp' (b 'nor' c) = 'not' (a '&' (b 'or' c))
proof end;

theorem Th67: :: BVFUNC26:67  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b, c being Element of Funcs Y,BOOLEAN holds a 'nand' (b 'nor' c) = (('not' a) 'or' b) 'or' c
proof end;

theorem :: BVFUNC26:68  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b being Element of Funcs Y,BOOLEAN holds a '&' (a 'nor' b) = O_el Y
proof end;

theorem :: BVFUNC26:69  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b being Element of Funcs Y,BOOLEAN holds a 'or' (a 'nor' b) = a 'or' ('not' b)
proof end;

theorem :: BVFUNC26:70  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b being Element of Funcs Y,BOOLEAN holds a 'xor' (a 'nor' b) = a 'or' ('not' b)
proof end;

theorem :: BVFUNC26:71  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b being Element of Funcs Y,BOOLEAN holds a 'eqv' (a 'nor' b) = ('not' a) '&' b
proof end;

theorem :: BVFUNC26:72  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b being Element of Funcs Y,BOOLEAN holds a 'imp' (a 'nor' b) = 'not' (a 'or' (a '&' b))
proof end;

theorem :: BVFUNC26:73  Show TPTP formulae Show IDV graph:: Showing IDV graph ... (Click the Palm Tree again to close it) Show TPTP problem
for Y being non empty set
for a, b being Element of Funcs Y,BOOLEAN holds a 'nand' (a 'nor' b) = I_el Y
proof end;