I'm trying to understand the concept of transfinite recursion. Can someone provide me examples which clearly illustrates transfinite recursion or provide some references which I can go through?
2026-03-25 14:18:25.1774448305
Transfinite Recursion
5k Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in REFERENCE-REQUEST
- Best book to study Lie group theory
- Alternative definition for characteristic foliation of a surface
- Transition from theory of PDEs to applied analysis and industrial problems and models with PDEs
- Random variables in integrals, how to analyze?
- Abstract Algebra Preparation
- Definition of matrix valued smooth function
- CLT for Martingales
- Almost locality of cubic spline interpolation
- Identify sequences from OEIS or the literature, or find examples of odd integers $n\geq 1$ satisfying these equations related to odd perfect numbers
- property of Lebesgue measure involving small intervals
Related Questions in SET-THEORY
- Theorems in MK would imply theorems in ZFC
- What formula proved in MK or Godel Incompleteness theorem
- Proving the schema of separation from replacement
- Understanding the Axiom of Replacement
- Ordinals and cardinals in ETCS set axiomatic
- Minimal model over forcing iteration
- How can I prove that the collection of all (class-)function from a proper class A to a class B is empty?
- max of limit cardinals smaller than a successor cardinal bigger than $\aleph_\omega$
- Canonical choice of many elements not contained in a set
- Non-standard axioms + ZF and rest of math
Related Questions in TRANSFINITE-RECURSION
- Does there exist a weakly increasing cofinal function $\kappa \to \kappa$ strictly below the diagonal?
- The Veblen Hierarchy named with uncountable ordinals vs ordinal collapsing functions
- "Recursively" expressing continuous-time trajectories
- what is the difference between $\aleph_0$ and $ \beth_0$
- The components are the transfinitely iterated stationary quasicomponents
- Contents of Gentzen's consistency proof of PA
- Finding a well-ordering of the natural numbers of a given order type
- How to formally use transfinite recursion to construct a sequence for a proof of Zorn's lemma
- What does a hyperreal version of the Cantor Set look like?
- Applying transfinite recursion
Trending Questions
- Induction on the number of equations
- How to convince a math teacher of this simple and obvious fact?
- Find $E[XY|Y+Z=1 ]$
- Refuting the Anti-Cantor Cranks
- What are imaginary numbers?
- Determine the adjoint of $\tilde Q(x)$ for $\tilde Q(x)u:=(Qu)(x)$ where $Q:U→L^2(Ω,ℝ^d$ is a Hilbert-Schmidt operator and $U$ is a Hilbert space
- Why does this innovative method of subtraction from a third grader always work?
- How do we know that the number $1$ is not equal to the number $-1$?
- What are the Implications of having VΩ as a model for a theory?
- Defining a Galois Field based on primitive element versus polynomial?
- Can't find the relationship between two columns of numbers. Please Help
- Is computer science a branch of mathematics?
- Is there a bijection of $\mathbb{R}^n$ with itself such that the forward map is connected but the inverse is not?
- Identification of a quadrilateral as a trapezoid, rectangle, or square
- Generator of inertia group in function field extension
Popular # Hahtags
second-order-logic
numerical-methods
puzzle
logic
probability
number-theory
winding-number
real-analysis
integration
calculus
complex-analysis
sequences-and-series
proof-writing
set-theory
functions
homotopy-theory
elementary-number-theory
ordinary-differential-equations
circles
derivatives
game-theory
definite-integrals
elementary-set-theory
limits
multivariable-calculus
geometry
algebraic-number-theory
proof-verification
partial-derivative
algebra-precalculus
Popular Questions
- What is the integral of 1/x?
- How many squares actually ARE in this picture? Is this a trick question with no right answer?
- Is a matrix multiplied with its transpose something special?
- What is the difference between independent and mutually exclusive events?
- Visually stunning math concepts which are easy to explain
- taylor series of $\ln(1+x)$?
- How to tell if a set of vectors spans a space?
- Calculus question taking derivative to find horizontal tangent line
- How to determine if a function is one-to-one?
- Determine if vectors are linearly independent
- What does it mean to have a determinant equal to zero?
- Is this Batman equation for real?
- How to find perpendicular vector to another vector?
- How to find mean and median from histogram
- How many sides does a circle have?
First, let me clarify the relationship between transfinite induction and recursion. Transfinite induction is a proof technique. Transfinite recursion, on the other hand, is a construction technique. You use transfinite recursion to build some mathematical object (usually but not always a function), and you use transfinite induction to prove things about it.
(Note that these terms often get conflated in the literature.)
Now, you'll often see transfinite recursion stated as a principle specifically for constructing functions, as e.g.:
Note that we can conflate a set and its characteristic function, so even if you stick to this definition of transfinite recursion, it's still meaningful to define a set $A$ via transfinite recursion. What you're doing is recursively answering questions of the form, "Is $\beta$ in $A$?".
This is quite abstract on the face of it, but what it's saying is not too complicated. We're trying to build a function $\alpha\rightarrow X$. Now, $I$ is a method for extending a partial function "one step further": if I feed $I$ a map $p:\beta\rightarrow X$ for some $\beta<\alpha$, $I$ tells me what $f(\beta)$ "ought" to be given that $p=f\upharpoonright\beta$. That is, if I've defined $f$ for the first $\beta$-many inputs, $I$ tells me how to define $f$ for the next input.
This lets us "build $f$ from below". For instance, how do I compute $f(0)$? Well, so far I haven't built any of $f$, so the thing I feed $I$ is the empty function $\emptyset$. Then $f(0)$ is just $I(\emptyset)$. What about $f(1)$? Well, now I've built the first "bit" of $f$, so I feed $I$ the partial function $\{(0, I(\emptyset))\}$; so $f(1)=I(\{(0, I(\emptyset))\}$. And so on. Note that $I$ is allowed to look at all previous values of $f$, not just the "last" one (and note that that doesn't even make sense all the time: when computing $f(\omega)$ using $I$, there isn't a "last" value of $f$).
A concrete example. Here's a good exercise. Let $\alpha$ be some large infinite ordinal - say, $\alpha=\omega^2$ - and take $X=\omega$. We're going to build a map from $\alpha$ to $X$ by transfinite recursion.
For $p:\beta\rightarrow X$ ($\beta<\alpha$), let $I(p)=0$ if $\beta$ is a limit ordinal, and $I(p)=p(\gamma)+1$ if $\beta=\gamma+1$. Then what function $f$ do we get?
HINT: Compute the first few values of $f$: $f(0)$, $f(1)$, $f(2)$, . . .. Do you see a pattern? Now compute $f(\omega)$, $f(\omega+1)$, $f(\omega+2)$; you should be able to guess at this point what the function is doing.
FURTHER HINT (rot13'd to prevent spoilers): Guvf vf onfvpnyyl zbqhyne nevguzrgvp sbe beqvanyf. Guvax nobhg jung "zbq bzrtn" fubhyq zrna . . .