I'm learning mathematical logic now and do not understand how to solve boolean equations.
For example, I have an equation like
$$(\bar{z}\implies y)\iff(\bar{z}\lor x )=x\oplus y$$
I'm able to translate it to simple form like:
$$[(\bar{z}\land \bar{y})\land(z\land \bar{x})]\lor[(z\lor y)\land(\bar{z}\lor x )]=(\bar{x}\land y) \lor (x\land\bar{y})$$
and simplify it further. But what should I do next? What is the point of 'solving a boolean equation'? Should I find all possible values of $x,y$ and $z$ that make this equation true? Or should I express $x$ in terms of $y$ and $z$? Or may be something else?