Zulip Chat Archive
Stream: new members
Topic: Endomorphism eigen values
Maxime Darrin (Jun 07 2021 at 17:50):
Hi,
I'm trying to express that "0 \not \in sp(f) <-> f surjective" where f is an endomorphism. I wrote the following:
import algebra.module.linear_map
import linear_algebra.basic
import linear_algebra.eigenspace
example
(R : Type*) (E : Type*)
[semiring R]
[add_comm_group E] [module R E]
(f : module.End R E):
(¬ (f.has_eigenvalue 0)) <-> (⊤ : submodule R E).map f = ⊤
:= sorry
I get an error about the type of f that I do not understand. What am i doing wrong?
Adam Topaz (Jun 07 2021 at 17:51):
What's the error?
Kevin Buzzard (Jun 07 2021 at 17:52):
One thing you're doing wrong is that I very much doubt that this is true without some finiteness hypotheses
Kevin Buzzard (Jun 07 2021 at 17:54):
Eg consider the abelian group hom sending X to 2X
Maxime Darrin (Jun 07 2021 at 17:54):
The error
type mismatch at application
f.has_eigenvalue
term
f
has type
module.End R E : Type ?
but is expected to have type
module.End ?m_1 ?m_2 : Type ?
And yeah, ok I forgot the finiteness
Eric Wieser (Jun 07 2021 at 17:54):
Probably you need R to be a ring
Adam Topaz (Jun 07 2021 at 17:55):
So this should suggest to you that the has_eigenvalue
function requires some typeclass which you don't have. I suggest starting there
Eric Wieser (Jun 07 2021 at 17:55):
docs#module.End.has_eigenvalue
Eric Wieser (Jun 07 2021 at 17:55):
comm_ring R
Kevin Buzzard (Jun 07 2021 at 17:55):
Hover over has_eigenvalue
in your code and you'll see what assumptions it needs
Kevin Buzzard (Jun 07 2021 at 17:56):
Or do what Eric did and then click on the link
Maxime Darrin (Jun 07 2021 at 18:01):
Thanks i got it
example
(R : Type*) (E : Type*)
[field R]
[add_comm_group E] [module R E]
(f : module.End R E):
finite_dimensional R E -> ((¬ (f.has_eigenvalue 0)) <-> (⊤ : submodule R E).map f = ⊤)
:= sorry
Is this the correct way to add the finite dimensionality hypothesis ?
Johan Commelin (Jun 07 2021 at 18:01):
Just add [finite_dimensional R E]
before you introduce f
Kevin Buzzard (Jun 07 2021 at 18:02):
But this looks good now
Last updated: Dec 20 2023 at 11:08 UTC