exact-integer-sqrt -- r7rs Definition
§

Kind
§

procedure;

Implemented by
§

Procedure signature
§

Procedure variants:

Exports
§

Exports recursive
§

Description
§

(exact-integer-sqrt k)

Returns two non-negative exact integers s and r where k = s^2 + r and k < (s+1)^2.

(exact-integer-sqrt 4)  ===>  2 0
(exact-integer-sqrt 5)  ===>  2 1

The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.

Referenced-types
§