One more transfinite induction problem

  • Context: Graduate 
  • Thread starter Thread starter andytoh
  • Start date Start date
  • Tags Tags
    Induction Transfinite
Click For Summary

Discussion Overview

The discussion centers around proving that for a vector space V with an uncountable dimension and a basis B, given a linearly independent subset K of V, there exists a subset S of B such that K U S forms a basis for V. The conversation explores various approaches, including transfinite induction and Zorn's Lemma, while participants share their methods and challenges.

Discussion Character

  • Exploratory
  • Technical explanation
  • Debate/contested
  • Mathematical reasoning

Main Points Raised

  • One participant proposes a direct proof using an intuitive algorithm to construct the subset S from B.
  • Another participant suggests an alternate solution utilizing Zorn's Lemma but expresses difficulty in showing that a certain set D is in the collection A.
  • A different approach involving well-ordering principles is mentioned, emphasizing the use of iterative algorithms for proofs.
  • Several participants discuss the implications of using maximal independent sets and the potential for constructing a family of partially ordered sets to simplify the proof.
  • There is a suggestion to consider all independent sets of the form K U S, which leads to a simpler inductive argument.

Areas of Agreement / Disagreement

Participants express differing opinions on the best approach to the problem, with some favoring transfinite induction and others advocating for Zorn's Lemma or well-ordering principles. The discussion remains unresolved as participants explore various methods without reaching consensus on a single solution.

Contextual Notes

Some participants note challenges related to the infinite nature of independent sets and the complexities of applying Zorn's Lemma effectively. The discussion highlights the dependence on definitions and the nuances of constructing the necessary subsets.

Who May Find This Useful

This discussion may be useful for those interested in advanced topics in linear algebra, particularly in the context of vector spaces and bases, as well as for individuals exploring different proof techniques in set theory and mathematical reasoning.

andytoh
Messages
357
Reaction score
3
Let B be a basis for a vector space V (with an uncountable dimension!) over a field F, and let K be a linearly independent subset of V. Prove that there exists a subset S of B such that K U S is a basis for V.

I had to struggle a bit for this one. But I think I got it.
 

Attachments

Physics news on Phys.org
An alternate solution using Zorn's Lemma coming up...

Let A be the collection of all subsets T of V such that for any linearly independent subset K of V containing vectors only from T, there exists a subset S of B so that
K U S is a basis for V. A is nonempty since B is in A. Partially order A by set inclusion. Let C = {C_i} be a totally ordered subcollection of A, and let D= U(C_i). Clearly D is an upper bound of C since every element in C is a subset of D.

Guys, I'm having trouble showing that D is in A. The problem is that any independent set containing elements only from D may be infinite, so the total orderedness of C is not helping. Can anyone pitch in here?
 
Last edited:
Your transfinite induction proof seems very complex; I haven't digested yet to see if I believe it. Here's a simpler method:


Intuitive algorithm:

Code:
Let S := { }.
For each element v of B:
   If v is not in the span of K U S, then let S := S U {v}


There are a couple ways to turn this into transfinite induction or recursion. I think the easiest way is to define

[tex]B(v) := \{ \, w \in B \mid w < v \, \}[/tex]

[tex] S(v) := \{ \, w \in B(v) \mid w \notin \mathop{\mathrm{Span}} (K \cup B(v)) \, \}[/tex]

[tex]S := \bigcup_{v \in B} S(v)[/tex]

or equivalently

[tex]S := \{ \, w \in B \mid w \notin \mathop{\mathrm{Span}} (K \cup B(v)) \, \}[/tex]

The proof that v is in the span of S(v) and that S(v) is linearly independent is straightforward.


For a more literal translation of the intuitive algorithm, define:

[tex]P(v) := \bigcup_{w < v} N(v)[/tex]

[tex]N(v) := \begin{cases}<br /> P(v) & v \in \mathop{\mathrm{Span}}( K \cup P(v) ) \\<br /> P(v) \cup \{ \, v \, \} <br /> & v \notin \mathop{\mathrm{Span}}( K \cup P(v) ) \\<br /> \end{cases}[/tex]

(P for "previous value of S" and N for "next value of S")

[tex]S := \bigcup_{w < v} N(v)[/tex]


Or a version with transfinite recursion:

[tex]A(v) := (v \notin \mathop{\mathrm{Span}}(K \cup S(v)))[/tex]

[tex]S(v) := \{ \, w \in B \mid w < v \wedge A(w) \, \}[/tex]

[tex]S := \{ \, v \in B \mid A(v) \, \}[/tex]

(A for "Add this into S")
 
Last edited:
Ok, I'll try your way too. Thanks. I'm still stuck on the Zorn's Lemma approach though.
 
I tend to use the well-ordering principle for most of my axiom of choice needs -- the reason is because I can usually write down an iterative algorithm to produce the answer I want.

In general, I think that if you cannot write down some intuitively simple algorithm like I did, then a well-ordering style proof is going to be much more difficult than it needs to be.

I guess -- the trick is to use transfinite recursion or iteration to 'compute' an answer, and then use transfinite induction to prove that each intermediate stage has the correct properties, and then from there you prove that the answer has the correct properties.
 
andytoh said:
An alternate solution using Zorn's Lemma coming up...

Let A be the collection of all subsets T of V such that for any linearly independent subset K of V containing vectors only from T, there exists a subset S of B so that
K U S is a basis for V. A is nonempty since B is in A. Partially order A by set inclusion. Let C = {C_i} be a totally ordered subcollection of A, and let D= U(C_i). Clearly D is an upper bound of C since every element in C is a subset of D.

Guys, I'm having trouble showing that D is in A. The problem is that any independent set containing elements only from D may be infinite, so the total orderedness of C is not helping. Can anyone pitch in here?
Hrm. I'm having a little difficulty deciphering your intent here. Can you summarize your proof, skipping over all of the little details aside from the application of Zorn's lemma?
 
Ok:

Let A be the collection of all subsets T of V such that for any linearly independent subset K of V containing vectors only from T, there exists a subset S of B so that
K U S is a basis for V. A is nonempty since B is in A. Partially order A by set inclusion. Let C = {C_i} be a totally ordered subcollection of A, and let D= U(C_i). D is an upper bound of C in A (this is where I'm stuck). By Zorn's Lemma, A has a maximal element M.

If M not=V, take v from V-M. Then MU{v} is also in A (this point I've already proven, though it was long), contradicting the maximality of M in A. Thus M=V.
 
Last edited:
whats wrong with taking a maximal independent set of form K union S, as above?

perhaps you are doing this, but less briefly.
 
mathwonk said:
whats wrong with taking a maximal independent set of form K union S, as above?

Oh daymnn! That's so clever! This must be done for every independent set K, of course, but that's no extra work at all. I was restricting myself to just one partially ordered set A. I never thought of using a family of partially ordered sets A_K. Wow!
 
Last edited:
  • #10
just take your one given independent set K, and consider all independent sets of form KunionS where S is a subset of the basis B. This collection is trivially inductive (take unions as always), hence has a maximal element.

obviously a maximl KunionS spans since otherwise some element of b is not spanned, which means adding it gives a larger independent set. QED.
 

Similar threads

  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 1 ·
Replies
1
Views
3K
  • · Replies 6 ·
Replies
6
Views
4K
  • · Replies 2 ·
Replies
2
Views
3K
  • · Replies 4 ·
Replies
4
Views
3K
  • · Replies 7 ·
Replies
7
Views
4K
  • · Replies 3 ·
Replies
3
Views
4K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 9 ·
Replies
9
Views
2K