@Test(dependsOnMethods = { "parenthesis" })
public void rationals() throws EquationSolveException {
// Equation lineq = (Equation) new ExpressionParser().parse("3/4 x + 5/6 = 5x - 125/3");
Equation lineq = (Equation) new ExpressionParser().parse("3/4*x + 5/6 = 5x - 125/3");
Variable x = lineq.variable();
System.out.printf("%s : %s = ?%n", lineq, x);
Set roots = lineq.solve();
System.out.printf(" %s = %s%n", x, roots);