In the sense that "rule" is used in "rule induction", neural networks generally do not find "rules". Here, "rule" means just what it does in everyday use: an IF..THEN statement about the data, like: IF substance = WATER AND temperature is ABOVE BOILING THEN state = GAS.
Most commercial logical learning systems are actually tree-induction systems (CART, See5, Scenario, etc.). True rule induction systems (such as WizWhy) are much less common and their resulting rule sets are not forced into the tree format. Trees cover all possible cases, whereas rules in general may not. Rules may also conflict (two or more rules may apply to a single case, and their THEN sides may not be the same), whereas this is not possible with trees.
Predictor