Repetitions of values in sequences
Content created by Egbert Rijke and Fredrik Bakke.
Created on 2023-04-08.
Last modified on 2024-01-17.
module univalent-combinatorics.repetitions-of-values-sequences where
Imports
Properties
is-decidable-is-ordered-repetition-of-values-ℕ-Fin :
(k : ℕ) (f : ℕ → Fin k) (x : ℕ) →
is-decidable (is-ordered-repetition-of-values-ℕ f x)
is-decidable-is-ordered-repetition-of-values-ℕ-Fin k f x = {!!}
{-
is-decidable-strictly-bounded-Σ-ℕ' x
( λ y → Id (f y) (f x))
( λ y → has-decidable-equality-Fin k (f y) (f x))
-}
is-decidable-is-ordered-repetition-of-values-ℕ-count :
{l : Level} {A : UU l} (e : count A) (f : ℕ → A) (x : ℕ) →
is-decidable (is-ordered-repetition-of-values-ℕ f x)
is-decidable-is-ordered-repetition-of-values-ℕ-count e f x = {!!}
{-
is-decidable-strictly-bounded-Σ-ℕ' x
( λ y → Id (f y) (f x))
( λ y → has-decidable-equality-count e (f y) (f x))
-}
Recent changes
- 2024-01-17. Egbert Rijke. Reformatting commented blocks of code (#1004).
- 2023-05-01. Fredrik Bakke. Refactor 2, the sequel to refactor (#581).
- 2023-04-08. Egbert Rijke. Refactoring elementary number theory files (#546).