Processing math: 100%

Set of divisors function

Function

definiendum divisors:N+P(N)
definiendum divisors(n):={a | (bN). ab=n}
make this into a set

Code

A related Boolean function is

divides :: Integral a => a -> a -> Bool
divides d n = rem n d == 0

Subset of

Requirements

Link to graph
Log In
Improvements of the human condition