Which property does it satisfy?

  • MHB
  • Thread starter evinda
  • Start date
  • Tags
    Property
In summary: The nice thing about the Kuratowski definition is that it provides (3) "for free". However, as you can see, it introduces some other properties (the fact that $\langle a,a\rangle=\{a\}$ does not hold for unordered pairs).In summary, the Kuratowski definition for the ordered pair is a way to implement the concept of an ordered pair in set theory. It defines an ordered pair of sets $a$ and $b$ as the set containing two elements, namely the set $\{a\}$ and the set $\{a,b\}$. This implementation provides the necessary properties for an ordered pair, such as injectivity, for free. However, it also introduces some incidental properties, such as
  • #1
evinda
Gold Member
MHB
3,836
0
Hey again! (Nerd)

According to my notes, the Kuratowski definition for the ordered pair is the following:

Let $a,b$ sets. We define the ordered pair of $a,b$ like that:

$$<a,b>=\{ \{a \}, \{ a, b \} \}$$

So, when $x \in <a,b>$, which property does it satisfy? (Thinking)
 
Physics news on Phys.org
  • #2
evinda said:
Hey again! (Nerd)

According to my notes, the Kuratowski definition for the ordered pair is the following:

Let $a,b$ sets. We define the ordered pair of $a,b$ like that:

$$<a,b>=\{ \{a \}, \{ a, b \} \}$$

So, when $x \in <a,b>$, which property does it satisfy? (Thinking)

Hi! :)

What are the possibilities for $x$? (Wondering)
 
  • #3
evinda said:
Let $a,b$ sets. We define the ordered pair of $a,b$ like that:

$$<a,b>=\{ \{a \}, \{ a, b \} \}$$

So, when $x \in <a,b>$, which property does it satisfy?
Strictly speaking, you need to use the axiom of pair to determine what $x\in\langle a,b\rangle$ is equivalent to.

I am not sure if this is what the exercise has in mind, but I would say $x\in\langle a,b\rangle$ is usually understood in a different, less formal way. The things is that, using programming speech, $\{ \{a \}, \{ a, b \} \}$ is just one data structure (a hack, really) that implements $\langle a,b\rangle$, i.e., behaves like we want $\langle a,b\rangle$ to behave. But as every concrete data structure, it has some incidental properties, which should rather be hidden from the "user". For a similar example, the disjoint union $A\sqcup B$ of two sets $A$ and $B$ can be implemented as $A\times\{1\}\cup B\times\{2\}$. This implementation does provide the injection functions $i_A: A\to A\sqcup B$ and $i_B: B\to A\sqcup B$ defined as $i_A(x)=\langle x,1\rangle$ and $i_B(x)=\langle x,2\rangle$, which are essential for the concept of disjoint union. But it has has some incidental properties, for example, the fact that it uses 1 and 2 and not, say, 9 and 10. This fact should be hidden because it is not intrinsic to disjoint union.

What I am trying to say is that to most people, an ordered pair is first of all a pair, so $x\mathrel{\boldsymbol{\in}}\langle a,b\rangle$ should be equivalent to $x=a\lor x=b$. But this predicate $\boldsymbol{\in}$ is different from the regular set-theoretic $\in$. If necessary, one can define it so that it works with this particular implementation of $\langle a,b\rangle$ as expected.
 
  • #4
So, what is the difference between an ordered pair and a non ordered pair? (Thinking)

What do we know for $x$, when $x \in \{ a, b \}$ and what when $x \in <a,b>$ ? :confused:
 
  • #5
When $x \in \{ a, b \} \Rightarrow x =a \text{ or } x=b$.
So, in this case $x$ is a set, right? (Thinking)

When $x \in <a,b> \Rightarrow x \in \{ \{ a \}, \{ a, b \} \} \Rightarrow x= \{ a \} \text{ or } x=\{ a, b \} $.
So, is $x$ in this case a set of a set? (Thinking)
 
  • #6
