![]() |
Metamath
Proof Explorer Theorem List (p. 484 of 485) | < Previous Next > |
Bad symbols? Try the
GIF version. |
||
Mirrors > Metamath Home Page > MPE Home Page > Theorem List Contents > Recent Proofs This page: Page List |
Color key: | ![]() (1-30800) |
![]() (30801-32323) |
![]() (32324-48424) |
Type | Label | Description |
---|---|---|
Statement | ||
Definition | df-setrecs 48301* |
Define a class setrecs(𝐹) by transfinite recursion, where
(𝐹‘𝑥) is the set of new elements to add to
the class given the
set 𝑥 of elements in the class so far. We
do not need a base case,
because we can start with the empty set, which is vacuously a subset of
setrecs(𝐹). The goal of this definition is to
construct a class
fulfilling Theorems setrec1 48308 and setrec2v 48313, which give a more
intuitive idea of the meaning of setrecs.
Unlike wrecs,
setrecs is well-defined for any 𝐹 and
meaningful for any
function 𝐹.
For example, see Theorem onsetrec 48325 for how the class On is defined recursively using the successor function. The definition works by building subsets of the desired class and taking the union of those subsets. To find such a collection of subsets, consider an arbitrary set 𝑧, and consider the result when applying 𝐹 to any subset 𝑤 ⊆ 𝑧. Remember that 𝐹 can be any function, and in general we are interested in functions that give outputs that are larger than their inputs, so we have no reason to expect the outputs to be within 𝑧. However, if we restrict the domain of 𝐹 to a given set 𝑦, the resulting range will be a set. Therefore, with this restricted 𝐹, it makes sense to consider sets 𝑧 that are closed under 𝐹 applied to its subsets. Now we can test whether a given set 𝑦 is recursively generated by 𝐹. If every set 𝑧 that is closed under 𝐹 contains 𝑦, that means that every member of 𝑦 must eventually be generated by 𝐹. On the other hand, if some such 𝑧 does not contain a certain element of 𝑦, then that element can be avoided even if we apply 𝐹 in every possible way to previously generated elements. Note that such an omitted element might be eventually recursively generated by 𝐹, but not through the elements of 𝑦. In this case, 𝑦 would fail the condition in the definition, but the omitted element would still be included in some larger 𝑦. For example, if 𝐹 is the successor function, the set {∅, 2o} would fail the condition since 2o is not an element of the successor of ∅ or {∅}. Remember that we are applying 𝐹 to subsets of 𝑦, not elements of 𝑦. In fact, even the set {1o} fails the condition, since the only subset of previously generated elements is ∅, and suc ∅ does not have 1o as an element. However, we can let 𝑦 be any ordinal, since each of its elements is generated by starting with ∅ and repeatedly applying the successor function. A similar definition I initially used for setrecs(𝐹) was setrecs(𝐹) = ∪ ran recs((𝑔 ∈ V ↦ (𝐹‘∪ ran 𝑔))). I had initially tried and failed to find an elementary definition, and I had proven theorems analogous to setrec1 48308 and setrec2v 48313 using the old definition before I found the new one. I decided to change definitions for two reasons. First, as John Horton Conway noted in the Appendix to Part Zero of On Numbers and Games, mathematicians should not be caught up in any particular formalization, such as ZF set theory. Instead, they should work under whatever framework best suits the problem, and the formal bases used for different problems can be shown to be equivalent. Thus, Conway preferred defining surreal numbers as equivalence classes of surreal number forms, rather than sign-expansions. Although sign-expansions are easier to implement in ZF set theory, Conway argued that "formalisation within some particular axiomatic set theory is irrelevant". Furthermore, one of the most remarkable properties of the theory of surreal numbers is that it generates so much from almost nothing. Using sign-expansions as the formal definition destroys the beauty of surreal numbers, because ordinals are already built in. For this reason, I replaced the old definition of setrecs, which also relied heavily on ordinal numbers. On the other hand, both surreal numbers and the elementary definition of setrecs immediately generate the ordinal numbers from a (relatively) very simple set-theoretical basis. Second, although it is still complicated to formalize the theory of recursively generated sets within ZF set theory, it is actually simpler and more natural to do so with set theory directly than with the theory of ordinal numbers. As Conway wrote, indexing the "birthdays" of sets is and should be unnecessary. Using an elementary definition for setrecs removes the reliance on the previously developed theory of ordinal numbers, allowing proofs to be simpler and more direct. Formalizing surreal numbers within Metamath is probably still not in the spirit of Conway. He said that "attempts to force arbitrary theories into a single formal straitjacket... produce unnecessarily cumbrous and inelegant contortions." Nevertheless, Metamath has proven to be much more versatile than it seems at first, and I think the theory of surreal numbers can be natural while fitting well into the Metamath framework. The difficulty in writing a definition in Metamath for setrecs(𝐹) is that the necessary properties to prove are self-referential (see setrec1 48308 and setrec2v 48313), so we cannot simply write the properties we want inside a class abstraction as with most definitions. As noted in the comment of df-rdg 8431, this is not actually a requirement of the Metamath language, but we would like to be able to eliminate all definitions by direct mechanical substitution. We cannot define setrecs using a class abstraction directly, because nothing about its individual elements tells us whether they are in the set. We need to know about previous elements first. One way of getting around this problem without indexing is by defining setrecs(𝐹) as a union or intersection of suitable sets. Thus, instead of using a class abstraction for the elements of setrecs(𝐹), which seems to be impossible, we can use a class abstraction for supersets or subsets of setrecs(𝐹), which "know" about multiple individual elements at a time. Note that we cannot define setrecs(𝐹) as an intersection of sets, because in general it is a proper class, so any supersets would also be proper classes. However, a proper class can be a union of sets, as long as the collection of such sets is a proper class. Therefore, it is feasible to define setrecs(𝐹) as a union of a class abstraction. If setrecs(𝐹) = ∪ 𝐴, the elements of A must be subsets of setrecs(𝐹) which together include everything recursively generated by 𝐹. We can do this by letting 𝐴 be the class of sets 𝑥 whose elements are all recursively generated by 𝐹. One necessary condition is that each element of a given 𝑥 ∈ 𝐴 must be generated by 𝐹 when applied to a previous element 𝑦 ∈ 𝐴. In symbols, ∀𝑥 ∈ 𝐴∃𝑦 ∈ 𝐴(𝑦 ⊆ 𝑥 ∧ 𝑥 ⊆ (𝐹‘𝑦))}. However, this is not sufficient. All fixed points 𝑥 of 𝐹 will satisfy this condition whether they should be in setrecs(𝐹) or not. If we replace the subset relation with the proper subset relation, 𝑥 cannot be the empty set, even though the empty set should be in 𝐴. Therefore this condition cannot be used in the definition, even if we can find a way to avoid making it circular. A better strategy is to find a necessary and sufficient condition for all the elements of a set 𝑦 ∈ 𝐴 to be generated by 𝐹 when applied only to sets of previously generated elements within 𝑦. For example, taking 𝐹 to be the successor function, we can let 𝐴 = On rather than 𝒫 On, and we will still have ∪ 𝐴 = On as required. This gets rid of the circularity of the definition, since we should have a condition to test whether a given set 𝑦 is in 𝐴 without knowing about any of the other elements of 𝐴. The definition I ended up using accomplishes this using induction: 𝐴 is defined as the class of sets 𝑦 for which a sort of induction on the elements of 𝑦 holds. However, when creating a definition for setrecs that did not rely on ordinal numbers, I tried at first to write a definition using the well-founded relation predicate, Fr. I thought that this would be simple to do once I found a suitable definition using induction, just as the least- element principle is equivalent to induction on the positive integers. If we let 𝑅 = {〈𝑎, 𝑏〉 ∣ (𝐹‘𝑎) ⊆ 𝑏}, then (𝑅 Fr 𝐴 ↔ ∀𝑥((𝑥 ⊆ 𝐴 ∧ 𝑥 ≠ ∅) → ∃𝑦 ∈ 𝑥∀𝑧 ∈ 𝑥¬ (𝐹‘𝑧) ⊆ 𝑦)). On 22-Jul-2020 I came up with the following definition (Version 1) phrased in terms of induction: ∪ {𝑦 ∣ ∀𝑧 (∀𝑤(𝑤 ⊆ 𝑦 → (𝑤 ∈ 𝑧 → (𝐹‘𝑤) ∈ 𝑧)) → 𝑦 ∈ 𝑧)} In Aug-2020 I came up with an equivalent definition with the goal of phrasing it in terms of the relation Fr. It is the contrapositive of the previous one with 𝑧 replaced by its complement. ∪ {𝑦 ∣ ∀𝑧 (𝑦 ∈ 𝑧 → ∃𝑤(𝑤 ⊆ 𝑦 ∧ (𝐹‘𝑤) ∈ 𝑧 ∧ ¬ 𝑤 ∈ 𝑧))} These definitions didn't work because the induction didn't "get off the ground." If 𝑧 does not contain the empty set, the condition (∀𝑤...𝑦 ∈ 𝑧 fails, so 𝑦 = ∅ doesn't get included in 𝐴 even though it should. This could be fixed by adding the base case as a separate requirement, but the subtler problem would remain that rather than a set of "acceptable" sets, what we really need is a collection 𝑧 of all individuals that have been generated so far. So one approach is to replace every occurrence of ∈ 𝑧 with ⊆ 𝑧, making 𝑧 a set of individuals rather than a family of sets. That solves this problem, but it complicates the foundedness version of the definition, which looked cleaner in Version 1. There was another problem with Version 1. If we let 𝐹 be the power set function, then the induction in the inductive version works for 𝑧 being the class of transitive sets, restricted to subsets of 𝑦. Therefore, 𝑦 must be transitive by definition of 𝑧. This doesn't affect the union of all such 𝑦, but it may or may not be desirable. The problem is that 𝐹 is only applied to transitive sets, because of the strong requirement 𝑤 ∈ 𝑧, so the definition requires the additional constraint (𝑎 ⊆ 𝑏 → (𝐹‘𝑎) ⊆ (𝐹‘𝑏)) in order to work. This issue can also be avoided by replacing ∈ 𝑧 with ⊆ 𝑧. The induction version of the result is used in the final definition. Version 2: (18-Aug-2020) Induction: ∪ {𝑦 ∣ ∀𝑧 (∀𝑤(𝑤 ⊆ 𝑦 → (𝑤 ⊆ 𝑧 → (𝐹‘𝑤) ⊆ 𝑧)) → 𝑦 ⊆ 𝑧)} Foundedness: ∪ {𝑦 ∣ ∀𝑧(𝑦 ∩ 𝑧 ≠ ∅ → ∃𝑤(𝑤 ⊆ 𝑦 ∧ 𝑤 ∩ 𝑧 = ∅ ∧ (𝐹‘𝑤) ∩ 𝑧 ≠ ∅))} In the induction version, not only does 𝑧 include all the elements of 𝑦, but it must include the elements of (𝐹‘𝑤) for 𝑤 ⊆ (𝑦 ∩ 𝑧) even if those elements of (𝐹‘𝑤) are not in 𝑦. We shouldn't care about any of the elements of 𝑧 outside 𝑦, but this detail doesn't affect the correctness of the definition. If we replaced (𝐹‘𝑤) in the definition by ((𝐹‘𝑤) ∩ 𝑦), we would get the same class for setrecs(𝐹). Suppose we could find a 𝑧 for which the condition fails for a given 𝑦 under the changed definition. Then the antecedent would be true, but 𝑦 ⊆ 𝑧 would be false. We could then simply add all elements of (𝐹‘𝑤) outside of 𝑦 for any 𝑤 ⊆ 𝑦, which we can do because all the classes involved are sets. This is not trivial and requires the axioms of union, power set, and replacement. However, the expanded 𝑧 fails the condition under the Metamath definition. The other direction is easier. If a certain 𝑧 fails the Metamath definition, then all (𝐹‘𝑤) ⊆ 𝑧 for 𝑤 ⊆ (𝑦 ∩ 𝑧), and in particular ((𝐹‘𝑤) ∩ 𝑦) ⊆ 𝑧. The foundedness version is starting to look more like ax-reg 9617! We want to take advantage of the preexisting relation Fr, which seems closely related to our foundedness definition. Since we only care about the elements of 𝑧 which are subsets of 𝑦, we can restrict 𝑧 to 𝑦 in the foundedness definition. Furthermore, instead of quantifying over 𝑤, quantify over the elements 𝑣 ∈ 𝑧 overlapping with 𝑤. Versions 3, 4, and 5 are all equivalent to Version 2. Version 3 - Foundedness (5-Sep-2020): ∪ {𝑦 ∣ ∀𝑧((𝑧 ⊆ 𝑦 ∧ 𝑧 ≠ ∅) → ∃𝑣 ∈ 𝑧∃𝑤(𝑤 ⊆ 𝑦 ∧ 𝑤 ∩ 𝑧 = ∅ ∧ 𝑣 ∈ (𝐹‘𝑤)))} Now, if we replace (𝐹‘𝑤) by ((𝐹‘𝑤) ∩ 𝑦), we do not change the definition. We already know that 𝑣 ∈ 𝑦 since 𝑣 ∈ 𝑧 and 𝑧 ⊆ 𝑦. All we need to show in order to prove that this change leads to an equivalent definition is to find To make our definition look exactly like df-fr 5633, we add another variable 𝑢 representing the nonexistent element of 𝑤 in 𝑧. Version 4 - Foundedness (6-Sep-2020): ∪ {𝑦 ∣ ∀𝑧((𝑧 ⊆ 𝑦 ∧ 𝑧 ≠ ∅) → ∃𝑣 ∈ 𝑧∃𝑤∀𝑢 ∈ 𝑧(𝑤 ⊆ 𝑦 ∧ ¬ 𝑢 ∈ 𝑤 ∧ 𝑣 ∈ (𝐹‘𝑤)) This is so close to df-fr 5633; the only change needed is to switch ∃𝑤 with ∀𝑢 ∈ 𝑧. Unfortunately, I couldn't find any way to switch the quantifiers without interfering with the definition. Maybe there is a definition equivalent to this one that uses Fr, but I couldn't find one. Yet, we can still find a remarkable similarity between Foundedness Version 2 and ax-reg 9617. Rather than a disjoint element of 𝑧, there's a disjoint coverer of an element of 𝑧. Finally, here's a different dead end I followed: To clean up our foundedness definition, we keep 𝑧 as a family of sets 𝑦 but allow 𝑤 to be any subset of ∪ 𝑧 in the induction. With this stronger induction, we can also allow for the stronger requirement 𝒫 𝑦 ⊆ 𝑧 rather than only 𝑦 ∈ 𝑧. This will help improve the foundedness version. Version 1.1 (28-Aug-2020) Induction: ∪ {𝑦 ∣ ∀𝑧(∀𝑤 (𝑤 ⊆ 𝑦 → (𝑤 ⊆ ∪ 𝑧 → (𝐹‘𝑤) ∈ 𝑧)) → 𝒫 𝑦 ⊆ 𝑧)} Foundedness: ∪ {𝑦 ∣ ∀𝑧(∃𝑎(𝑎 ⊆ 𝑦 ∧ 𝑎 ∈ 𝑧) → ∃𝑤(𝑤 ⊆ 𝑦 ∧ 𝑤 ∩ ∩ 𝑧 = ∅ ∧ (𝐹‘𝑤) ∈ 𝑧))} ( Edit (Aug 31) - this isn't true! Nothing forces the subset of an element of 𝑧 to be in 𝑧. Version 2 does not have this issue. ) Similarly, we could allow 𝑤 to be any subset of any element of 𝑧 rather than any subset of ∪ 𝑧. I think this has the same problem. We want to take advantage of the preexisting relation Fr, which seems closely related to our foundedness definition. Since we only care about the elements of 𝑧 which are subsets of 𝑦, we can restrict 𝑧 to 𝒫 𝑦 in the foundedness definition: Version 1.2 (31-Aug-2020) Foundedness: ∪ {𝑦 ∣ ∀𝑧((𝑧 ⊆ 𝒫 𝑦 ∧ 𝑧 ≠ ∅) → ∃𝑤(𝑤 ∈ 𝒫 𝑦 ∧ 𝑤 ∩ ∩ 𝑧 = ∅ ∧ (𝐹‘𝑤) ∈ 𝑧))} Now this looks more like df-fr 5633! The last step necessary to be able to use Fr directly in our definition is to replace (𝐹‘𝑤) with its own setvar variable, corresponding to 𝑦 in df-fr 5633. This definition is incorrect, though, since there's nothing forcing the subset of an element of 𝑧 to be in 𝑧. Version 1.3 (31-Aug-2020) Induction: ∪ {𝑦 ∣ ∀𝑧(∀𝑤(𝑤 ⊆ 𝑦 → (𝑤 ⊆ ∪ 𝑧 → (𝑤 ∈ 𝑧 ∧ (𝐹‘𝑤) ∈ 𝑧))) → 𝒫 𝑦 ⊆ 𝑧)} Foundedness: ∪ {𝑦 ∣ ∀𝑧((𝑧 ⊆ 𝒫 𝑦 ∧ 𝑧 ≠ ∅) → ∃𝑤(𝑤 ∈ 𝒫 𝑦 ∧ 𝑤 ∩ ∩ 𝑧 = ∅ ∧ (𝑤 ∈ 𝑧 ∨ (𝐹‘𝑤) ∈ 𝑧)))} 𝑧 must contain the supersets of each of its elements in the foundedness version, and we can't make any restrictions on 𝑧 or 𝐹, so this doesn't work. Let's try letting R be the covering relation 𝑅 = {〈𝑎, 𝑏〉 ∣ 𝑏 ∈ (𝐹‘𝑎)} to solve the transitivity issue (i.e. that if 𝐹 is the power set relation, 𝐴 consists only of transitive sets). The set (𝐹‘𝑤) corresponds to the variable 𝑦 in df-fr 5633. Thus, in our case, df-fr 5633 is equivalent to (𝑅 Fr 𝐴 ↔ ∀𝑧((𝑧 ⊆ 𝐴 ∧ 𝑧 ≠ ∅) → ∃𝑤((𝐹‘𝑤) ∈ 𝑧 ∧ ¬ ∃𝑣 ∈ 𝑧𝑣𝑅(𝐹‘𝑤))). Substituting our relation 𝑅 gives (𝑅 Fr 𝐴 ↔ ∀𝑧((𝑧 ⊆ 𝐴 ∧ 𝑧 ≠ ∅) → ∃𝑤((𝐹‘𝑤) ∈ 𝑧 ∧ ¬ ∃𝑣 ∈ 𝑧(𝐹‘𝑤) ∈ (𝐹‘𝑣))) This doesn't work for non-injective 𝐹 because we need all 𝑧 to be straddlers, but we don't necessarily need all-straddlers; loops within z are fine for non-injective F. Consider the foundedness form of Version 1. We want to show ¬ 𝑤 ∈ 𝑧 ↔ ∀𝑣 ∈ 𝑧¬ 𝑣𝑅(𝐹‘𝑤) so we can replace one with the other. Negate both sides: 𝑤 ∈ 𝑧 ↔ ∃𝑣 ∈ 𝑧𝑣𝑅(𝐹‘𝑤) If 𝐹 is injective, then we should be able to pick a suitable R, being careful about the above problem for some F (for example z = transitivity) when changing the antecedent y e. z' to z =/= (/). If we're clever, we can get rid of the injectivity requirement. The forward direction of the above equivalence always holds, but the key is that although the backwards direction doesn't hold in general, we can always find some z' where it doesn't work for 𝑤 itself. If there exists a z' where the version with the w condition fails, then there exists a z' where the version with the v condition also fails. However, Version 1 is not a correct definition, so this doesn't work either. (Contributed by Emmett Weisz, 18-Aug-2020.) (New usage is discouraged.) |
⊢ setrecs(𝐹) = ∪ {𝑦 ∣ ∀𝑧(∀𝑤(𝑤 ⊆ 𝑦 → (𝑤 ⊆ 𝑧 → (𝐹‘𝑤) ⊆ 𝑧)) → 𝑦 ⊆ 𝑧)} | ||
Theorem | setrecseq 48302 | Equality theorem for set recursion. (Contributed by Emmett Weisz, 17-Feb-2021.) |
⊢ (𝐹 = 𝐺 → setrecs(𝐹) = setrecs(𝐺)) | ||
Theorem | nfsetrecs 48303 | Bound-variable hypothesis builder for setrecs. (Contributed by Emmett Weisz, 21-Oct-2021.) |
⊢ Ⅎ𝑥𝐹 ⇒ ⊢ Ⅎ𝑥setrecs(𝐹) | ||
Theorem | setrec1lem1 48304* |
Lemma for setrec1 48308. This is a utility theorem showing the
equivalence
of the statement 𝑋 ∈ 𝑌 and its expanded form. The proof
uses
elabg 3662 and equivalence theorems.
Variable 𝑌 is the class of sets 𝑦 that are recursively generated by the function 𝐹. In other words, 𝑦 ∈ 𝑌 iff by starting with the empty set and repeatedly applying 𝐹 to subsets 𝑤 of our set, we will eventually generate all the elements of 𝑌. In this theorem, 𝑋 is any element of 𝑌, and 𝑉 is any class. (Contributed by Emmett Weisz, 16-Oct-2020.) (New usage is discouraged.) |
⊢ 𝑌 = {𝑦 ∣ ∀𝑧(∀𝑤(𝑤 ⊆ 𝑦 → (𝑤 ⊆ 𝑧 → (𝐹‘𝑤) ⊆ 𝑧)) → 𝑦 ⊆ 𝑧)} & ⊢ (𝜑 → 𝑋 ∈ 𝑉) ⇒ ⊢ (𝜑 → (𝑋 ∈ 𝑌 ↔ ∀𝑧(∀𝑤(𝑤 ⊆ 𝑋 → (𝑤 ⊆ 𝑧 → (𝐹‘𝑤) ⊆ 𝑧)) → 𝑋 ⊆ 𝑧))) | ||
Theorem | setrec1lem2 48305* | Lemma for setrec1 48308. If a family of sets are all recursively generated by 𝐹, so is their union. In this theorem, 𝑋 is a family of sets which are all elements of 𝑌, and 𝑉 is any class. Use dfss3 3965, equivalence and equality theorems, and unissb at the end. Sandwich with applications of setrec1lem1. (Contributed by Emmett Weisz, 24-Jan-2021.) (New usage is discouraged.) |
⊢ 𝑌 = {𝑦 ∣ ∀𝑧(∀𝑤(𝑤 ⊆ 𝑦 → (𝑤 ⊆ 𝑧 → (𝐹‘𝑤) ⊆ 𝑧)) → 𝑦 ⊆ 𝑧)} & ⊢ (𝜑 → 𝑋 ∈ 𝑉) & ⊢ (𝜑 → 𝑋 ⊆ 𝑌) ⇒ ⊢ (𝜑 → ∪ 𝑋 ∈ 𝑌) | ||
Theorem | setrec1lem3 48306* | Lemma for setrec1 48308. If each element 𝑎 of 𝐴 is covered by a set 𝑥 recursively generated by 𝐹, then there is a single such set covering all of 𝐴. The set is constructed explicitly using setrec1lem2 48305. It turns out that 𝑥 = 𝐴 also works, i.e., given the hypotheses it is possible to prove that 𝐴 ∈ 𝑌. I don't know if proving this fact directly using setrec1lem1 48304 would be any easier than the current proof using setrec1lem2 48305, and it would only slightly simplify the proof of setrec1 48308. Other than the use of bnd2d 48298, this is a purely technical theorem for rearranging notation from that of setrec1lem2 48305 to that of setrec1 48308. (Contributed by Emmett Weisz, 20-Jan-2021.) (New usage is discouraged.) |
⊢ 𝑌 = {𝑦 ∣ ∀𝑧(∀𝑤(𝑤 ⊆ 𝑦 → (𝑤 ⊆ 𝑧 → (𝐹‘𝑤) ⊆ 𝑧)) → 𝑦 ⊆ 𝑧)} & ⊢ (𝜑 → 𝐴 ∈ V) & ⊢ (𝜑 → ∀𝑎 ∈ 𝐴 ∃𝑥(𝑎 ∈ 𝑥 ∧ 𝑥 ∈ 𝑌)) ⇒ ⊢ (𝜑 → ∃𝑥(𝐴 ⊆ 𝑥 ∧ 𝑥 ∈ 𝑌)) | ||
Theorem | setrec1lem4 48307* |
Lemma for setrec1 48308. If 𝑋 is recursively generated by 𝐹, then
so is 𝑋 ∪ (𝐹‘𝐴).
In the proof of setrec1 48308, the following is substituted for this theorem's 𝜑: (𝜑 ∧ (𝐴 ⊆ 𝑥 ∧ 𝑥 ∈ {𝑦 ∣ ∀𝑧(∀𝑤 (𝑤 ⊆ 𝑦 → (𝑤 ⊆ 𝑧 → (𝐹‘𝑤) ⊆ 𝑧)) → 𝑦 ⊆ 𝑧)})) Therefore, we cannot declare 𝑧 to be a distinct variable from 𝜑, since we need it to appear as a bound variable in 𝜑. This theorem can be proven without the hypothesis Ⅎ𝑧𝜑, but the proof would be harder to read because theorems in deduction form would be interrupted by theorems like eximi 1829, making the antecedent of each line something more complicated than 𝜑. The proof of setrec1lem2 48305 could similarly be made easier to read by adding the hypothesis Ⅎ𝑧𝜑, but I had already finished the proof and decided to leave it as is. (Contributed by Emmett Weisz, 26-Nov-2020.) (New usage is discouraged.) |
⊢ Ⅎ𝑧𝜑 & ⊢ 𝑌 = {𝑦 ∣ ∀𝑧(∀𝑤(𝑤 ⊆ 𝑦 → (𝑤 ⊆ 𝑧 → (𝐹‘𝑤) ⊆ 𝑧)) → 𝑦 ⊆ 𝑧)} & ⊢ (𝜑 → 𝐴 ∈ V) & ⊢ (𝜑 → 𝐴 ⊆ 𝑋) & ⊢ (𝜑 → 𝑋 ∈ 𝑌) ⇒ ⊢ (𝜑 → (𝑋 ∪ (𝐹‘𝐴)) ∈ 𝑌) | ||
Theorem | setrec1 48308 |
This is the first of two fundamental theorems about set recursion from
which all other facts will be derived. It states that the class
setrecs(𝐹) is closed under 𝐹. This
effectively sets the
actual value of setrecs(𝐹) as a lower bound for
setrecs(𝐹), as it implies that any set
generated by successive
applications of 𝐹 is a member of 𝐵. This
theorem "gets off the
ground" because we can start by letting 𝐴 = ∅, and the
hypotheses
of the theorem will hold trivially.
Variable 𝐵 represents an abbreviation of setrecs(𝐹) or another name of setrecs(𝐹) (for an example of the latter, see theorem setrecon). Proof summary: Assume that 𝐴 ⊆ 𝐵, meaning that all elements of 𝐴 are in some set recursively generated by 𝐹. Then by setrec1lem3 48306, 𝐴 is a subset of some set recursively generated by 𝐹. (It turns out that 𝐴 itself is recursively generated by 𝐹, but we don't need this fact. See the comment to setrec1lem3 48306.) Therefore, by setrec1lem4 48307, (𝐹‘𝐴) is a subset of some set recursively generated by 𝐹. Thus, by ssuni 4936, it is a subset of the union of all sets recursively generated by 𝐹. See df-setrecs 48301 for a detailed description of how the setrecs definition works. (Contributed by Emmett Weisz, 9-Oct-2020.) |
⊢ 𝐵 = setrecs(𝐹) & ⊢ (𝜑 → 𝐴 ∈ V) & ⊢ (𝜑 → 𝐴 ⊆ 𝐵) ⇒ ⊢ (𝜑 → (𝐹‘𝐴) ⊆ 𝐵) | ||
Theorem | setrec2fun 48309* |
This is the second of two fundamental theorems about set recursion from
which all other facts will be derived. It states that the class
setrecs(𝐹) is a subclass of all classes 𝐶 that
are closed
under 𝐹. Taken together, Theorems setrec1 48308 and setrec2v 48313 say
that setrecs(𝐹) is the minimal class closed under
𝐹.
We express this by saying that if 𝐹 respects the ⊆ relation and 𝐶 is closed under 𝐹, then 𝐵 ⊆ 𝐶. By substituting strategically constructed classes for 𝐶, we can easily prove many useful properties. Although this theorem cannot show equality between 𝐵 and 𝐶, if we intend to prove equality between 𝐵 and some particular class (such as On), we first apply this theorem, then the relevant induction theorem (such as tfi 7858) to the other class. (Contributed by Emmett Weisz, 15-Feb-2021.) (New usage is discouraged.) |
⊢ Ⅎ𝑎𝐹 & ⊢ 𝐵 = setrecs(𝐹) & ⊢ Fun 𝐹 & ⊢ (𝜑 → ∀𝑎(𝑎 ⊆ 𝐶 → (𝐹‘𝑎) ⊆ 𝐶)) ⇒ ⊢ (𝜑 → 𝐵 ⊆ 𝐶) | ||
Theorem | setrec2lem1 48310* | Lemma for setrec2 48312. The functional part of 𝐹 has the same values as 𝐹. (Contributed by Emmett Weisz, 4-Mar-2021.) (New usage is discouraged.) |
⊢ ((𝐹 ↾ {𝑥 ∣ ∃!𝑦 𝑥𝐹𝑦})‘𝑎) = (𝐹‘𝑎) | ||
Theorem | setrec2lem2 48311* | Lemma for setrec2 48312. The functional part of 𝐹 is a function. (Contributed by Emmett Weisz, 6-Mar-2021.) (New usage is discouraged.) |
⊢ Fun (𝐹 ↾ {𝑥 ∣ ∃!𝑦 𝑥𝐹𝑦}) | ||
Theorem | setrec2 48312* |
This is the second of two fundamental theorems about set recursion from
which all other facts will be derived. It states that the class
setrecs(𝐹) is a subclass of all classes 𝐶 that
are closed
under 𝐹. Taken together, Theorems setrec1 48308 and setrec2v 48313
uniquely determine setrecs(𝐹) to be the minimal class closed
under 𝐹.
We express this by saying that if 𝐹 respects the ⊆ relation and 𝐶 is closed under 𝐹, then 𝐵 ⊆ 𝐶. By substituting strategically constructed classes for 𝐶, we can easily prove many useful properties. Although this theorem cannot show equality between 𝐵 and 𝐶, if we intend to prove equality between 𝐵 and some particular class (such as On), we first apply this theorem, then the relevant induction theorem (such as tfi 7858) to the other class. (Contributed by Emmett Weisz, 2-Sep-2021.) |
⊢ Ⅎ𝑎𝐹 & ⊢ 𝐵 = setrecs(𝐹) & ⊢ (𝜑 → ∀𝑎(𝑎 ⊆ 𝐶 → (𝐹‘𝑎) ⊆ 𝐶)) ⇒ ⊢ (𝜑 → 𝐵 ⊆ 𝐶) | ||
Theorem | setrec2v 48313* | Version of setrec2 48312 with a disjoint variable condition instead of a nonfreeness hypothesis. (Contributed by Emmett Weisz, 6-Mar-2021.) |
⊢ 𝐵 = setrecs(𝐹) & ⊢ (𝜑 → ∀𝑎(𝑎 ⊆ 𝐶 → (𝐹‘𝑎) ⊆ 𝐶)) ⇒ ⊢ (𝜑 → 𝐵 ⊆ 𝐶) | ||
Theorem | setrec2mpt 48314* | Version of setrec2 48312 where 𝐹 is defined using maps-to notation. Deduction form is omitted in the second hypothesis for simplicity. In practice, nothing important is lost since we are only interested in one choice of 𝐴, 𝑆, and 𝑉 at a time. However, we are interested in what happens when 𝐶 varies, so deduction form is used in the third hypothesis. (Contributed by Emmett Weisz, 4-Jun-2024.) |
⊢ 𝐵 = setrecs((𝑎 ∈ 𝐴 ↦ 𝑆)) & ⊢ (𝑎 ∈ 𝐴 → 𝑆 ∈ 𝑉) & ⊢ (𝜑 → ∀𝑎(𝑎 ⊆ 𝐶 → 𝑆 ⊆ 𝐶)) ⇒ ⊢ (𝜑 → 𝐵 ⊆ 𝐶) | ||
Theorem | setis 48315* | Version of setrec2 48312 expressed as an induction schema. This theorem is a generalization of tfis3 7863. (Contributed by Emmett Weisz, 27-Feb-2022.) |
⊢ 𝐵 = setrecs(𝐹) & ⊢ (𝑏 = 𝐴 → (𝜓 ↔ 𝜒)) & ⊢ (𝜑 → ∀𝑎(∀𝑏 ∈ 𝑎 𝜓 → ∀𝑏 ∈ (𝐹‘𝑎)𝜓)) ⇒ ⊢ (𝜑 → (𝐴 ∈ 𝐵 → 𝜒)) | ||
Theorem | elsetrecslem 48316* | Lemma for elsetrecs 48317. Any element of setrecs(𝐹) is generated by some subset of setrecs(𝐹). This is much weaker than setrec2v 48313. To see why this lemma also requires setrec1 48308, consider what would happen if we replaced 𝐵 with {𝐴}. The antecedent would still hold, but the consequent would fail in general. Consider dispensing with the deduction form. (Contributed by Emmett Weisz, 11-Jul-2021.) (New usage is discouraged.) |
⊢ 𝐵 = setrecs(𝐹) ⇒ ⊢ (𝐴 ∈ 𝐵 → ∃𝑥(𝑥 ⊆ 𝐵 ∧ 𝐴 ∈ (𝐹‘𝑥))) | ||
Theorem | elsetrecs 48317* | A set 𝐴 is an element of setrecs(𝐹) iff 𝐴 is generated by some subset of setrecs(𝐹). The proof requires both setrec1 48308 and setrec2 48312, but this theorem is not strong enough to uniquely determine setrecs(𝐹). If 𝐹 respects the subset relation, the theorem still holds if both occurrences of ∈ are replaced by ⊆ for a stronger version of the theorem. (Contributed by Emmett Weisz, 12-Jul-2021.) |
⊢ 𝐵 = setrecs(𝐹) ⇒ ⊢ (𝐴 ∈ 𝐵 ↔ ∃𝑥(𝑥 ⊆ 𝐵 ∧ 𝐴 ∈ (𝐹‘𝑥))) | ||
Theorem | setrecsss 48318 | The setrecs operator respects the subset relation between two functions 𝐹 and 𝐺. (Contributed by Emmett Weisz, 13-Mar-2022.) |
⊢ (𝜑 → Fun 𝐺) & ⊢ (𝜑 → 𝐹 ⊆ 𝐺) ⇒ ⊢ (𝜑 → setrecs(𝐹) ⊆ setrecs(𝐺)) | ||
Theorem | setrecsres 48319 | A recursively generated class is unaffected when its input function is restricted to subsets of the class. (Contributed by Emmett Weisz, 14-Mar-2022.) |
⊢ 𝐵 = setrecs(𝐹) & ⊢ (𝜑 → Fun 𝐹) ⇒ ⊢ (𝜑 → 𝐵 = setrecs((𝐹 ↾ 𝒫 𝐵))) | ||
Theorem | vsetrec 48320 | Construct V using set recursion. The proof indirectly uses trcl 9753, which relies on rec, but theoretically 𝐶 in trcl 9753 could be constructed using setrecs instead. The proof of this theorem uses the dummy variable 𝑎 rather than 𝑥 to avoid a distinct variable requirement between 𝐹 and 𝑥. (Contributed by Emmett Weisz, 23-Jun-2021.) |
⊢ 𝐹 = (𝑥 ∈ V ↦ 𝒫 𝑥) ⇒ ⊢ setrecs(𝐹) = V | ||
Theorem | 0setrec 48321 | If a function sends the empty set to itself, the function will not recursively generate any sets, regardless of its other values. (Contributed by Emmett Weisz, 23-Jun-2021.) |
⊢ (𝜑 → (𝐹‘∅) = ∅) ⇒ ⊢ (𝜑 → setrecs(𝐹) = ∅) | ||
Theorem | onsetreclem1 48322* | Lemma for onsetrec 48325. (Contributed by Emmett Weisz, 22-Jun-2021.) (New usage is discouraged.) |
⊢ 𝐹 = (𝑥 ∈ V ↦ {∪ 𝑥, suc ∪ 𝑥}) ⇒ ⊢ (𝐹‘𝑎) = {∪ 𝑎, suc ∪ 𝑎} | ||
Theorem | onsetreclem2 48323* | Lemma for onsetrec 48325. (Contributed by Emmett Weisz, 22-Jun-2021.) (New usage is discouraged.) |
⊢ 𝐹 = (𝑥 ∈ V ↦ {∪ 𝑥, suc ∪ 𝑥}) ⇒ ⊢ (𝑎 ⊆ On → (𝐹‘𝑎) ⊆ On) | ||
Theorem | onsetreclem3 48324* | Lemma for onsetrec 48325. (Contributed by Emmett Weisz, 22-Jun-2021.) (New usage is discouraged.) |
⊢ 𝐹 = (𝑥 ∈ V ↦ {∪ 𝑥, suc ∪ 𝑥}) ⇒ ⊢ (𝑎 ∈ On → 𝑎 ∈ (𝐹‘𝑎)) | ||
Theorem | onsetrec 48325 |
Construct On using set recursion. When 𝑥 ∈
On, the function
𝐹 constructs the least ordinal greater
than any of the elements of
𝑥, which is ∪ 𝑥 for a limit ordinal and suc ∪ 𝑥 for a
successor ordinal.
For example, (𝐹‘{1o, 2o}) = {∪ {1o, 2o}, suc ∪ {1o, 2o}} = {2o, 3o} which contains 3o, and (𝐹‘ω) = {∪ ω, suc ∪ ω} = {ω, ω +o 1o}, which contains ω. If we start with the empty set and keep applying 𝐹 transfinitely many times, all ordinal numbers will be generated. Any function 𝐹 fulfilling lemmas onsetreclem2 48323 and onsetreclem3 48324 will recursively generate On; for example, 𝐹 = (𝑥 ∈ V ↦ suc suc ∪ 𝑥}) also works. Whether this function or the function in the theorem is used, taking this theorem as a definition of On is unsatisfying because it relies on the different properties of limit and successor ordinals. A different approach could be to let 𝐹 = (𝑥 ∈ V ↦ {𝑦 ∈ 𝒫 𝑥 ∣ Tr 𝑦}), based on dfon2 35519. The proof of this theorem uses the dummy variable 𝑎 rather than 𝑥 to avoid a distinct variable condition between 𝐹 and 𝑥. (Contributed by Emmett Weisz, 22-Jun-2021.) |
⊢ 𝐹 = (𝑥 ∈ V ↦ {∪ 𝑥, suc ∪ 𝑥}) ⇒ ⊢ setrecs(𝐹) = On | ||
Model organization after organization of reals - see TOC | ||
Syntax | cpg 48326 | Extend class notation to include the class of partisan game forms. |
class Pg | ||
Definition | df-pg 48327 | Define the class of partisan games. More precisely, this is the class of partisan game forms, many of which represent equal partisan games. In Metamath, equality between partisan games is represented by a different equivalence relation than class equality. (Contributed by Emmett Weisz, 22-Aug-2021.) |
⊢ Pg = setrecs((𝑥 ∈ V ↦ (𝒫 𝑥 × 𝒫 𝑥))) | ||
Theorem | elpglem1 48328* | Lemma for elpg 48331. (Contributed by Emmett Weisz, 28-Aug-2021.) |
⊢ (∃𝑥(𝑥 ⊆ Pg ∧ ((1st ‘𝐴) ∈ 𝒫 𝑥 ∧ (2nd ‘𝐴) ∈ 𝒫 𝑥)) → ((1st ‘𝐴) ⊆ Pg ∧ (2nd ‘𝐴) ⊆ Pg)) | ||
Theorem | elpglem2 48329* | Lemma for elpg 48331. (Contributed by Emmett Weisz, 28-Aug-2021.) |
⊢ (((1st ‘𝐴) ⊆ Pg ∧ (2nd ‘𝐴) ⊆ Pg) → ∃𝑥(𝑥 ⊆ Pg ∧ ((1st ‘𝐴) ∈ 𝒫 𝑥 ∧ (2nd ‘𝐴) ∈ 𝒫 𝑥))) | ||
Theorem | elpglem3 48330* | Lemma for elpg 48331. (Contributed by Emmett Weisz, 28-Aug-2021.) |
⊢ (∃𝑥(𝑥 ⊆ Pg ∧ 𝐴 ∈ ((𝑦 ∈ V ↦ (𝒫 𝑦 × 𝒫 𝑦))‘𝑥)) ↔ (𝐴 ∈ (V × V) ∧ ∃𝑥(𝑥 ⊆ Pg ∧ ((1st ‘𝐴) ∈ 𝒫 𝑥 ∧ (2nd ‘𝐴) ∈ 𝒫 𝑥)))) | ||
Theorem | elpg 48331 | Membership in the class of partisan games. In John Horton Conway's On Numbers and Games, this is stated as "If 𝐿 and 𝑅 are any two sets of games, then there is a game {𝐿 ∣ 𝑅}. All games are constructed in this way." The first sentence corresponds to the backward direction of our theorem, and the second to the forward direction. (Contributed by Emmett Weisz, 27-Aug-2021.) |
⊢ (𝐴 ∈ Pg ↔ (𝐴 ∈ (V × V) ∧ (1st ‘𝐴) ⊆ Pg ∧ (2nd ‘𝐴) ⊆ Pg)) | ||
Theorem | pgindlem 48332 | Lemma for pgind 48334. (Contributed by Emmett Weisz, 27-May-2024.) (New usage is discouraged.) |
⊢ (𝑥 ∈ (𝒫 𝑧 × 𝒫 𝑧) → ((1st ‘𝑥) ∪ (2nd ‘𝑥)) ⊆ 𝑧) | ||
Theorem | pgindnf 48333* | Version of pgind 48334 with extraneous not-free requirements. (Contributed by Emmett Weisz, 27-May-2024.) (New usage is discouraged.) |
⊢ Ⅎ𝑥𝜑 & ⊢ Ⅎ𝑦𝜑 & ⊢ (𝑥 = 𝑦 → (𝜓 ↔ 𝜒)) & ⊢ (𝑦 = 𝐴 → (𝜒 ↔ 𝜃)) & ⊢ (𝜑 → ∀𝑥(∀𝑦 ∈ ((1st ‘𝑥) ∪ (2nd ‘𝑥))𝜒 → 𝜓)) ⇒ ⊢ (𝜑 → (𝐴 ∈ Pg → 𝜃)) | ||
Theorem | pgind 48334* | Induction on partizan games. (Contributed by Emmett Weisz, 27-May-2024.) |
⊢ (𝑥 = 𝑦 → (𝜓 ↔ 𝜒)) & ⊢ (𝑦 = 𝐴 → (𝜒 ↔ 𝜃)) & ⊢ (𝜑 → ∀𝑥(∀𝑦 ∈ ((1st ‘𝑥) ∪ (2nd ‘𝑥))𝜒 → 𝜓)) ⇒ ⊢ (𝜑 → (𝐴 ∈ Pg → 𝜃)) | ||
This is the mathbox of David A. Wheeler, dwheeler at dwheeler dot com . Among other things, I have added a number of formal definitions for widely-used functions, e.g., those defined in ISO 80000-2:2009(E) Quantities and units - Part 2: Mathematical signs and symbols used in the natural sciences and technology and the NIST Digital Library of Mathematical Functions http://dlmf.nist.gov/. | ||
Theorem | sbidd 48335 | An identity theorem for substitution. See sbid 2242. See Remark 9.1 in [Megill] p. 447 (p. 15 of the preprint). (Contributed by DAW, 18-Feb-2017.) |
⊢ (𝜑 → [𝑥 / 𝑥]𝜓) ⇒ ⊢ (𝜑 → 𝜓) | ||
Theorem | sbidd-misc 48336 | An identity theorem for substitution. See sbid 2242. See Remark 9.1 in [Megill] p. 447 (p. 15 of the preprint). (Contributed by DAW, 18-Feb-2017.) |
⊢ ((𝜑 → [𝑥 / 𝑥]𝜓) ↔ (𝜑 → 𝜓)) | ||
As a stylistic issue, set.mm prefers 'less than' instead of 'greater than' to reduce the number of conversion steps. Here we formally define the widely-used relations 'greater than' and 'greater than or equal to', so that we have formal definitions of them, as well as a few related theorems. | ||
Syntax | cge-real 48337 | Extend wff notation to include the 'greater than or equal to' relation, see df-gte 48339. |
class ≥ | ||
Syntax | cgt 48338 | Extend wff notation to include the 'greater than' relation, see df-gt 48340. |
class > | ||
Definition | df-gte 48339 |
Define the 'greater than or equal' predicate over the reals. Defined in
ISO 80000-2:2009(E) operation 2-7.10. It is used as a primitive in the
"NIST Digital Library of Mathematical Functions" , front
introduction,
"Common Notations and Definitions" section at
http://dlmf.nist.gov/front/introduction#Sx4.
This relation is merely
the converse of the 'less than or equal to' relation defined by df-le 11286.
We do not write this as (𝑥 ≥ 𝑦 ↔ 𝑦 ≤ 𝑥), and similarly we do not write ` > ` as (𝑥 > 𝑦 ↔ 𝑦 < 𝑥), because these are not definitional axioms as understood by mmj2 (those definitions will be flagged as being "potentially non-conservative"). We could write them this way: ⊢ > = {〈𝑥, 𝑦〉 ∣ ((𝑥 ∈ ℝ* ∧ 𝑦 ∈ ℝ*) ∧ 𝑦 < 𝑥)} and ⊢ ≥ = {〈𝑥, 𝑦〉 ∣ ((𝑥 ∈ ℝ* ∧ 𝑦 ∈ ℝ*) ∧ 𝑦 ≤ 𝑥)} but these are very complicated. This definition of ≥, and the similar one for > (df-gt 48340), are a bit strange when you see them for the first time, but these definitions are much simpler for us to process and are clearly conservative definitions. (My thanks to Mario Carneiro for pointing out this simpler approach.) See gte-lte 48341 for a more conventional expression of the relationship between < and >. As a stylistic issue, set.mm prefers 'less than' instead of 'greater than' to reduce the number of conversion steps. Thus, we discourage its use, but include its definition so that there is a formal definition of this symbol. (Contributed by David A. Wheeler, 10-May-2015.) (New usage is discouraged.) |
⊢ ≥ = ◡ ≤ | ||
Definition | df-gt 48340 |
The 'greater than' relation is merely the converse of the 'less than or
equal to' relation defined by df-lt 11153. Defined in ISO 80000-2:2009(E)
operation 2-7.12. See df-gte 48339 for a discussion on why this approach is
used for the definition. See gt-lt 48342 and gt-lth 48344 for more conventional
expression of the relationship between < and
>.
As a stylistic issue, set.mm prefers 'less than or equal' instead of 'greater than or equal' to reduce the number of conversion steps. Thus, we discourage its use, but include its definition so that there is a formal definition of this symbol. (Contributed by David A. Wheeler, 19-Apr-2015.) (New usage is discouraged.) |
⊢ > = ◡ < | ||
Theorem | gte-lte 48341 | Simple relationship between ≤ and ≥. (Contributed by David A. Wheeler, 10-May-2015.) (New usage is discouraged.) |
⊢ ((𝐴 ∈ V ∧ 𝐵 ∈ V) → (𝐴 ≥ 𝐵 ↔ 𝐵 ≤ 𝐴)) | ||
Theorem | gt-lt 48342 | Simple relationship between < and >. (Contributed by David A. Wheeler, 19-Apr-2015.) (New usage is discouraged.) |
⊢ ((𝐴 ∈ V ∧ 𝐵 ∈ V) → (𝐴 > 𝐵 ↔ 𝐵 < 𝐴)) | ||
Theorem | gte-lteh 48343 | Relationship between ≤ and ≥ using hypotheses. (Contributed by David A. Wheeler, 10-May-2015.) (New usage is discouraged.) |
⊢ 𝐴 ∈ V & ⊢ 𝐵 ∈ V ⇒ ⊢ (𝐴 ≥ 𝐵 ↔ 𝐵 ≤ 𝐴) | ||
Theorem | gt-lth 48344 | Relationship between < and > using hypotheses. (Contributed by David A. Wheeler, 19-Apr-2015.) (New usage is discouraged.) |
⊢ 𝐴 ∈ V & ⊢ 𝐵 ∈ V ⇒ ⊢ (𝐴 > 𝐵 ↔ 𝐵 < 𝐴) | ||
Theorem | ex-gt 48345 | Simple example of >, in this case, 0 is not greater than 0. This is useful as an example, and helps us gain confidence that we've correctly defined the symbol. (Contributed by David A. Wheeler, 1-Jan-2017.) (New usage is discouraged.) |
⊢ ¬ 0 > 0 | ||
Theorem | ex-gte 48346 | Simple example of ≥, in this case, 0 is greater than or equal to 0. This is useful as an example, and helps us gain confidence that we've correctly defined the symbol. (Contributed by David A. Wheeler, 1-Jan-2017.) (New usage is discouraged.) |
⊢ 0 ≥ 0 | ||
It is a convention of set.mm to not use sinh and so on directly, and instead of use expansions such as (cos‘(i · 𝑥)). However, I believe it's important to give formal definitions for these conventional functions as they are typically used, so here they are. A few related identities are also proved. | ||
Syntax | csinh 48347 | Extend class notation to include the hyperbolic sine function, see df-sinh 48350. |
class sinh | ||
Syntax | ccosh 48348 | Extend class notation to include the hyperbolic cosine function. see df-cosh 48351. |
class cosh | ||
Syntax | ctanh 48349 | Extend class notation to include the hyperbolic tangent function, see df-tanh 48352. |
class tanh | ||
Definition | df-sinh 48350 | Define the hyperbolic sine function (sinh). We define it this way for cmpt 5232, which requires the form (𝑥 ∈ 𝐴 ↦ 𝐵). See sinhval-named 48353 for a simple way to evaluate it. We define this function by dividing by i, which uses fewer operations than many conventional definitions (and thus is more convenient to use in set.mm). See sinh-conventional 48356 for a justification that our definition is the same as the conventional definition of sinh used in other sources. (Contributed by David A. Wheeler, 20-Apr-2015.) |
⊢ sinh = (𝑥 ∈ ℂ ↦ ((sin‘(i · 𝑥)) / i)) | ||
Definition | df-cosh 48351 | Define the hyperbolic cosine function (cosh). We define it this way for cmpt 5232, which requires the form (𝑥 ∈ 𝐴 ↦ 𝐵). (Contributed by David A. Wheeler, 10-May-2015.) |
⊢ cosh = (𝑥 ∈ ℂ ↦ (cos‘(i · 𝑥))) | ||
Definition | df-tanh 48352 | Define the hyperbolic tangent function (tanh). We define it this way for cmpt 5232, which requires the form (𝑥 ∈ 𝐴 ↦ 𝐵). (Contributed by David A. Wheeler, 10-May-2015.) |
⊢ tanh = (𝑥 ∈ (◡cosh “ (ℂ ∖ {0})) ↦ ((tan‘(i · 𝑥)) / i)) | ||
Theorem | sinhval-named 48353 | Value of the named sinh function. Here we show the simple conversion to the conventional form used in set.mm, using the definition given by df-sinh 48350. See sinhval 16134 for a theorem to convert this further. See sinh-conventional 48356 for a justification that our definition is the same as the conventional definition of sinh used in other sources. (Contributed by David A. Wheeler, 20-Apr-2015.) |
⊢ (𝐴 ∈ ℂ → (sinh‘𝐴) = ((sin‘(i · 𝐴)) / i)) | ||
Theorem | coshval-named 48354 | Value of the named cosh function. Here we show the simple conversion to the conventional form used in set.mm, using the definition given by df-cosh 48351. See coshval 16135 for a theorem to convert this further. (Contributed by David A. Wheeler, 10-May-2015.) |
⊢ (𝐴 ∈ ℂ → (cosh‘𝐴) = (cos‘(i · 𝐴))) | ||
Theorem | tanhval-named 48355 | Value of the named tanh function. Here we show the simple conversion to the conventional form used in set.mm, using the definition given by df-tanh 48352. (Contributed by David A. Wheeler, 10-May-2015.) |
⊢ (𝐴 ∈ (◡cosh “ (ℂ ∖ {0})) → (tanh‘𝐴) = ((tan‘(i · 𝐴)) / i)) | ||
Theorem | sinh-conventional 48356 | Conventional definition of sinh. Here we show that the sinh definition we're using has the same meaning as the conventional definition used in some other sources. We choose a slightly different definition of sinh because it has fewer operations, and thus is more convenient to manipulate using set.mm. (Contributed by David A. Wheeler, 10-May-2015.) |
⊢ (𝐴 ∈ ℂ → (sinh‘𝐴) = (-i · (sin‘(i · 𝐴)))) | ||
Theorem | sinhpcosh 48357 | Prove that (sinh‘𝐴) + (cosh‘𝐴) = (exp‘𝐴) using the conventional hyperbolic trigonometric functions. (Contributed by David A. Wheeler, 27-May-2015.) |
⊢ (𝐴 ∈ ℂ → ((sinh‘𝐴) + (cosh‘𝐴)) = (exp‘𝐴)) | ||
Define the traditional reciprocal trigonometric functions secant (sec), cosecant (csc), and cotangent (cos), along with various identities involving them. | ||
Syntax | csec 48358 | Extend class notation to include the secant function, see df-sec 48361. |
class sec | ||
Syntax | ccsc 48359 | Extend class notation to include the cosecant function, see df-csc 48362. |
class csc | ||
Syntax | ccot 48360 | Extend class notation to include the cotangent function, see df-cot 48363. |
class cot | ||
Definition | df-sec 48361* | Define the secant function. We define it this way for cmpt 5232, which requires the form (𝑥 ∈ 𝐴 ↦ 𝐵). The sec function is defined in ISO 80000-2:2009(E) operation 2-13.6 and "NIST Digital Library of Mathematical Functions" section on "Trigonometric Functions" http://dlmf.nist.gov/4.14 5232. (Contributed by David A. Wheeler, 14-Mar-2014.) |
⊢ sec = (𝑥 ∈ {𝑦 ∈ ℂ ∣ (cos‘𝑦) ≠ 0} ↦ (1 / (cos‘𝑥))) | ||
Definition | df-csc 48362* | Define the cosecant function. We define it this way for cmpt 5232, which requires the form (𝑥 ∈ 𝐴 ↦ 𝐵). The csc function is defined in ISO 80000-2:2009(E) operation 2-13.7 and "NIST Digital Library of Mathematical Functions" section on "Trigonometric Functions" http://dlmf.nist.gov/4.14 5232. (Contributed by David A. Wheeler, 14-Mar-2014.) |
⊢ csc = (𝑥 ∈ {𝑦 ∈ ℂ ∣ (sin‘𝑦) ≠ 0} ↦ (1 / (sin‘𝑥))) | ||
Definition | df-cot 48363* | Define the cotangent function. We define it this way for cmpt 5232, which requires the form (𝑥 ∈ 𝐴 ↦ 𝐵). The cot function is defined in ISO 80000-2:2009(E) operation 2-13.5 and "NIST Digital Library of Mathematical Functions" section on "Trigonometric Functions" http://dlmf.nist.gov/4.14 5232. (Contributed by David A. Wheeler, 14-Mar-2014.) |
⊢ cot = (𝑥 ∈ {𝑦 ∈ ℂ ∣ (sin‘𝑦) ≠ 0} ↦ ((cos‘𝑥) / (sin‘𝑥))) | ||
Theorem | secval 48364 | Value of the secant function. (Contributed by David A. Wheeler, 14-Mar-2014.) |
⊢ ((𝐴 ∈ ℂ ∧ (cos‘𝐴) ≠ 0) → (sec‘𝐴) = (1 / (cos‘𝐴))) | ||
Theorem | cscval 48365 | Value of the cosecant function. (Contributed by David A. Wheeler, 14-Mar-2014.) |
⊢ ((𝐴 ∈ ℂ ∧ (sin‘𝐴) ≠ 0) → (csc‘𝐴) = (1 / (sin‘𝐴))) | ||
Theorem | cotval 48366 | Value of the cotangent function. (Contributed by David A. Wheeler, 14-Mar-2014.) |
⊢ ((𝐴 ∈ ℂ ∧ (sin‘𝐴) ≠ 0) → (cot‘𝐴) = ((cos‘𝐴) / (sin‘𝐴))) | ||
Theorem | seccl 48367 | The closure of the secant function with a complex argument. (Contributed by David A. Wheeler, 14-Mar-2014.) |
⊢ ((𝐴 ∈ ℂ ∧ (cos‘𝐴) ≠ 0) → (sec‘𝐴) ∈ ℂ) | ||
Theorem | csccl 48368 | The closure of the cosecant function with a complex argument. (Contributed by David A. Wheeler, 14-Mar-2014.) |
⊢ ((𝐴 ∈ ℂ ∧ (sin‘𝐴) ≠ 0) → (csc‘𝐴) ∈ ℂ) | ||
Theorem | cotcl 48369 | The closure of the cotangent function with a complex argument. (Contributed by David A. Wheeler, 15-Mar-2014.) |
⊢ ((𝐴 ∈ ℂ ∧ (sin‘𝐴) ≠ 0) → (cot‘𝐴) ∈ ℂ) | ||
Theorem | reseccl 48370 | The closure of the secant function with a real argument. (Contributed by David A. Wheeler, 15-Mar-2014.) |
⊢ ((𝐴 ∈ ℝ ∧ (cos‘𝐴) ≠ 0) → (sec‘𝐴) ∈ ℝ) | ||
Theorem | recsccl 48371 | The closure of the cosecant function with a real argument. (Contributed by David A. Wheeler, 15-Mar-2014.) |
⊢ ((𝐴 ∈ ℝ ∧ (sin‘𝐴) ≠ 0) → (csc‘𝐴) ∈ ℝ) | ||
Theorem | recotcl 48372 | The closure of the cotangent function with a real argument. (Contributed by David A. Wheeler, 15-Mar-2014.) |
⊢ ((𝐴 ∈ ℝ ∧ (sin‘𝐴) ≠ 0) → (cot‘𝐴) ∈ ℝ) | ||
Theorem | recsec 48373 | The reciprocal of secant is cosine. (Contributed by David A. Wheeler, 14-Mar-2014.) |
⊢ ((𝐴 ∈ ℂ ∧ (cos‘𝐴) ≠ 0) → (cos‘𝐴) = (1 / (sec‘𝐴))) | ||
Theorem | reccsc 48374 | The reciprocal of cosecant is sine. (Contributed by David A. Wheeler, 14-Mar-2014.) |
⊢ ((𝐴 ∈ ℂ ∧ (sin‘𝐴) ≠ 0) → (sin‘𝐴) = (1 / (csc‘𝐴))) | ||
Theorem | reccot 48375 | The reciprocal of cotangent is tangent. (Contributed by David A. Wheeler, 21-Mar-2014.) |
⊢ ((𝐴 ∈ ℂ ∧ (sin‘𝐴) ≠ 0 ∧ (cos‘𝐴) ≠ 0) → (tan‘𝐴) = (1 / (cot‘𝐴))) | ||
Theorem | rectan 48376 | The reciprocal of tangent is cotangent. (Contributed by David A. Wheeler, 21-Mar-2014.) |
⊢ ((𝐴 ∈ ℂ ∧ (sin‘𝐴) ≠ 0 ∧ (cos‘𝐴) ≠ 0) → (cot‘𝐴) = (1 / (tan‘𝐴))) | ||
Theorem | sec0 48377 | The value of the secant function at zero is one. (Contributed by David A. Wheeler, 16-Mar-2014.) |
⊢ (sec‘0) = 1 | ||
Theorem | onetansqsecsq 48378 | Prove the tangent squared secant squared identity (1 + ((tan A ) ^ 2 ) ) = ( ( sec 𝐴)↑2)). (Contributed by David A. Wheeler, 25-May-2015.) |
⊢ ((𝐴 ∈ ℂ ∧ (cos‘𝐴) ≠ 0) → (1 + ((tan‘𝐴)↑2)) = ((sec‘𝐴)↑2)) | ||
Theorem | cotsqcscsq 48379 | Prove the tangent squared cosecant squared identity (1 + ((cot A ) ^ 2 ) ) = ( ( csc 𝐴)↑2)). (Contributed by David A. Wheeler, 27-May-2015.) |
⊢ ((𝐴 ∈ ℂ ∧ (sin‘𝐴) ≠ 0) → (1 + ((cot‘𝐴)↑2)) = ((csc‘𝐴)↑2)) | ||
Utility theorems for "if". | ||
Theorem | ifnmfalse 48380 | If A is not a member of B, but an "if" condition requires it, then the "false" branch results. This is a simple utility to provide a slight shortening and simplification of proofs versus applying iffalse 4539 directly in this case. (Contributed by David A. Wheeler, 15-May-2015.) |
⊢ (𝐴 ∉ 𝐵 → if(𝐴 ∈ 𝐵, 𝐶, 𝐷) = 𝐷) | ||
Most of this subsection was moved to main set.mm, section "Logarithms to an arbitrary base". | ||
Theorem | logb2aval 48381 | Define the value of the logb function, the logarithm generalized to an arbitrary base, when used in the 2-argument form logb 〈𝐵, 𝑋〉 (Contributed by David A. Wheeler, 21-Jan-2017.) (Revised by David A. Wheeler, 16-Jul-2017.) |
⊢ ((𝐵 ∈ (ℂ ∖ {0, 1}) ∧ 𝑋 ∈ (ℂ ∖ {0})) → ( logb ‘〈𝐵, 𝑋〉) = ((log‘𝑋) / (log‘𝐵))) | ||
Define "log using an arbitrary base" function and then prove some of its properties. This builds on previous work by Stefan O'Rear. This supports the notational form ((log_‘𝐵)‘𝑋); that looks a little more like traditional notation, but is different from other 2-parameter functions. E.g., ((log_‘;10)‘;;100) = 2. This form is less convenient to work with inside set.mm as compared to the (𝐵 logb 𝑋) form defined separately. | ||
Syntax | clog- 48382 | Extend class notation to include the logarithm generalized to an arbitrary base. |
class log_ | ||
Definition | df-logbALT 48383* | Define the log_ operator. This is the logarithm generalized to an arbitrary base. It can be used as ((log_‘𝐵)‘𝑋) for "log base B of X". This formulation suggested by Mario Carneiro. (Contributed by David A. Wheeler, 14-Jul-2017.) (New usage is discouraged.) |
⊢ log_ = (𝑏 ∈ (ℂ ∖ {0, 1}) ↦ (𝑥 ∈ (ℂ ∖ {0}) ↦ ((log‘𝑥) / (log‘𝑏)))) | ||
EXPERIMENTAL. Several terms are used in comments but not directly defined in set.mm. For example, there are proofs that a number of specific relations are reflexive, but there is no formal definition of what being reflexive actually *means*. Stating the relationships directly, instead of defining a broader property such as being reflexive, can reduce proof size (because the definition of that property does not need to be expanded later). A disadvantage, however, is that there are several terms that are widely used in comments but do not have a clear formal definition. Here we define wffs that formally define some of these key terms. The intent isn't to use these directly, but to instead provide a clear formal definition of widely-used mathematical terminology (we even use this terminology within the comments of set.mm itself). We could define these using extensible structures, but doing so appears overly restrictive. These definitions don't require the use of extensible structures; requiring something to be in an extensible structure to use them is too restrictive. Even if an extensible structure is already in use, it may in use for other things. For example, in geometry, there is a "less-than" relation, but while the geometry itself is an extensible structure, we would have to build a new structure to state "the geometric less-than relation is transitive" (which is more work than it's probably worth). By creating definitions that aren't tied to extensible structures we create definitions that can be applied to anything, including extensible structures, in whatever way we'd like. BJ suggests that it might be better to define these as functions. There are many advantages to doing that, but they won't work for proper classes. I'm currently trying to also support proper classes, so I have not taken that approach, but if that turns out to be unreasonable then BJ's approach is very much worth considering. Examples would be: BinRel = (𝑥 ∈ V ↦ {𝑟 ∣ 𝑟 ⊆ (𝑥 × 𝑥)}), ReflBinRel = (𝑥 ∈ V ↦ {𝑟 ∈ ( BinRel ‘𝑥) ∣ ( I ↾ 𝑥) ⊆ 𝑟}), and IrreflBinRel = (𝑥 ∈ V ↦ {𝑟 ∈ ( BinRel ‘𝑥) ∣ (𝑟 ∩ ( I ↾ 𝑥)) = ∅}). For more discussion see: https://github.com/metamath/set.mm/pull/1286 | ||
Syntax | wreflexive 48384 | Extend wff definition to include "Reflexive" applied to a class, which is true iff class R is a reflexive relation over the set A. See df-reflexive 48385. (Contributed by David A. Wheeler, 1-Dec-2019.) |
wff 𝑅Reflexive𝐴 | ||
Definition | df-reflexive 48385* | Define reflexive relation; relation 𝑅 is reflexive over the set 𝐴 iff ∀𝑥 ∈ 𝐴𝑥𝑅𝑥. (Contributed by David A. Wheeler, 1-Dec-2019.) |
⊢ (𝑅Reflexive𝐴 ↔ (𝑅 ⊆ (𝐴 × 𝐴) ∧ ∀𝑥 ∈ 𝐴 𝑥𝑅𝑥)) | ||
Syntax | wirreflexive 48386 | Extend wff definition to include "Irreflexive" applied to a class, which is true iff class R is an irreflexive relation over the set A. See df-irreflexive 48387. (Contributed by David A. Wheeler, 1-Dec-2019.) |
wff 𝑅Irreflexive𝐴 | ||
Definition | df-irreflexive 48387* | Define irreflexive relation; relation 𝑅 is irreflexive over the set 𝐴 iff ∀𝑥 ∈ 𝐴¬ 𝑥𝑅𝑥. Note that a relation can be neither reflexive nor irreflexive. (Contributed by David A. Wheeler, 1-Dec-2019.) |
⊢ (𝑅Irreflexive𝐴 ↔ (𝑅 ⊆ (𝐴 × 𝐴) ∧ ∀𝑥 ∈ 𝐴 ¬ 𝑥𝑅𝑥)) | ||
This is an experimental approach to make it clearer (and easier) to do basic algebra in set.mm. These little theorems support basic algebra on equations at a slightly higher conceptual level. Instead of always having to "build up" equivalent expressions for one side of an equation, these theorems allow you to directly manipulate an equality. These higher-level steps lead to easier to understand proofs when they can be used, as well as proofs that are slightly shorter (when measured in steps). There are disadvantages. In particular, this approach requires many theorems (for many permutations to provide all of the operations). It can also only handle certain cases; more complex approaches must still be approached by "building up" equalities as is done today. However, I expect that we can create enough theorems to make it worth doing. I'm trying this out to see if this is helpful and if the number of permutations is manageable. To commute LHS for addition, use addcomli 11438. We might want to switch to a naming convention like addcomli 11438. | ||
Theorem | comraddi 48388 | Commute RHS addition. See addcomli 11438 to commute addition on LHS. (Contributed by David A. Wheeler, 11-Oct-2018.) |
⊢ 𝐵 ∈ ℂ & ⊢ 𝐶 ∈ ℂ & ⊢ 𝐴 = (𝐵 + 𝐶) ⇒ ⊢ 𝐴 = (𝐶 + 𝐵) | ||
Theorem | mvlraddi 48389 | Move the right term in a sum on the LHS to the RHS. (Contributed by David A. Wheeler, 11-Oct-2018.) |
⊢ 𝐴 ∈ ℂ & ⊢ 𝐵 ∈ ℂ & ⊢ (𝐴 + 𝐵) = 𝐶 ⇒ ⊢ 𝐴 = (𝐶 − 𝐵) | ||
Theorem | mvrladdi 48390 | Move the left term in a sum on the RHS to the LHS. (Contributed by David A. Wheeler, 11-Oct-2018.) |
⊢ 𝐵 ∈ ℂ & ⊢ 𝐶 ∈ ℂ & ⊢ 𝐴 = (𝐵 + 𝐶) ⇒ ⊢ (𝐴 − 𝐵) = 𝐶 | ||
Theorem | assraddsubi 48391 | Associate RHS addition-subtraction. (Contributed by David A. Wheeler, 11-Oct-2018.) |
⊢ 𝐵 ∈ ℂ & ⊢ 𝐶 ∈ ℂ & ⊢ 𝐷 ∈ ℂ & ⊢ 𝐴 = ((𝐵 + 𝐶) − 𝐷) ⇒ ⊢ 𝐴 = (𝐵 + (𝐶 − 𝐷)) | ||
Theorem | joinlmuladdmuli 48392 | Join AB+CB into (A+C) on LHS. (Contributed by David A. Wheeler, 26-Oct-2019.) |
⊢ 𝐴 ∈ ℂ & ⊢ 𝐵 ∈ ℂ & ⊢ 𝐶 ∈ ℂ & ⊢ ((𝐴 · 𝐵) + (𝐶 · 𝐵)) = 𝐷 ⇒ ⊢ ((𝐴 + 𝐶) · 𝐵) = 𝐷 | ||
Theorem | joinlmulsubmuld 48393 | Join AB-CB into (A-C) on LHS. (Contributed by David A. Wheeler, 15-Oct-2018.) |
⊢ (𝜑 → 𝐴 ∈ ℂ) & ⊢ (𝜑 → 𝐵 ∈ ℂ) & ⊢ (𝜑 → 𝐶 ∈ ℂ) & ⊢ (𝜑 → ((𝐴 · 𝐵) − (𝐶 · 𝐵)) = 𝐷) ⇒ ⊢ (𝜑 → ((𝐴 − 𝐶) · 𝐵) = 𝐷) | ||
Theorem | joinlmulsubmuli 48394 | Join AB-CB into (A-C) on LHS. (Contributed by David A. Wheeler, 11-Oct-2018.) |
⊢ 𝐴 ∈ ℂ & ⊢ 𝐵 ∈ ℂ & ⊢ 𝐶 ∈ ℂ & ⊢ ((𝐴 · 𝐵) − (𝐶 · 𝐵)) = 𝐷 ⇒ ⊢ ((𝐴 − 𝐶) · 𝐵) = 𝐷 | ||
Theorem | mvlrmuld 48395 | Move the right term in a product on the LHS to the RHS, deduction form. (Contributed by David A. Wheeler, 11-Oct-2018.) |
⊢ (𝜑 → 𝐴 ∈ ℂ) & ⊢ (𝜑 → 𝐵 ∈ ℂ) & ⊢ (𝜑 → 𝐵 ≠ 0) & ⊢ (𝜑 → (𝐴 · 𝐵) = 𝐶) ⇒ ⊢ (𝜑 → 𝐴 = (𝐶 / 𝐵)) | ||
Theorem | mvlrmuli 48396 | Move the right term in a product on the LHS to the RHS, inference form. (Contributed by David A. Wheeler, 11-Oct-2018.) |
⊢ 𝐴 ∈ ℂ & ⊢ 𝐵 ∈ ℂ & ⊢ 𝐵 ≠ 0 & ⊢ (𝐴 · 𝐵) = 𝐶 ⇒ ⊢ 𝐴 = (𝐶 / 𝐵) | ||
Examples using the algebra helpers. | ||
Theorem | i2linesi 48397 | Solve for the intersection of two lines expressed in Y = MX+B form (note that the lines cannot be vertical). Here we use inference form. We just solve for X, since Y can be trivially found by using X. This is an example of how to use the algebra helpers. Notice that because this proof uses algebra helpers, the main steps of the proof are higher level and easier to follow by a human reader. (Contributed by David A. Wheeler, 11-Oct-2018.) |
⊢ 𝐴 ∈ ℂ & ⊢ 𝐵 ∈ ℂ & ⊢ 𝐶 ∈ ℂ & ⊢ 𝐷 ∈ ℂ & ⊢ 𝑋 ∈ ℂ & ⊢ 𝑌 = ((𝐴 · 𝑋) + 𝐵) & ⊢ 𝑌 = ((𝐶 · 𝑋) + 𝐷) & ⊢ (𝐴 − 𝐶) ≠ 0 ⇒ ⊢ 𝑋 = ((𝐷 − 𝐵) / (𝐴 − 𝐶)) | ||
Theorem | i2linesd 48398 | Solve for the intersection of two lines expressed in Y = MX+B form (note that the lines cannot be vertical). Here we use deduction form. We just solve for X, since Y can be trivially found by using X. This is an example of how to use the algebra helpers. Notice that because this proof uses algebra helpers, the main steps of the proof are higher level and easier to follow by a human reader. (Contributed by David A. Wheeler, 15-Oct-2018.) |
⊢ (𝜑 → 𝐴 ∈ ℂ) & ⊢ (𝜑 → 𝐵 ∈ ℂ) & ⊢ (𝜑 → 𝐶 ∈ ℂ) & ⊢ (𝜑 → 𝐷 ∈ ℂ) & ⊢ (𝜑 → 𝑋 ∈ ℂ) & ⊢ (𝜑 → 𝑌 = ((𝐴 · 𝑋) + 𝐵)) & ⊢ (𝜑 → 𝑌 = ((𝐶 · 𝑋) + 𝐷)) & ⊢ (𝜑 → (𝐴 − 𝐶) ≠ 0) ⇒ ⊢ (𝜑 → 𝑋 = ((𝐷 − 𝐵) / (𝐴 − 𝐶))) | ||
Prove that some formal expressions using classical logic have meanings that might not be obvious to some lay readers. I find these are common mistakes and are worth pointing out to new people. In particular we prove alimp-surprise 48399, empty-surprise 48401, and eximp-surprise 48403. | ||
Theorem | alimp-surprise 48399 |
Demonstrate that when using "for all" and material implication the
consequent can be both always true and always false if there is no case
where the antecedent is true.
Those inexperienced with formal notations of classical logic can be surprised with what "for all" and material implication do together when the implication's antecedent is never true. This can happen, for example, when the antecedent is set membership but the set is the empty set (e.g., 𝑥 ∈ 𝑀 and 𝑀 = ∅). This is perhaps best explained using an example. The sentence "All Martians are green" would typically be represented formally using the expression ∀𝑥(𝜑 → 𝜓). In this expression 𝜑 is true iff 𝑥 is a Martian and 𝜓 is true iff 𝑥 is green. Similarly, "All Martians are not green" would typically be represented as ∀𝑥(𝜑 → ¬ 𝜓). However, if there are no Martians (¬ ∃𝑥𝜑), then both of those expressions are true. That is surprising to the inexperienced, because the two expressions seem to be the opposite of each other. The reason this occurs is because in classical logic the implication (𝜑 → 𝜓) is equivalent to ¬ 𝜑 ∨ 𝜓 (as proven in imor 851). When 𝜑 is always false, ¬ 𝜑 is always true, and an or with true is always true. Here are a few technical notes. In this notation, 𝜑 and 𝜓 are predicates that return a true or false value and may depend on 𝑥. We only say may because it actually doesn't matter for our proof. In Metamath this simply means that we do not require that 𝜑, 𝜓, and 𝑥 be distinct (so 𝑥 can be part of 𝜑 or 𝜓). In natural language the term "implies" often presumes that the antecedent can occur in at one least circumstance and that there is some sort of causality. However, exactly what causality means is complex and situation-dependent. Modern logic typically uses material implication instead; this has a rigorous definition, but it is important for new users of formal notation to precisely understand it. There are ways to solve this, e.g., expressly stating that the antecedent exists (see alimp-no-surprise 48400) or using the allsome quantifier (df-alsi 48407) . For other "surprises" for new users of classical logic, see empty-surprise 48401 and eximp-surprise 48403. (Contributed by David A. Wheeler, 17-Oct-2018.) |
⊢ ¬ ∃𝑥𝜑 ⇒ ⊢ (∀𝑥(𝜑 → 𝜓) ∧ ∀𝑥(𝜑 → ¬ 𝜓)) | ||
Theorem | alimp-no-surprise 48400 | There is no "surprise" in a for-all with implication if there exists a value where the antecedent is true. This is one way to prevent for-all with implication from allowing anything. For a contrast, see alimp-surprise 48399. The allsome quantifier also counters this problem, see df-alsi 48407. (Contributed by David A. Wheeler, 27-Oct-2018.) |
⊢ ¬ (∀𝑥(𝜑 → 𝜓) ∧ ∀𝑥(𝜑 → ¬ 𝜓) ∧ ∃𝑥𝜑) |
< Previous Next > |
Copyright terms: Public domain | < Previous Next > |