Jaka jest dokładnie różnica semantyczna między zestawem a typem?


33

EDYCJA: Zadałem teraz podobne pytanie dotyczące różnicy między kategoriami i zestawami.

Za każdym razem czytam o teorii typów (co prawda jest raczej nieformalny), naprawdę nie mogę zrozumieć, jak różni się od teorii mnogości, konkretnie .

Rozumiem, że istnieje konceptualna różnica między powiedzeniem „x należy do zbioru X” a „x jest typu X”, ponieważ intuicyjnie zbiór jest tylko zbiorem obiektów, podczas gdy typ ma pewne „właściwości”. Niemniej jednak zestawy są często definiowane również według właściwości, a jeśli tak, to mam problem ze zrozumieniem, w jaki sposób to rozróżnienie ma jakiekolwiek znaczenie.

Więc w jak najbardziej konkretny sposób, co dokładnie oznacza, że x mówi, że jest typu , w porównaniu do powiedzenia, że ​​jest elementem w zestawie S ?T.S.

(Możesz wybrać dowolny typ i zestaw, który sprawia, że ​​porównanie jest najbardziej klarowne).


W jakim kontekście używasz / słyszysz słowo „pisz”? Czy to, jak sugeruje nazwa, języki programowania? Ponieważ uważam, że poniższe odpowiedzi zakładają inaczej.
einpoklum

@einpoklum, nie jestem w 100% pewien, jak opisać, czym jest „kontekst”, ale w zasadzie coś takiego: staram się zrozumieć rolę typów w matematyce. Zasadniczo zestawy (jak widzę) mają dwa konteksty: po pierwsze są używane jako zbiory przedmiotów do codziennej matematyki. Po drugie, są obiektami w teorii zbiorów aksomatycznych, gdzie są najczęściej używane jako bardzo dziwne, ale pomocne narzędzie do mówić o matematyce w logice pierwszego rzędu, pozwalając, aby zbiory odpowiadały funkcjom i liczbom i tak dalej. Interesuje mnie głównie związek między „zbiorem” w pierwszym sensie a „typem”.
user56834

Rola jakie typy? Typy, które widzisz w pracach matematycznych / podręcznikach, czy typy zmiennych w programach komputerowych?
einpoklum

1
@einpoklum, to pytanie dotyczy tych z artykułów matematycznych. (Chociaż tak naprawdę interesuje mnie również podstawowa różnica między typami w matematyce a typami w językach programowania, jeśli takie istnieją. Ale nie o to chodziło w tym pytaniu).
user56834

Odpowiedzi:


29

Aby zrozumieć różnicę między zestawów i typów, te musi wrócić do pre -mathematical idee „zbieranie” oraz „budownictwo” i zobacz, jak zestawy i typy mathematize nich.

Istnieje wiele możliwości dotyczących matematyki. Dwa z nich to:

  1. Myślimy o matematyce jako działaniu, w którym obiekty matematyczne są konstruowane zgodnie z pewnymi regułami (myślimy o geometrii jako o działaniu polegającym na konstruowaniu punktów, linii i okręgów za pomocą linijki i kompasu). W ten sposób obiekty matematyczne są zorganizowane zgodnie z tym, jak są skonstruowane , i istnieją różne typy konstrukcji. Matematyczny obiekt jest zawsze konstruowane w pewnym wyjątkowy sposób, co decyduje o jego unikalny rodzaj.

  2. Myślimy o matematyce jako rozległym wszechświecie pełnym wcześniej istniejących obiektów matematycznych (pomyśl o płaszczyźnie geometrycznej podanej). Odkrywamy, analizujemy i myślimy o tych obiektach (obserwujemy, że na płaszczyźnie są punkty, linie i okręgi). My zbieramy je do zestawu . Zwykle zbieramy elementy, które mają coś wspólnego (na przykład wszystkie linie przechodzące przez dany punkt), ale w zasadzie zestaw może zawierać dowolną selekcję obiektów. Zestaw jest określony przez jego elementy i tylko przez jego elementy. Obiekt matematyczny może należeć do wielu zbiorów.

Nie twierdzimy, że powyższe możliwości są jedynymi dwiema, ani że jedna z nich całkowicie opisuje matematykę. Niemniej jednak każdy widok może służyć jako przydatny punkt wyjścia dla ogólnej teorii matematycznej, która użytecznie opisuje szeroki zakres działań matematycznych.