evinda said:
So, what is the difference between an ordered pair and a non ordered pair?
Informally, we want an ordered pair to contain two (possibly the same) elements as well as the information saying which element is the first and which is the second. That is, if we denote the desired set of ordered pairs where the first element comes from $A$ and the second from $B$ by $A\times B$, we want an operation $\langle\cdot,\cdot\rangle$ that takes an element of $A$ and an element of $B$ and returns an element of $A\times B$. We also want the inverse operations: projections $\pi_1: A\times B\to A$ and $\pi_2:A\times B\to B$ such that
\begin{align}
\pi_1\langle a,b\rangle&=a&&\text{for any }b\in B\qquad(1)\\
\pi_2\langle a,b\rangle&=b&&\text{for any }a\in A\qquad(2)
\end{align}
This implies that $\langle\cdot,\cdot\rangle$ is injective:
\[
\text{If }\langle a_1,b_1\rangle=\langle a_2,b_2\rangle,\text{ then }a_1=a_2\text{ and }b_1=b_2.\qquad{(3)}
\]
Indeed,
\[
\langle a_1,b_1\rangle=\langle a_2,b_2\rangle\implies a_1\overset{(1)}{=}\pi_1\langle a_1,b_1\rangle=\pi_1\langle a_2,b_2\rangle\overset{(1)}{=}a_2
\]
and similarly $b_1=b_2$. Note that if $C$ is the set of unordered pairs of elements from $A$ and $B$, then there is again a pairing function $\{\cdot,\cdot\}$ mapping $A$ and $B$ to $C$, but it has the property
\[
\{a,b\}=\{b,a\}\qquad(4)
\]
(there is only one pair with given elements, as you have shown in another thread). Therefore, there cannot be inverse functions because once two elements are packed into a unordered pair, the information which elements is the first and which is the second is lost. If there were such functions $\rho_1$ and $\rho_2$, then
\[
a=\rho_1\{a,b\}\overset{(4)}{=}\rho_1\{b,a\}=b
\]
which is a contradiction if $a\ne b$.

evinda said:
When $x \in \{ a, b \} \Rightarrow x =a \text{ or } x=b$.
Yes.
evinda said:
So, in this case $x$ is a set, right?
In axiomatic set theory, everything is a set.

evinda said:
When $x \in <a,b> \Rightarrow x \in \{ \{ a \}, \{ a, b \} \} \Rightarrow x= \{ a \} \text{ or } x=\{ a, b \} $.
Yes.

evinda said:
So, is $x$ in this case a set of a set?
Yes, but the important point is that $a$ and $b$, along with the information which of them is the first can be recovered from $\langle a,b\rangle$.

Property (3) is usually considered essential and proved for ordered pairs.
 

Related to Which property does it satisfy?

1. What is a property in science?

A property in science refers to a characteristic or attribute of a substance, object, or system that can be observed, measured, or described. Properties can be physical, such as color or texture, or chemical, such as reactivity or acidity.

2. How do properties help scientists understand the natural world?

Properties are essential for scientists to understand the natural world because they provide measurable and observable information about substances, objects, or systems. By studying the properties of different materials, scientists can make predictions, explain phenomena, and develop theories.

3. What does it mean for a substance or object to "satisfy" a property?

When a substance or object satisfies a property, it means that it possesses that specific characteristic or attribute. For example, a liquid that satisfies the property of density means that it has a specific mass per unit volume.

4. How do scientists determine which property a substance or object satisfies?

Scientists determine which property a substance or object satisfies by conducting experiments and making observations. They may use various tools and techniques to measure and observe the substance or object's physical and chemical properties, and then compare the results to known properties to identify which one it satisfies.

5. Can a substance or object satisfy more than one property?

Yes, a substance or object can satisfy multiple properties. For example, water satisfies the properties of being a liquid, having a specific density, and being transparent.

Similar threads

  • Set Theory, Logic, Probability, Statistics
Replies
10
Views
2K
  • Set Theory, Logic, Probability, Statistics
Replies
2
Views
1K
  • Set Theory, Logic, Probability, Statistics
Replies
13
Views
992
  • Set Theory, Logic, Probability, Statistics
Replies
2
Views
1K
  • Set Theory, Logic, Probability, Statistics
Replies
14
Views
4K
  • Set Theory, Logic, Probability, Statistics
Replies
7
Views
2K
  • Set Theory, Logic, Probability, Statistics
Replies
14
Views
3K
  • Set Theory, Logic, Probability, Statistics
2
Replies
54
Views
4K
  • Calculus and Beyond Homework Help
Replies
1
Views
756
  • Calculus and Beyond Homework Help
Replies
2
Views
630
Back
Top