Simplify the function $f(x_2, x_1, x_0) = f(x) = \overline{\overline{x_0} \cdot x_1 + x_2 + x_1}$ such that the final minimized version only contains literals and the operators $"+" \text{and} "\cdot"$.
Here's my answer:
$f(x) = \overline{\overline{x_0} \cdot x_1 + x_2 + x_1}\stackrel{\text{Order of Operations}}{=} \overline{(\overline{x_0} \cdot x_1) + (x_2 + x_1)} \stackrel{De Morgan}= \overline{\overline{x_0} + x_1} \cdot \overline{x_2+x_1} \stackrel{De Morgan} = x_0 \cdot \overline{x_1} \cdot \overline{x_2} \cdot \overline{x_1} \stackrel{Idempotence}= x_0 \cdot \overline{x_1} \cdot \overline{x_2}.$
However, my textbook gives $f(x) = \overline{x_1} \cdot \overline{x_2}$ as the solution. Where's my mistake?