Zulip Chat Archive

Stream: Is there code for X?

Topic: maximal linear independent set?


Scott Morrison (May 31 2021 at 11:05):

What is the colloquial way to talk about a maximal linearly independent family?

Scott Morrison (May 31 2021 at 11:15):

I can't find anything so far, so propose

def maximal_linear_independent {ι : Type*} (v : ι  M) : Prop :=
 {κ : Type*} (w : κ  M) (i : linear_independent R v) (h : range v  range w), range v = range w

Scott Morrison (May 31 2021 at 11:15):

But maybe there is a partial order already hiding somewhere that I can appeal to?

Damiano Testa (May 31 2021 at 11:15):

Depending on context, this could mean "span up to finite index", right?

Scott Morrison (May 31 2021 at 11:16):

I'm at the moment setting up the very basics of cardinalities of independent sets / bases / spanning sets over arbitrary rings, so no, "span up to finite index" is far into the future. :-)

Damiano Testa (May 31 2021 at 11:16):

Oh, I see, you were interested in a "Lean colloquial way"! Sorry for misunderstanding!

Scott Morrison (May 31 2021 at 11:18):

Ah, that definition is bad, I need to include that v itself is actually linearly independent. :-)

Damiano Testa (May 31 2021 at 11:19):

w?

Scott Morrison (May 31 2021 at 11:20):

Oops, and there is a typo, the arguments i should say linear_independent R w!

Kevin Buzzard (May 31 2021 at 11:20):

If R is the zero ring then one has to decide what the definition means

Scott Morrison (May 31 2021 at 11:40):

Oh dear. :-) I will paste [nontrivial R] anywhere there are signs of trouble. :-)


Last updated: Dec 20 2023 at 11:08 UTC