Answer:
see attachments
Step-by-step explanation:
A Karnaugh map for the output is shown in the first attachment. The labeled and shaded squares represent the cases where Y = HIGH. The associated logic can be simplified to
Y = A3 xor A0
when the don't care at 1110 gives an output of HIGH.
__
The second attachment shows a logic diagram using a 4:1 multiplexer to do the decoding. A simple XOR gate would serve as well. If AND-OR-INV logic is required, that would be ...
Y = Or(And(A3, Inv(A0)), And(A0, Inv(A3)))