{-# OPTIONS --cubical-compatible #-}
module Padova2025.Explorations.Uncountability.Lawvere
{A X : Set} (f : A β (A β X)) (g : X β X) where
Lawvereβs fixed point theorem
open import Padova2025.ProvingBasics.Equality.Base
open import Padova2025.ProvingBasics.Equality.General
open import Padova2025.ProvingBasics.Connectives.Existential
canary : A β X
canary = {!!}
fix : β[ a ] canary β f a β β[ x ] g x β‘ x
fix = {!!}
fixβ : ((h : A β X) β β[ a ] h β f a) β β[ x ] g x β‘ x
fixβ = {!!}