Now I have a doubt.
Maybe what you are requested for is to show how to get NOT and AND operators using only Z and W functions.
In other words: suppose you have a logic "gate" (a logic block) with 3 inputs (named C, X, and Y) and 2 outputs (named Z and W).
Your task would be to find a combination of blocks of that type that implement the NOT function, and another that implement the AND function.
To obtain the NOT function is easy. This is one of the possible implementations:
..........------------
input-----|C.........|
..........|.........Z|----output
.......1--|X.........|
..........|.........W|--
.......0--|Y.........|
..........------------
Can this interpretation of your task be the correct one?
Note that if it were possible to obtain both NOT and AND using only block of this type, it would be functionally complete by itself because the set {NOT, AND} has that property.
Regards
Z