Questions tagged [natural-numbers]

For question about natural numbers $\Bbb N$, their properties and applications

In mathematics, the natural numbers are those used for counting ("there are six coins on the table") and ordering ("this is the third largest city in the country"). These purposes are related to the linguistic notions of and , respectively (see English numerals). A later notion is that of a nominal number, which is used only for naming.

Properties of the natural numbers related to , such as the distribution of , are studied in . Problems concerning counting and ordering, such as partition enumeration, are studied in .

1294 questions
1
vote
1 answer

What is the solution of this algebraic problem?

Let $a, b, n, X$ and $Y \in \mathbb{N}$. Find $X$ and $Y$ such that $(a+b)^{n} = X + Yb$.
Alezigl
  • 225
1
vote
1 answer

Are there any integers that are considered uncomputable based on their extremely large size alone?

This is difficult to frame, but my question is if there are any finite integers that are so large that they are uncomputable in principle. Meaning that they cannot be handled by mathematics even in theory. So is there some kind of limit in…
1
vote
1 answer

Find all natural (+0) solutions of a system of linear equations with natural (+0) coefficients

Consider the following equation: $$ \begin{pmatrix} n_1 \\ n_2 \end{pmatrix} = \begin{pmatrix} 1 & 1 & 0 & 0 & 1 & 0 \\ 2 & 1 & 2 & 3 & 0 & 1 \end{pmatrix} \begin{pmatrix} m_1 \\ m_2 \\ m_3 \\ m_4 \\ m_5 \\ m_6 \end{pmatrix} $$ where $n_i \in…
Miguel
  • 229
1
vote
0 answers

Why does an intersection of all inductive sets comprise natural numbers?

I suppose we cannot say "Let natural numbers be $1, 1+1, 1+1+1, \dots$", but I fail to put into words why we can't. What's the reason to define natural numbers as an intersection of inductive sets? If we could define it as I wrote above, we wouldn't…
1
vote
1 answer

How to approach proving that walking this tree infinitely will product all natural numbers?

A binary tree with a root of "empty" always has a left node of 0 and a right node of 1. If we follow some path along this tree we can produce binary numbers with the least significant bit as the first step. For example travelling L->R->L->R would…
1
vote
1 answer

Total numbers formation by permutation method

How many numbers greater than $3400$ can be formed using first five natural numbers? Without and with repetition.
SandyM
  • 137
1
vote
2 answers

Are the natural numbers closed under exponentiation?

Is it true that $\forall n \in \mathbb Z^+ \land \forall i \in \mathbb Z \land i \geqslant 0: n^i \in \mathbb Z^+$? The reason I ask is because this would allow you to create a countably infinite set $$\forall k \in \mathbb Z \land k \geqslant 0,…
keluj
  • 13
1
vote
2 answers

How to recursively define a sum of any finite sequence

I'm stuck at exercise 4.9 of chapter 3 in "Introduction to set theory" of Karel Hrbacek and Thomas Jech (Third revised edition) The exercise is as follows: For each finite sequence $\langle k_i: 0 \leq i < n \rangle$ of natural numbers define $\sum…
Eparoh
  • 1,275
1
vote
0 answers

The less period of "1/b"

Which is the less "b" natural number, for which the less period of "1/b" is 7? I have already tried this way: I have the following formula: 10^i ≡ 1 (mod b), where "i" is the less period of "1/b". So I replaced this "i" with 7 (b | 10^7 - 1), and…
mrsbean
  • 11
1
vote
2 answers

Official name of "sized integers", a kind of number where $00$ is not equal to $0$?

Hierarchical identifiers, labels and indexes... All can use digits as character-strings, differenciating $0$ and $00$, $1$ and $001$, but preserving all other numeric interpretations, like order ($002>001$) and freedom for represantation (some…
Peter Krauss
  • 163
  • 8
1
vote
0 answers

A combinator-ish way to construct a set $\mathbb N_0$

We can define $0$ to be the number of elements of an empty set. Then we can define successor of $0$ as the number of all empty sets and we can denote it as our familiar $1$, since there is only one empty set. Now, we can define successor of $1$,…
Right
  • 1,386
0
votes
4 answers

Is there a listing of natural numbers with their properties?

I am looking for a category of natural numbers (about <1000 is enough) with its properties. Here's some examples : 2 - It is the first prime number. 1729 - It is the smallest number expressible as the sum of two cubes in two different ways. Here's…
Analysis
  • 877
0
votes
2 answers

Biggest 8 digit number following two specific rules

Which is the biggest 8 digit number of the form "abcdefgh" which is made up only of 1, 2, 3 and 4 and which follows the rule: the digit 1 is one digit away from another 1, the digit 2 is two digits away from another 2, the digit 3 is three digits…
Noifma
  • 1
0
votes
1 answer

Counting how many natural numbers satisfy a given condition.

I've defined a sequence of sequences $\{x^n\}$ as follows $x^1=(1^2,2^2,3^2,4^2,5^2,...)$ $x^2=(1,2^2,3^2,4^2,5^2,....)$ $x^3=(1,2,3^2,4^2,5^2,...)$ . . . and for each $n$ fixed, I am trying to determine $|\{j: x^n_{j} \leq k\}|$. In other words,…
user100106
  • 3,493
0
votes
2 answers

Function of two integers that has not repeated values

In order to implement a software I need a function $f:\mathbb{N} \times \mathbb{N} \rightarrow \mathbb{N}$ such that: $$(x' \neq x \lor y' \neq y) \Rightarrow f(x,y) \neq f(x',y') $$ It's very easy to implement an algorithm that implements such a…
Aslan986
  • 686
  • 2
  • 6
  • 16