General::infy
Explicit division by zero will generate a warning message:
1 / 0Division by zero often occurs indirectly within another calculation:
FindRoot[Sin[x] / x == 1 / 2, {x, 0}]The root in this example can be computed by choosing a different starting point:
FindRoot[Sin[x] / x == 1 / 2, {x, 1}]