Jest rzeczą naturalną, aby wziąć typu i wyobrazić sobie zbiór wszystkich rzeczy, które można zbudować z wykorzystaniem zasad T . Jest to rozszerzenie z T , a to nie T sama. Na przykład tutaj są dwa typy, które mają różne reguły budowy, ale mają to samo rozszerzenie:TTT T

  1. Typ par których n jest konstruowany jako liczba naturalna, a p jest konstruowany jako dowód pokazujący, że n jest parzystą liczbą pierwszą większą niż(n,p)npn3 .

  2. Typ par którym m jest konstruowany jako liczba naturalna, a q jest konstruowany jako dowód pokazujący, że m jest nieparzystą liczbą pierwszą mniejszą niż 2 .(m,q)mqm2

Tak, są to głupie, trywialne przykłady, ale chodzi o to, że oba typy nie mają nic w swoim rozszerzeniu, ale mają różne reguły budowy. Natomiast zestawy a { m Nm  to liczba nieparzysta mniejsza niż  2 } równe, ponieważ mają te same elementy.

{nNn is an even prime larger than 3}
{mNm is an odd prime smaller than 2}

Note that type theory is not about syntax. It is a mathematical theory of constructions, just like set theory is a mathematical theory of collections. It just so happens that the usual presentations of type theory emphasize syntax, and consequently people end up thinking type theory is syntax. This is not the case. To confuse a mathematical object (construction) with a syntactic expression that represents it (a term former) is a basic category mistake that has puzzled logicians for a long time, but not anymore.


1
Beautiful, thank you! Could you clarify one detail? when you list the two types whose extension are both empty, you say that "the type whose elements are ...". Purely for my clarity, is this a 100% correct way of saying it? You said in the previous sentence that a type is not a collection, so it seems like it cannot have "elements" (which I associate with sets). Essentially, the way you've written it now, it is as if you're defining the Type according to the set that is its extention. If you didn't intend this, could you rephrase them more precisely to capture their idea as types?
user56834

The extension of a type is a very useful concept, and since it is a kind of collection, we can say "element of the extension of a type". This is cumbersome so it often gets abbreviated to just "element of a type". I removed the phrasing to decrease the possibility of confusion, but beware, it's common terminology.
Andrej Bauer

Thank you, this clarifies. So to follow up, is it correct to say the following? To say that an object is "of type T" means the same thing as, the object is "an element of the extension of T", so that there is a natural surjection from types to sets. But the converse does not hold, because any set can be constructed in multiple ways. Essentially, the difference between set and type is not important from the perspective of a particular object x, in the sense that x:T and xXT (where XT is the extension of T) give us the exact same information about x. However,
user56834

The difference is relevant when we want to talk about types and sets, and their properties and relations. So in other words, the information that we lose when we say xXT rather than x:T does not tell us anything relevant about x, but the same may not hold if we e.g. want to talk about superset-subset or type-subtype relations? Is that correct?
user56834

4
Yeah, one wonders where these books are. Someone should write them.
Andrej Bauer

11

To start, sets and types aren't even in the same arena. Sets are the objects of a first-order theory, such as ZFC set theory. While types are like overgrown sorts. To put it a different way, a set theory is a first-order theory within first-order logic. A type theory is an extension of logic itself. Martin-Löf Type Theory, for example, is not presented as a first-order theory within first-order logic. It's not that common to talk about sets and types at the same time.

As Discrete lizard states, types (and sorts) serve a syntactic function. A sort/type behaves as a syntactic category. It lets us know what expressions are well-formed. For a simple example using sorts, let's say we described the theory of vector spaces over an arbitrary field as a 2-sorted theory. We have a sort for scalars, S, and a sort for vectors, V. Among many other things, we'd have an operation for scaling: scale:S×VV. This lets us know that scale(scale(s,v),v) is simply not a well-formed term. In a type theoretic context, an expression like f(x) requires f to have a type XY for some types X and Y. If f does not have the type of a function, then f(x) is simply not a well-formed expression. Whether an expression is of some sort or has some type is a meta-logical statement. It makes no sense to write something like: (x:X)y=3. First, x:X is simply not a formula, and second, it doesn't even conceptually make sense as sorts/types are what let us know which formulas are well-formed. We only consider the truth value of well-formed formulas, so by the time we're considering whether some formula holds, we better already know that it is well-formed!

In set theory, and particularly ZFC, the only non-logical symbol at all is the relation symbol for set membership, . So xy is a well-formed formula with a truth value. There are no terms other than variables. All the usual notation of set theory is a definitional extension to this. For example, a formula like f(x)=y is often taken to be shorthand for (x,y)f which itself may be taken as shorthand for p.pfp=(x,y)

