Skip to main content

Questions tagged [recursion]

Recursion is the process of repeating items in a self-similar way. A recursive definition (or inductive definition) in mathematical logic and computer science is used to define an object in terms of itself. A recursive definition of a function defines values of a function for some inputs in terms of the values of the same function on other inputs. Please use the tag 'computability' instead for questions about "recursive functions" in computability theory

0 votes
0 answers
22 views

I have a DAG where every node has a (usually small) set of candidate integers. A candidate a is compatible with b if (a | b) or (b | a). For every root I want to choose one candidate per node to ...
user5109988's user avatar
10 votes
5 answers
1k views

I’ve read similar questions, but the answers I found were either contradictory or too advanced for my current level. I’m a computer engineering student, and I’m trying to understand a point in Terence ...
Federico Tecleme's user avatar
5 votes
1 answer
149 views

I am reading Robert I. Soare's "Recursively Enumerable Sets and Degrees: A Study of Computable Functions and Computably Generated Sets" for a directed reading course. I am having trouble ...
Emily Reynolds's user avatar
2 votes
0 answers
42 views

One might solve linear recursions in one variable using the characteristic polynomial (or something similar.) The most famous example might the the Fibonacci sequence via the roots of the ...
learningjulia83's user avatar
1 vote
0 answers
79 views

Consider the following sequence of even polynomials $f_k:[0,1]\to\mathbb R$ , $$ \begin{cases} \,f_k(x)\,= \frac{(1-x^2)^2}{2}\,f_{k-1}''(x) \quad \textrm{for } k\geq 2\\ f_1(x)=x^2 \end{cases}$$ I ...
tituf's user avatar
  • 951
2 votes
1 answer
120 views

I am trying to prove that a certain function is partial recursive. Suppose we have fixed primitive recursive $g:\mathbb{N} \rightarrow \mathbb{N}$ and for each $d$ let $f_d:\mathbb{N}\rightarrow \...
medvjed's user avatar
  • 167
4 votes
1 answer
154 views

In Mihai Prunescu, Lorenzo Sauras-Altuzarra, and Joseph M. Shunia (2025), A Minimal Substitution Basis for the Kalmar Elementary Functions, the authors define a minimal generating set for the Kalmár ...
Alfa Beta's user avatar
1 vote
2 answers
175 views

In Exercise $3.5.12$ in Tao's Analysis $1$, he asks the following: Let $X$ be a set, and $f:\mathbb{N} \times X \to X$ and let $c \in X$. Prove that there exists an $a:\mathbb{N} \to X$, such that (i)...
user992197's user avatar
0 votes
0 answers
60 views

I have two sets of variables denoted $c_{n,m}$ and $\beta_n$, where $n,m \geq 0$ are integers. We assume $n\geq m$. These variables obey the recurrence relations $$ \begin{align} c_{n+1,m}&= c_{n,...
miggle's user avatar
  • 391
7 votes
1 answer
241 views

Gödel's Incompleteness Theorems apply to formal systems $T$ that can represent the provability predicate $\text{Prov}_T(y)$ so that $T\vdash\text{Prov}_T(\ulcorner\psi\urcorner)$ whenever $T\vdash\psi$...
mjtsquared's user avatar
1 vote
0 answers
114 views

I’m studying a recursively defined estimator and want to prove consistency. The estimator is not merely computed by a recursive algorithm—the value on a sample is defined (also) through values on sub-...
vandenheuvel's user avatar
7 votes
0 answers
126 views

So the question is as follows: We shall define a sequence $(a_n)_{n=1}^{\infty}$ as follows: Let $a_1:=4,$ and for all $n\ge 2,$ $$a_n=a_{n-1}+\frac{4}{a_{n-1}}.$$ Now the question originally asked ...
FKcosθ's user avatar
  • 717
1 vote
1 answer
104 views

I am working with recursive functions on $\omega$. It is well known that these functions are representable, in the sense of the following definition: A function $f:\omega\to\omega$ is representable in ...
user19872448's user avatar
0 votes
0 answers
39 views

Suppose I have a matrix $A_{n \times n} , n \ge 2$. Let $n_1,n_2,\cdots,n_k$ be natural numbers such that $\sum_{i=1}^k n_i = n.$ Define $n_i^* = n_1+\cdots+n_i$ Then , $A$ can be partitioned as : $\...
MathMan's user avatar
  • 9,340
1 vote
1 answer
105 views

Given a recursive Boolean function $$ f(t) = \begin{cases} \text{false} & \text{if} & t \le 0 \\ g(t) & \text{otherwise} \end{cases} $$ where $t$ is an integer and $g$ is a function ...
GulgDev's user avatar
  • 11

15 30 50 per page
1
2 3 4 5
196