Alkynes
module organic-chemistry.alkynes where
Imports
open import elementary-number-theory.natural-numbers open import foundation.dependent-pair-types open import foundation.embeddings open import foundation.universe-levels open import organic-chemistry.hydrocarbons open import organic-chemistry.saturated-carbons open import univalent-combinatorics.finite-types
Idea
An n-alkyne is a hydrocarbon equipped with a choice of carbons, each of which has a triple bond.
Definition
n-alkyne : {l1 l2 : Level} → hydrocarbon l1 l2 → ℕ → UU (lsuc l1 ⊔ l2) n-alkyne {l1} {l2} H n = Σ ( UU-Fin l1 n) ( λ carbons → Σ ( type-UU-Fin n carbons ↪ vertex-hydrocarbon H) ( λ embed-carbons → (c : type-UU-Fin n carbons) → has-triple-bond-hydrocarbon H (pr1 embed-carbons c)))