\myheading{Another school-level system of equations} \label{eq2_SMT} I've found this somewhere at Facebook: \begin{figure}[H] \centering \includegraphics[scale=0.3]{\CURPATH/equation.jpg} \caption{System of equations} \end{figure} It's that easy to solve it in Z3: \begin{lstlisting} #!/usr/bin/python from z3 import * circle, square, triangle = Ints('circle square triangle') s = Solver() s.add(circle+circle==10) s.add(circle*square+square==12) s.add(circle*square-triangle*circle==circle) print s.check() print s.model() \end{lstlisting} \begin{lstlisting} sat [triangle = 1, square = 2, circle = 5] \end{lstlisting}