Skip to content
Chris Petersen edited this page Oct 21, 2015 · 1 revision

Returns true if the arguments are coprime.

Parameter Description
m integer
n integer

Example

> (coprime? 10 15) 
#f
> (coprime? 4 9)  
#t
Clone this wiki locally