English
The negative of the positive rational representation is used to form a negative Float: ofRatDn(r) = Float.neg (ofRatUp(-r)).
Русский
Отрицание положительного приближения дроби даёт отрицательное Float: ofRatDn(r) = Float.neg (ofRatUp(-r)).
LaTeX
$$$\\mathrm{ofRatDn}(r) = \\mathrm{Float.neg}(\\mathrm{ofRatUp}(-r))$$$
Lean4
@[nolint docBlame]
unsafe def ofRatDn (r : ℚ) : Float :=
Float.neg <| ofRatUp (-r)