-
Notifications
You must be signed in to change notification settings - Fork 247
Big Data.(Nat/Integer).Properties
wishlist
#1334
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
⊔-mono-≤
for Integer⊔-mono-≤
and friends for Data.Integer
⊔-mono-≤
and friends for Data.Integer
Data.Integer.Properties
wishlist
Maybe join it with wishes for Nat.Properties ?
There are also possible for Nat(Integer):
? |
Data.Integer.Properties
wishlistData.(Nat/Integer).Properties
wishlist
May be, this one is useful:
|
already exists: Edit: I'll only list the ones that already exist in the big list in the top message Edit: not sure what |
⊔-mono-≤
and friends≤-<-trans
vs.<-transʳ
>⇒≢ : ∀ {m n} → m > n → m ≢ n
m+suc[n]≡suc[m]+n : ∀ m n → m + suc n ≡ suc m + n
(already exists:+-suc
)n≢1+n : ∀ {n} → n ≢ suc n
(already exists:1+n≢n
)1<2+n : ∀ n → 1 < 2 + n
(direct corollary ofm<m+n
)<1⇒≡0 : ∀ {n} → n < 1 → n ≡ 0
n≤1⇒n≡0∨n≡1 : ∀ {n} → n ≤ 1 → n ≡ 0 ⊎ n ≡ 1
m<n⇒0<n : ∀ {m n} → m < n → 0 < n
pred-n≤n : ∀ {n} → pred n ≤ n
m≤n*m : ∀ m {n} → 0 < n → m ≤ n * m
m<n⇒n∸m>0 : {m n : ℕ} → m < n → n ∸ m > 0
(already exists:m<n⇒0<n∸m
)m*[1+n] : ∀ m n → m * (suc n) ≡ m + m * n
(already exists:*-suc
)upTo-n≤n : ∀ n → All (_≤ n) (upTo n)
(stronger:all-upTo : All (_< n) (upTo n)
)length-upFrom : ∀ n c → length (upFrom n c) ≡ suc c
length-from-to : ∀ m n → length (from m to n) ≡ suc (n ∸ m)
The text was updated successfully, but these errors were encountered: