I thought about this system of equations that I am interested in finding the solution to. I tried to solve it but wasn't able too since it isn't exactly easy to solve. I was wondering the best way to go about solving it without using brute force in a computer program. Is it even possible to come up with a good solution?
z has to be equal to naught, and it is not possible to use only integers.
$ \begin{cases} z*e*r*o = 0 \\ o*n*e = 1 \\ t*w*o = 2 \\ t*h*r*e*e = 3 \\ f*o*u*r = 4 \\ f*i*v*e = 5 \\ s*i*x = 6 \\ s*e*v*e*n = 7 \\ e*i*g*h*t = 8 \\ n*i*n*e = 9 \\ t*e*n = 10 \\ \end{cases} $
Note that there are eleven equations, but fifteen variables ($z$, $e$, $r$, $o$, $n$, $t$, $w$, $h$, $f$, $u$, $i$, $v$, $s$, $x$, and $g$). So there won't be a unique solution - at best, you could hope to find eleven of them in terms of the other four.
But taking the logarithm of each equation will make this doable: for example, $\ln{o * n * e} = \ln 1$ tells you that $\ln{o} + \ln{n} + \ln{e} = 0$. Then you can solve the system of linear equations for the logs of the variables; once you've done that, undo the logarithm to get the value of the variables.