assertEquals(roots, new FiniteSet(Naturals.getInstance().create(0)));
}
@Test(dependsOnMethods = { "radicalAndLinear" })
public void twoRadicals() throws EquationSolveException {
Equation req = (Equation) new ExpressionParser().parse("sqrt(x) + sqrt(x - 5) = 1");
Variable x = req.variable();
System.out.printf("%s : %s = ?%n", req, x);
Set roots = req.solve();
System.out.printf(" %s = %s%n", x, roots);