p.pf(z.zp[z=x(w.wzw=y)])
fπ(7)=3 where π is the real number is a completely legitimate and meaningful (and potentially even true) set theoretic expression. Basically, anything you write that parses in set theory can be given some meaning. It may be a completely spurious meaning, but it has one. Sets are also "first-class" objects in set theory. (They better be as they are the only objects usually.) A function like
f(x)={N,if x=17,if x=QxRR,if x=(Z,N)
is a completely legitimate function in set theory. There is nothing even remotely analogous to this in type theory. The closest would be to use codes for a Tarskian universe. Sets are the objects of set theory; types are not the object of type theory.

A type is not a collection of things (neither is a set for that matter...), and it is not defined by a property. A type is a syntactic category that lets you know what operations are applicable to terms of that type and which expressions are well-formed. From a propositions-as-types perspective, what types are classifying are the valid proofs of the proposition to which the type corresponds. That is, the well-formed (i.e. well-typed) terms of a given type correspond to the valid proofs (which are also syntactic objects) of the corresponding proposition. Nothing like this is happening in set theory.

Set theory and type theory are really not anything alike.


1
It is false that types are only syntactic entities.
Andrej Bauer

1
This is very helpful, but one main point in your answer bugs me. It seems to me that it is a mistake (which many people make, or alternatively it is not a mistake and I'm wrong), to say that "a set is not a collection of things". I would say that a set IS a collection of things. That is the most basic essential property of a set. In fact, how would we possibly know that e.g. ZFC are the right axioms to choose (rather than completely arbitrary formulas), without being able to tell that they are true given that sets are collections of objects? Of course, I understand that ...
user56834

Axiomatic set theory treats sets as objects, and as just a symbol, because axiomatic set theory is not a mathematical structure in the mathematical logic sense.
user56834

1
@Programmer2134 To answer that, we would have to get into the semantic meaning of the word "collection." We can't be sure they are "right" unless you take the time to precisely define what "right" means. However, what we can say is that "set" is the result of over a hundred years of mathematicians beating on the concept of a collection, seeking a consistent system which matches the intuitive concept of a collection. To achieve that consistency, they had to make decisions. For example, sets aren't the only collection in mathematics. A "class" also describes a collection.
Cort Ammon - Reinstate Monica

1
@AndrejBauer I'm taking a (mostly) non-philosophical stance and not trying to explain what types "really" are but more how they're used. (I say "serves as" and "behaves as" at the beginning but I did slip into an "is" at the end.) There is a risk of thinking that a variable x being of type T means that the only "values" that x can "take" are the (presumably closed) terms of type T. This isn't true and is not implied by anything I say above. I agree that you can see types as more than syntactic entities, but I think the different syntactic role types play makes a clear contrast to sets.
Derek Elkins

9

In practice, claiming that x being of type T usually is used to describe syntax, while claiming that x is in set S is usually used to indicate a semantic property. I will give some examples to clarify this difference in usage of types and sets. For the difference in what types and sets actually are, I refer to Andrej Bauer's answer.

An example

To clarify this distinction, I will use the example given in Herman Geuvers' lecture notes. First, we look at an example of inhabiting a type:

3+(78)5:Nat,
and an example of being member of a set:
3{nNx,y,zN+(xn+ynzn)}

The main difference here is that to test whether the first expression is a natural number, we don't have to compute some semantic meaning, we merely have to 'read off' the fact that all literals are of type Nat and that all operators are closed on the type Nat.

However, for the second example of the set, we have to determine the semantic meaning of the 3 in the context of the set. For this particular set, this is quite hard: the membership of 3 for this set is equivalent to proving Fermat's last theorem! Do note that, as stated in the notes, the distinction between syntax and semantics cannot always be drawn that clearly. (and you might even argue that even this example is unclear, as Programmer2134 mentions in the comments)

Algorithms vs Proofs

To summarize, types are often used for 'simple' claims on the syntax of some expression, such that membership of a type can be checked by an algorithm, while to test membership of a set, we would in usually require a proof.

To see why this distinction is useful, consider a compiler of a typed programming language. If this compiler has to create a formal proof to 'check types', the compiler is asked to do an almost impossible task (automated theorem proving is, in general, hard). If on the other hand the compiler can simply run an (efficient) algorithm to check the types, then it can realistically perform the task.

A motivation for a strict(er) interpretation

There are multiple interpretations of the semantic meaning of sets and types. While under the distinction made here extensional types and types with undecidable type-checking (such as those used in NuPRL, as mentioned in the comments) would not be 'types', others are of course free to call them as such (just as free as they are as to call them something else, as long as their definitions fit).

However, we (Herman Geuvers and I), prefer to not throw this interpretation out of the window, for which I (not Herman, although he might agree) have the following motivation:

First of all, the intention of this interpretation isn't that far from that of Andrej Bauer. The intention of a syntax is usually to describe how to construct something and having an algorithm to actually construct it is generally useful. Furthermore, the features of a set are usually only needed when we want a semantic description, for which undecidability is allowed.

So, the advantage of our more stricter description is to keep the separation simpler, to get a distinction more directly related to common practical usage. This works well, as long as you don't need or want to loosen your usage, as you would for, e.g. NuPRL.


3
Type checking doesn't need to be decidable (though it is certainly desirable). NuPRL, for instance, does require the user to provide a proof that a term inhabits a type.
Derek Elkins

3
Thank you. Things are becoming more clear. Heres what I'm wondering still: isn't there a semantic element to type theory and a syntactic element to set theory? For example, we can instead of seeing your "3..." statement as a semantic statement, see it as a proposition in axiomatic set theory, no? Also, doesn't the type "Nat" have a semantic meaning, namely that whatever precedes it is a natural number? So it still confuses me to say rhat sets are semantic and types syntactic properties.
user56834

1
@DerekElkins I'm not familiar with NuPRL, but e.g. the proof assistant Coq most certainly does type checking by itself (i.e, is the provided term of the 'type of my theorem'). How does NuPRL verify the proof if the user has to 'prove' the fact that a term of a certain type? (in other words, this sounds like NuPRL doesn't use the Curry-Howard correspondence, so what does it use?)
Discrete lizard

1
@Discretelizard I'm not saying NuPRL is typical. It is definitely the usual case for type checking to be decidable. I highly recommend becoming familiar with it just because it takes a fairly different path. NuPRL is a Curry-style rather than Church-style calculus which makes it more of a type refinement system. At any rate, instead of just writing terms (or tactics that produce terms), you have essentially an LCF-style proof system for typing derivations themselves. Arguably, the derivations are what's important, and it's a bit of a "fluke" that we can infer them from terms.
Derek Elkins

3
I elaborated in my answer why it is detrimental to think of type theory as "syntactic". Your first sentence is the offeding one, when you say that "inhabiting a type is a syntactic property". There's as much truth in that as in saying that "being an element of a set is to stand on the left of the symbol ".
Andrej Bauer

4

I believe that one of the most concrete differences about sets and types is the difference in the way the "things" in your mind are encoded into the formal language.

Both sets and types allow you to speak about things, and collections of things. The main difference is that with sets, you can ask any question you want about things and it will maybe be true, maybe not; while with types, you first have to prove that the question makes sense.

For example, if you have booleans B={true,false} and natural numbers N={0,1,}, with types, you can not ask if true=1 which you can with sets.

One way to interpret this is that with sets, everything is encoded into a single collection: the collection of all sets. 0 is encoded as [0]={}, n+1 is encoded as [n+1]={[n]}[n] and true and false can be encoded by any two distinct sets. So that it actually makes sense to ask if true=1, as it can be understood as asking if "the encoding chosen for true is the same as the encoding chosen for 1". But the answer to this question could change if we chose another encoding: it is about the encodings and not really about the things.

You can then think of types as describing the encoding of the things inside it. With types, to ask the question of whether a=b, you first have to show that a and b have the same type, i.e. that they were encoded in the same way, which prohibits questions such as true=1. You could still want to have a big type S in which both B and N could be encoded, and then given two encodings ιB:BS and ιN:NS, you could ask whether ιB(true)=ιN(1) but the fact that this question depends on the encodings (and the choice of encodings) is now explicit.

Note that in those cases, whether the question made sense was actually easy to see but it could be much harder as in, for example, (ifvery_hard_questionthen1elsetrue)=1.

In summary, sets let you ask any question you want, but types force you to make encodings explicit when the answer may depend on them.


You are probably thinking of one specific kind of set theory (something along a single-sorted theory a la ZFC). However, there are other kinds of set theory which require lots of checking that it makes sense. And the way set theory is used in practice is much closer to these other set theories. Do you think a student could ask "Is R an element of sin(2)?" without being scolded? The distinction between type theory and set theory is not in the formalism, it's in the meaning.
Andrej Bauer

@AndrejBauer Right. Would you agree that this answer gives a differences between single-sorted theories (including most set theories, or at least the most common ones), and multi-sorted theories (including all (?) type theories)?
xavierm02

Even in a single-sorted theory you have to distinguish terms from formulas...
Andrej Bauer

@AndrejBauer I don't understand your second comment.
xavierm02

A single-sorted first-order theory has two syntactic categories: logical formulas and terms. One has to make sure they're not mixed up, or else you could end up writing "(xX.ϕ(x))N".
Andrej Bauer
Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.