The meaning of a function with multiple clauses is defined by the Haskell standard (section 4.4.3.1) via translation to a lambda and case statement:
fn pat1a pat1b = r1
fn pat2a pat2b = r2
becomes
fn = \a b -> case (a,b) of
(pat1a, pat1b) -> r1
(pat2a, pat2b) -> r2
This is so that the function definition/case statement way of doing things is nice and consistent, and the meaning of each isn't specified redundantly and confusingly.
This translation only really makes sense when each clause has the same number of arguments. Of course, there could be extra rules to fix that, but they'd complicate the translation for little gain, since you probably wouldn't want to define things like that anyway, for your readers' sake.
Maybeor something, or throw some known exception, or use it on anewtypethat's exclusively for non-degenerate functions you treat as members of e.g. the L² Hilbert space (i.e. only defined modulo null sets); that would be safe. Just definingx/0=xad hoc for allFractionalinstances is horribly uncanonical! — Well, it was probably only meant as an example. – leftaroundabout Jan 5 '12 at 18:21safeDivide x 0 = Nothing; safeDivide = Just .: (/)better? :) – Dan Burton Jan 6 '12 at 1:13