2

The infinite set of all positive integers, i.e., evens and odds combined (sometimes including, sometimes without, $0$), is called the "natural numbers", denoted by $\mathbb{N}$. What about with a specific half of them omitted, or all of them converted to their additive inverse? And does this work the same way for finitely-defined sets?

Slightly off-topic but how might "all complex numbers" or "all rational numbers" (two cases also with special abbreviations) or "all natural numbers" or cetera be described in terms of a subset of "all numbers" (i.e. all numerical values conceivable/possible) without using their respective abbreviations?

Air Mike
  • 3,806
  • You can, for example, denote all the even natural numbers using the coset $2\mathbb{N}$. All complex numbers are simply denotaed as $\mathbb{C}$, but if you want more specific sets you might want to write something like ${a\in \mathbb{R} | \sqrt{a} > 5}$ which means all real numbers with square root greater than 5. – Eminem Dec 29 '20 at 21:01
  • I think you are asking how "all odd positive integers" are described. That seems to me like a perfectly fine description. What exactly are you asking? – Noah Caplinger Dec 29 '20 at 21:01
  • Yes, the answer to how "all odd positive integers" gets described logically is my principal question. Does an index-step need be used? –  Dec 29 '20 at 21:04
  • 3
    All odd positive integers can be described like this : ${a\in\mathbb{N}|a \equiv 1 \mod 2}$ – Eminem Dec 29 '20 at 21:07
  • There is no mathematical concept of "all numbers". Cf. https://math.stackexchange.com/a/3811935/96384 . In everyday math language, something like that would most often just mean $\mathbb C$, but any good math text that talks about "all numbers" should first of all clarify what set it would mean by that, especially if that would be something else than $\mathbb R$ or $\mathbb C$. – Torsten Schoeneberg Dec 30 '20 at 03:36

1 Answers1

1

How are integer sets of "all odd positive" or "all even negative" or "all negative" described?

To answer the question in the title, recall how can we define a set.

We can define a set by extension, listing all its elements (note that this way of defining a set doesn’t contemplate the order and the number of times the elements are listed). This method works fine for finite sets (and “small” sets) since you have to list each element, one by one.

Also, you can define a set by stating one or more conditions that are satisfied by the elements of that set (and only by them). And this is a good approach to accomplish what you want.

If you want the set of all integers that are odd and positive, then you want a set of integers $z$ that satisfies the property of “$z$ is odd and positive”. And you can represent the set as follows

$$\{n \in \mathbb{Z} : n > 0 \wedge \exists k \in \mathbb{Z} : n = 2k + 1\}.$$

Equivalently, you can define the other two sets in you question as

$$\{n \in \mathbb{Z} : z < 0 \wedge \exists k \in \mathbb{Z} : n = 2k\} \text{ and } \{n \in \mathbb{Z} : n < 0\}.$$

What about with a specific half of them omitted, or all of them converted to their additive inverse?

Suppose that you have the set $X = \{1,2,3\}.$ If you want the set of the additive inverses of the elements of $X,$ you can do it as follows (similar to the other three above)

$$\{-x : x \in X\} = \{-1,-2,-3\}.$$


If by finitely-define sets you mean sets described by extension, then the answer is yes as the example above shows.

For the set of all numbers there is no such structure.

But you can describe, for example, the set off all rational numbers and complex numbers without using its abbreviation. Just recall what is a rational number and what is a complex number. By using the notation above you can described this sets as follows

$$\{x : \exists a \in \mathbb{Z}, b \in \mathbb{N} : x = \frac{a}{b}\} \text{ and } \{x : \exists a,b \in \mathbb{R} : x = a + bi\}.$$

Air Mike
  • 3,806