You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Check Z.mod_mul_r.
(* forall a b c : Z,
b <> 0 -> c <> 0 -> Z.rem a (b * c) = Z.rem a b + b * Z.rem (a ÷ b) c *)
Check Z.rem_mul_r.
(* forall a b c : Z,
b <> 0 -> 0 < c -> a mod (b * c) = a mod b + b * ((a / b) mod c) *)
Shouldn't these names be switched to be consistent with Nat.mod_mul_r and N.mod_mul_r, which both have similar conclusions to Z.rem_mul_r?
Coq Version
At least 8.8 - master.
The text was updated successfully, but these errors were encountered:
Description of the problem
Shouldn't these names be switched to be consistent with
Nat.mod_mul_r
andN.mod_mul_r
, which both have similar conclusions toZ.rem_mul_r
?Coq Version
At least 8.8 - master.
The text was updated successfully, but these errors were encountered: