Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
set_of_divisors_function [2014/03/21 11:11]
127.0.0.1 external edit
set_of_divisors_function [2016/05/24 19:19]
nikolaj
Line 5: Line 5:
 | @#FFBB00: definiendum | @#FFBB00: $ \mathrm{divisors}(n):​=\{a\ |\ \exists (b\in\mathbb N).\ a\cdot b=n\}  $ | | @#FFBB00: definiendum | @#FFBB00: $ \mathrm{divisors}(n):​=\{a\ |\ \exists (b\in\mathbb N).\ a\cdot b=n\}  $ |
  
-==== Discussion ====+>make this into a set 
 + 
 +-----
 === Code === === Code ===
 A related Boolean function is A related Boolean function is
 <code haskell> <code haskell>
-divides :: Integer ​-> Integer ​-> Bool+divides :: Integral a => a -> -> Bool
 divides d n = rem n d == 0 divides d n = rem n d == 0
 </​code>​ </​code>​
-==== Parents ====+ 
 +-----
 === Subset of === === Subset of ===
 [[Function]] [[Function]]
 === Requirements === === Requirements ===
-[[Natural ​number]]+[[Natural ​numbers]]
Link to graph
Log In
Improvements of the human condition