spent a lot of time writing this, sorry for bad english, not a native tongue speaker.
the purpose of this game is obtaining 100 as result of various math operations following some rules
1) every digit from 0 to 9 (0 1 2 3 4 5 6 7 8 9) included must be used once and only once in the expression
2) every basic math operation (+ - * /) might be used
3) these math functions might be used:
-power: x^y
-square root: sqrt(x)
-cube root: cbrt(x)
-factorial: x! (for example 4! = 4 * 3 * 2 * 1)
-summation from 1 to x: S(x) (for example S(4) = 4+3+2+1)
4) parenthesis might be used
5) the 0 must be useful to obtain the final result of 100; if the 0 is removed from the expression and the final result doesn't change then the expression is unacceptable (example: expression + 0)
7) you can't juxtaposition (put together without operations/functions in between) digits (example: 78 is incorrect)
---
to value quality of solutions we'll use 3 indexes:
1) Single Occurences (SO): how many different operations/functions are used - the maximum is 9 of course
2) Multiple Occurences (MO): how many times operation/functions are used - the minimum should be 13.
3) Max Repetition (MR): the number of time the most used operation/function is used - the minimum should be 2.
You should maximize SO and minimize MO and MR
For the chart the first index that will be valued is SO, then MO and finally MR.
---
here's an example (it'd be correct if it had 100 as final result):
8 * (7+5) + 0 * (3+1) + (2+9+6) * 4
= 8 * 35 + 0 + 17 * 4
= 280 + 68 = 348
SO: * and + = 2
MO: 3 * and 6 + = 9
MR: + is used 6 times = 6
---
to submit the solution you should calculate your own indexes and final result like i did in the example.