One obvious reason is that it is useful. But is there a philosophical justification for it? This axiom does not seem of constructive flavour to me since there is no clear way to construct a choice function of a countable collection of inhabited sets in general.
2026-03-28 10:56:10.1774695370
Why do most constructivists accept the axiom of countable choice?
158 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in PHILOSOPHY
- Does Planck length contradict math?
- Should axioms be seen as "building blocks of definitions"?
- Difference between provability and truth of Goodstein's theorem
- Decidability and "truth value"
- Is it possible to construct a formal system such that all interesting statements from ZFC can be proven within the system?
- Why linear congruential generator is called random number generator?
- Why is negative minus negative not negative? Why is negative times positive not directionless?
- What's the difference between a proof and a derivation?
- Godel's Theorems and Conventionalism
- Is "This sentence is true" true or false (or both); is it a proposition?
Related Questions in CONSTRUCTIVE-MATHEMATICS
- How do set theories base on Intuitionistic Logic deal with ordinals?
- Constructive Proof- How to Start?
- Does Diaconescu's theorem imply cubical type theory is non-constructive?
- Attempt at constructive proof of compactness of [0,1], does this use LEM? Does a constructive proof exist?
- Constructive proof of existence of maximal ideal
- Is there a theorem that can easily be proved to be non intuitionistic?
- What kinds of variables range over proofs?
- Construct a real $x$ such that ZF does not prove whether $x\in\mathbb{Q}$
- Infinitesimal Approaches To Differential Geometry As Conservative Extension
- Confusion around quantifiers in intuitionistic logic
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?
The answer to this is going to depend on the sort of underlying model/notion that leads one to care about constructive logic. Not all of them validate countable choice.
One that does (which I am most familiar with) is realizability, which is what you use when your interest in constructive mathematics is due to wanting the logic to have a fundamentally computable character. The reason that the axiom of choice fails in general in realizability is that propositions of the form:
$$∀ x : A. ∃ y : B. P(x, y)$$
are realized by procedures that, for each representation of an $A$ pick a representation of a $B$ and produce a witness that they satisfy $P$. However, in general there can be multiple representations of each $x : A$, and there is no obligation for the realizer to pick representations of the same $y : B$ for every representation of $x : A$. By contrast, a realizer for:
$$∃ f : B^A. ∀ x. P(x, f(x))$$
must give a procedure that does pick representatives of the same $y : B$ for every representative of $x : A$. This is because functions must respect equality, while $∀∃$ needn't. So, for instance, moving from the former to the latter cannot be done when $A$ is the real numbers $ℝ$. We can realize:
$$∀x : ℝ. ∃ n : ℕ. x < n$$
(implicitly embedding $ℕ$ back into $ℝ$) because for each representation of a real number, we can approximate the real enough to figure out some natural number that is bigger, but which natural we pick will depend on the details of the approximation (which is allowed for $∀∃$). But, we cannot realize:
$$∃f : ℕ^ℝ. ∀ x. x < f(x)$$
because there is no way to compute the same natural number for every representation of a given real number (every total, computable function from $ℝ$ to $ℕ$ is actually constant).
Now, the reason that countable choice works is that there is actually only one representation of each natural number. So, the procedure from:
$$∀ n : ℕ. ∃ y : B. P(n,y)$$
already satisfies the criteria for being a function. Or, if you want to complicate things, you could represent natural numbers as finite bit strings,1 so that there are redundant elements, like $00100$ vs $100$. But, there is a computable function that calculates a canonical representation for any given representation. And that can be used to realize countable choice.
So, at least from a realizability/computability perspective, this is the meaning of axioms of choice. They are statements that we can canonicalize representations of some type. For natural numbers, we can, possibly trivially. For anything else that is countable, we can do it by mapping back and forth between the natural numbers. And for real numbers, finding a canonical representation is an uncomputable problem.
I wouldn't be surprised if other settings often fit into this framework. I.E. when (countable) choice holds, it's because the type is in some sense 'uniquely represented.' And when it doesn't, it isn't, and the operation of finding a 'canonical representation' violates the intrinsic character that the logic is supposed to have (computability, continuity, smoothness, etc.).
1: If you want to get fancy, you could probably represent natural numbers as appropriate terminating expressions in some programming language. Then there are many representations, but we can canonicalize them by doing the terminating reduction to a canonical value.