我的工作,需要環的使用理論區域設置的一個具體的例子,所以我輸入以下理論:https://www.isa-afp.org/browser_info/devel/AFP/Group-Ring-Module/使用定義產生伊莎貝爾
現在,我已經定義了一組X我想定義一個操作來使它成爲一個環,就像導入理論的「環」一樣。
如何定義帶載體X的環並將其識別爲區域設置「環」的實例?
record 'a Group = "'a carrier" +
top :: "['a, 'a ] ⇒ 'a" (infixl "⋅ı" 70)
iop :: "'a ⇒ 'a" ("ρı _" [81] 80)
one :: "'a" ("ı")
locale Group =
fixes G (structure)
assumes top_closed: "top G ∈ carrier G → carrier G → carrier G"
and tassoc : "⟦a ∈ carrier G; b ∈ carrier G; c ∈ carrier G⟧ ⟹
(a ⋅ b) ⋅ c = a ⋅ (b ⋅ c)"
and iop_closed:"iop G ∈ carrier G → carrier G"
and l_i :"a ∈ carrier G ⟹ (ρ a) ⋅ a = "
and unit_closed: " ∈ carrier G"
and l_unit:"a ∈ carrier G ⟹ ⋅ a = a"
另一個可能的問題我:
語言環境「環」通過延長「aGroup」,而這又是通過延長「集團」,這是在理論上「Algebra2.thy」聲明宣佈預測:如果我沒有弄錯,承運人必須是'一組'的類型,但是我的集合X是類型的('集合\時間'a)集合集合。有沒有解決方法?
編輯:爲了更好地制定評論中的順序問題,這裏有一些我做了什麼。所有下面是一個語言環境預層,用於固定的範圍內(除其他外):
T :: 'a set set and
objectsmap :: "'a set ⇒ ('a, 'm) Ring_scheme" and
restrictionsmap:: "('a set ×'a set) ⇒ ('a ⇒ 'a)"
我接着介紹了以下內容:
definition prestalk :: "'a ⇒('a set × 'a) set" where
"prestalk x = { (U,s). (U ∈ T) ∧ x ∈U ∧ (s ∈ carrier (objectsmap U))}"
definition stalkrel :: "'a ⇒ (('a set × 'a) × ('a set × 'a)) set" where
"stalkrel x = {((U,s), (V,t)). (U,s) ∈ prestalk x ∧ (V,t) ∈ prestalk x ∧ (∃W. W ⊆ U∩V ∧ x∈W ∧
restrictionsmap (V,W) t = restrictionsmap (U,W)) s} "
我然後證明,對於每個x stalkrel x是一個等價關係,以及定義:
definition germ:: "'a ⇒ 'a set ⇒ 'a ⇒ ('a set × 'a) set" where
"germ x U s = {(V,t). ((U,s),(V,t)) ∈ stalkrel x}"
definition stalk:: "'a ⇒(('a set × 'a) set) set" where
"stalk x = {w. (∃ U s. w = germ x U s ∧ (U,s) ∈ prestalk x) }"
我試圖表明,對每個x此稈x是一個環,環的操作是「BUI lt「出環objectsmap (U∩V)
的環操作,即,我想germ x U s + germ x V t
爲germ x (U∩V) (restrictionsmap (U, (U∩V)) s + restrictionsmap (V, (U∩V)) t)
,其中最後的總和是環objectsmap (U∩V)
的總和。
輝煌,但我遇到了一個愚蠢的問題,而試圖implementwhen定義在另一個方面我的新環操作..我只是用控制塊會做的伎倆,但它提供了一個內在的語法錯誤和失敗分析認爲。 –
這裏是我的嘗試:功能stalk_pop :: 「 'A⇒[(' 一組× '一)組,(' 一組× '一)組] ⇒(' 一組×「一)組」,其中「stalk_pop X(胚芽X U S)(胚芽x垂直噸)=胚芽X(U∩V)(pop⇘objectsmap(U∩V)⇙(restrictionsmap(U,U∩V)S) (restrictionsmap(V,U∩ V)t))「| 「stalk_pop X _ _ =未定義」(後來試圖證明是明確的,其實我喜歡用的定義命令,但它會抱怨LHS的論點。這裏胚芽先前定義的常量和objectsmap需要一套戒指)。 –
對於'stalk_pop'問題的回答太少了。如果'germ'是數據類型的構造函數,則嘗試使用函數包(命令'fun')來定義'stalk_pop'。如果'germ'是別的東西(特別是它是非內射函數),那麼你將很難定義和使用'stalk_pop'。通常將stalk_pop的定義推廣到任意參數並從中推導給定的方程。 –